diff options
-rw-r--r-- | client/map/items/glass_items.gd | 6 |
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)) |