diff options
author | tpart <tpart120@proton.me> | 2024-09-15 17:32:25 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-09-15 17:32:25 +0200 |
commit | 44d3480c33c37676f97d7c49ec996c95495d6a59 (patch) | |
tree | bc7358642dd67c8d9a229375c850766cddae0d6c /client | |
parent | 4ae13902faf58d34e3ee9167171b1e7dbbd0700e (diff) | |
download | hurrycurry-44d3480c33c37676f97d7c49ec996c95495d6a59.tar hurrycurry-44d3480c33c37676f97d7c49ec996c95495d6a59.tar.bz2 hurrycurry-44d3480c33c37676f97d7c49ec996c95495d6a59.tar.zst |
Implement tomato juice glass content
Diffstat (limited to 'client')
-rw-r--r-- | client/map/items/glass.gd | 1 |
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) |