diff options
Diffstat (limited to 'client/map/tiles/steak_crate.gd')
-rw-r--r-- | client/map/tiles/steak_crate.gd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/map/tiles/steak_crate.gd b/client/map/tiles/steak_crate.gd index 33316807..20ba2796 100644 --- a/client/map/tiles/steak_crate.gd +++ b/client/map/tiles/steak_crate.gd @@ -1,5 +1,6 @@ # Hurry Curry! - a game about cooking # Copyright 2024 nokoe +# Copyright 2025 tpart # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by @@ -18,4 +19,4 @@ extends Crate func _init(ctx: TileFactory.TileCC): super(ctx) - base.add_child(load("res://map/tiles/raw_steak_crate.tscn").instantiate()) + base.add_child(load("res://map/tiles/steak_crate.tscn").instantiate()) |