diff options
| author | nokoe <nokoe@mailbox.org> | 2024-06-23 22:52:45 +0200 |
|---|---|---|
| committer | nokoe <nokoe@mailbox.org> | 2024-06-23 23:07:10 +0200 |
| commit | f9a21bc9772d761db1c02a6ed81e117886b523b2 (patch) | |
| tree | 8653b85999b48354fe39505268b7f704fade9626 /client/map/tiles/wall.gd | |
| parent | a81020eb81a0fa44f6641f47bd1eeda786cc8f71 (diff) | |
| download | hurrycurry-f9a21bc9772d761db1c02a6ed81e117886b523b2.tar hurrycurry-f9a21bc9772d761db1c02a6ed81e117886b523b2.tar.bz2 hurrycurry-f9a21bc9772d761db1c02a6ed81e117886b523b2.tar.zst | |
make game playable again (somewhat)
Diffstat (limited to 'client/map/tiles/wall.gd')
| -rw-r--r-- | client/map/tiles/wall.gd | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/map/tiles/wall.gd b/client/map/tiles/wall.gd index 21e28843..8be8df20 100644 --- a/client/map/tiles/wall.gd +++ b/client/map/tiles/wall.gd @@ -20,10 +20,10 @@ func _init(rename: String, neighbors: Array): super(rename, neighbors) match kind: WallKind.STRAIGHT: - base.add_child(load("res://map/wall_straight.tscn").instantiate()) + base.add_child(load("res://map/tiles/wall_straight.tscn").instantiate()) WallKind.OUTER_CORNER: - base.add_child(load("res://map/wall_corner.tscn").instantiate()) + base.add_child(load("res://map/tiles/wall_corner.tscn").instantiate()) WallKind.T: - base.add_child(load("res://map/wall_t.tscn").instantiate()) + base.add_child(load("res://map/tiles/wall_t.tscn").instantiate()) WallKind.CROSS: - base.add_child(load("res://map/wall_cross.tscn").instantiate()) + base.add_child(load("res://map/tiles/wall_cross.tscn").instantiate()) |