diff options
| author | tpart <tpart120@proton.me> | 2024-09-08 14:25:39 +0200 |
|---|---|---|
| committer | tpart <tpart120@proton.me> | 2024-09-08 14:25:39 +0200 |
| commit | e659c39776829a134a2514cf76347f69b53a38e8 (patch) | |
| tree | d6149aeb456e43bd9ff0b393069e42c50c13ce7b /client/map/items/plate_fill.gd | |
| parent | 8fdf05cb714e0e8ce852405bdeb98752127e3e94 (diff) | |
| download | hurrycurry-e659c39776829a134a2514cf76347f69b53a38e8.tar hurrycurry-e659c39776829a134a2514cf76347f69b53a38e8.tar.bz2 hurrycurry-e659c39776829a134a2514cf76347f69b53a38e8.tar.zst | |
Implement item stacking system
Diffstat (limited to 'client/map/items/plate_fill.gd')
| -rw-r--r-- | client/map/items/plate_fill.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/map/items/plate_fill.gd b/client/map/items/plate_fill.gd index 1ac8aa87..c56de565 100644 --- a/client/map/items/plate_fill.gd +++ b/client/map/items/plate_fill.gd @@ -16,7 +16,7 @@ class_name PlateFill extends Item -var fill: MeshInstance3D = load("res://map/items/plate_fill.tscn").instantiate() +var fill: Node3D = load("res://map/items/plate_fill.tscn").instantiate() func _init(owned_by_: Node3D, c: Color): super(owned_by_) |