diff options
author | nokoe <nokoe@mailbox.org> | 2024-06-22 01:47:28 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-06-23 19:28:31 +0200 |
commit | 8442047d929d896b5c3992d766adf386d71358a3 (patch) | |
tree | 12f8eb2587b32daabea9286881f020ae5147f757 /client/scripts/map.gd | |
parent | 66ab776143b0108167a7714b4a1b3e98c54722e2 (diff) | |
download | hurrycurry-8442047d929d896b5c3992d766adf386d71358a3.tar hurrycurry-8442047d929d896b5c3992d766adf386d71358a3.tar.bz2 hurrycurry-8442047d929d896b5c3992d766adf386d71358a3.tar.zst |
add more tiles
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": |