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/table.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/table.gd')
| -rw-r--r-- | client/map/tiles/table.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/map/tiles/table.gd b/client/map/tiles/table.gd index 3446991d..e62e88fc 100644 --- a/client/map/tiles/table.gd +++ b/client/map/tiles/table.gd @@ -18,4 +18,4 @@ extends FullTile func _init(rename: String, neighbors: Array): super(rename, neighbors) - base.add_child(load("res://map/table.tscn").instantiate()) + base.add_child(load("res://map/tiles/table.tscn").instantiate()) |