From e4b93aad5c863a171663a02ae979fe3a2a114f4e Mon Sep 17 00:00:00 2001 From: tpart Date: Sun, 23 Mar 2025 20:58:09 +0100 Subject: Fix parse error in glass items --- client/map/items/glass_items.gd | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'client/map/items') 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)) -- cgit v1.2.3-70-g09d2