aboutsummaryrefslogtreecommitdiff
path: root/client/map/items
diff options
context:
space:
mode:
Diffstat (limited to 'client/map/items')
-rw-r--r--client/map/items/glass.gd1
1 files changed, 1 insertions, 0 deletions
diff --git a/client/map/items/glass.gd b/client/map/items/glass.gd
index e64cb2a0..6f34aa92 100644
--- a/client/map/items/glass.gd
+++ b/client/map/items/glass.gd
@@ -25,6 +25,7 @@ func _init(owned_by_: Node3D, contents: Array):
match i:
"water": item = GlassFill.new(self, Color(.5, .6, .8))
"strawberry-shake": item = GlassFill.new(self, Color(.98, .55, .71))
+ "tomato-juice": item = GlassFill.new(self, Color(1., .0, .0))
_: push_error("Glass fill not implemented: %s" % contents)
base.add_child(item)