aboutsummaryrefslogtreecommitdiff
path: root/client/map/items
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2025-03-23 20:58:09 +0100
committertpart <tpart120@proton.me>2025-03-23 20:58:09 +0100
commite4b93aad5c863a171663a02ae979fe3a2a114f4e (patch)
tree1d957c60d9212100f98e9b6e3bbdb3010559a45f /client/map/items
parentdff76d9344a4102154f98bb38a8c8773c214a5bd (diff)
downloadhurrycurry-e4b93aad5c863a171663a02ae979fe3a2a114f4e.tar
hurrycurry-e4b93aad5c863a171663a02ae979fe3a2a114f4e.tar.bz2
hurrycurry-e4b93aad5c863a171663a02ae979fe3a2a114f4e.tar.zst
Fix parse error in glass items
Diffstat (limited to 'client/map/items')
-rw-r--r--client/map/items/glass_items.gd6
1 files changed, 2 insertions, 4 deletions
diff --git a/client/map/items/glass_items.gd b/client/map/items/glass_items.gd
index 2944dffe..077c9bad 100644
--- a/client/map/items/glass_items.gd
+++ b/client/map/items/glass_items.gd
@@ -18,10 +18,8 @@ class_name GlassItems
class WaterG extends GlassFill:
func _init(owned_by_: Node3D):
- super(owned_by_)
- set_color(Color(.5, .6, .8))
+ super(owned_by_, Color(.5, .6, .8))
class StrawberryShakeG extends GlassFill:
func _init(owned_by_: Node3D):
- super(owned_by_)
- set_color(Color(.98, .55, .71))
+ super(owned_by_, Color(.98, .55, .71))