aboutsummaryrefslogtreecommitdiff
path: root/client/map/items/grass.gd
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-06-27 17:21:52 +0200
committermetamuffin <metamuffin@disroot.org>2024-06-27 17:21:52 +0200
commit82408a6d478ed9f7009482c69f1f4d69025c833d (patch)
tree2d27c799917c2d44417882fd04cfff37e25cd18b /client/map/items/grass.gd
parent4fa692dae19789e5e766c50ac31874653d02971a (diff)
parent86eaa98918760ed829f23a70f15604bf751549be (diff)
downloadhurrycurry-82408a6d478ed9f7009482c69f1f4d69025c833d.tar
hurrycurry-82408a6d478ed9f7009482c69f1f4d69025c833d.tar.bz2
hurrycurry-82408a6d478ed9f7009482c69f1f4d69025c833d.tar.zst
Merge branch 'master' of https://codeberg.org/metamuffin/undercooked
Diffstat (limited to 'client/map/items/grass.gd')
-rw-r--r--client/map/items/grass.gd6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/map/items/grass.gd b/client/map/items/grass.gd
index 3b8d4016..d303f8c7 100644
--- a/client/map/items/grass.gd
+++ b/client/map/items/grass.gd
@@ -18,6 +18,6 @@ extends Tile
func _init(rename: String, _neighbors: Array):
super(rename, _neighbors)
- #var grass_tile = load("res://map/tiles/grass.tscn").instantiate()
- #grass_tile.position += Vector3(0.5, 0, 0.5)
- #add_child(floor_tile)
+ var grass_tile = load("res://map/tiles/grass.tscn").instantiate()
+ grass_tile.position += Vector3(0.5, 0, 0.5)
+ add_child(grass_tile)