aboutsummaryrefslogtreecommitdiff
path: root/client/map/items/plate_fill.gd
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-09-08 14:25:39 +0200
committertpart <tpart120@proton.me>2024-09-08 14:25:39 +0200
commite659c39776829a134a2514cf76347f69b53a38e8 (patch)
treed6149aeb456e43bd9ff0b393069e42c50c13ce7b /client/map/items/plate_fill.gd
parent8fdf05cb714e0e8ce852405bdeb98752127e3e94 (diff)
downloadhurrycurry-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.gd2
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_)