aboutsummaryrefslogtreecommitdiff
path: root/client/map/items
diff options
context:
space:
mode:
Diffstat (limited to 'client/map/items')
-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)