diff options
author | tpart <tpart120@proton.me> | 2025-09-15 22:12:25 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2025-09-15 22:12:25 +0200 |
commit | 0b780e2271e63f10a2580afe9507d18d735527f8 (patch) | |
tree | 4a186427d97b718f3b9e1c2a914103a0ee085aa1 /client/map/items/glass.gd | |
parent | 2ab827a9975b59490a9f46a7d22b9fd387879c18 (diff) | |
download | hurrycurry-0b780e2271e63f10a2580afe9507d18d735527f8.tar hurrycurry-0b780e2271e63f10a2580afe9507d18d735527f8.tar.bz2 hurrycurry-0b780e2271e63f10a2580afe9507d18d735527f8.tar.zst |
Change strawberry ice cream recipe & models
Diffstat (limited to 'client/map/items/glass.gd')
-rw-r--r-- | client/map/items/glass.gd | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/map/items/glass.gd b/client/map/items/glass.gd index 62a4fb56..900a3eba 100644 --- a/client/map/items/glass.gd +++ b/client/map/items/glass.gd @@ -26,6 +26,9 @@ func _init(owned_by_: Node3D, contents: Array): "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)) + "strawberry-icecream": + base.add_child(Icecream.new(self, Color(.98, .55, .71))) + item = GlassFill.new(self, Color(.98, .55, .71)) _: push_error("Glass fill not implemented: %s" % contents) base.add_child(item) |