diff options
Diffstat (limited to 'client/scripts/map.gd')
-rw-r--r-- | client/scripts/map.gd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/scripts/map.gd b/client/scripts/map.gd index 685c1d69..9d9453e4 100644 --- a/client/scripts/map.gd +++ b/client/scripts/map.gd @@ -14,17 +14,17 @@ func update(pos, tile_name, neighbors): "trash": instance = Trash.new(node_name, neighbors) "tomato-crate": - instance = CounterBase.new(node_name, neighbors) + instance = TomatoCrate.new(node_name, neighbors) "cuttingboard": instance = CuttingBoard.new(node_name, neighbors) "counter": instance = CounterBase.new(node_name, neighbors) "flour-crate": - instance = CounterBase.new(node_name, neighbors) + instance = FlourCounter.new(node_name, neighbors) "oven": instance = Oven.new(node_name, neighbors) "raw-steak-crate": - instance = CounterBase.new(node_name, neighbors) + instance = RawSteakCrate.new(node_name, neighbors) "stove": instance = Stove.new(node_name, neighbors) "sink": |