diff options
author | nokoe <nokoe@mailbox.org> | 2024-06-20 15:21:57 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-06-23 19:24:32 +0200 |
commit | 7fc559d2967dd235f72ad0fd04d5e13c31486e98 (patch) | |
tree | 5833536b051956ce049681ec04eab0d2ec8fe17a /client/scripts/map.gd | |
parent | 43528e61419b639049799b5e5de19c727d508dbc (diff) | |
download | hurrycurry-7fc559d2967dd235f72ad0fd04d5e13c31486e98.tar hurrycurry-7fc559d2967dd235f72ad0fd04d5e13c31486e98.tar.bz2 hurrycurry-7fc559d2967dd235f72ad0fd04d5e13c31486e98.tar.zst |
add some more counter elements
Diffstat (limited to 'client/scripts/map.gd')
-rw-r--r-- | client/scripts/map.gd | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/client/scripts/map.gd b/client/scripts/map.gd index 64d15723..83b61467 100644 --- a/client/scripts/map.gd +++ b/client/scripts/map.gd @@ -11,21 +11,19 @@ func update(pos, tile_name, neighbors): "tomato-crate": instance = CounterBase.new() "cuttingboard": - instance = CounterBase.new() + instance = CuttingBoard.new() "counter": instance = CounterBase.new() "flour-crate": instance = CounterBase.new() "oven": - instance = CounterBase.new() + instance = Oven.new() "raw-steak-crate": instance = CounterBase.new() - "pan": - instance = CounterBase.new() - "watercooler": - instance = CounterBase.new() + "stove": + instance = Stove.new() "sink": - instance = CounterBase.new() + instance = Sink.new() "dirty-plate-crate": instance = CounterBase.new() "wall": |