diff options
| author | tpart <tpart120@proton.me> | 2025-10-13 21:45:13 +0200 |
|---|---|---|
| committer | tpart <tpart120@proton.me> | 2025-10-13 21:45:13 +0200 |
| commit | f0b021a5c65498068fe46fc30294efc3a0ba5be0 (patch) | |
| tree | 7a1948c8d859567675ec36fa82fdcde4514f00da /client/map | |
| parent | 6989db6e0855c6df2435082d73d6b780adbe07e0 (diff) | |
| download | hurrycurry-f0b021a5c65498068fe46fc30294efc3a0ba5be0.tar hurrycurry-f0b021a5c65498068fe46fc30294efc3a0ba5be0.tar.bz2 hurrycurry-f0b021a5c65498068fe46fc30294efc3a0ba5be0.tar.zst | |
Make cheese melt in pot
Diffstat (limited to 'client/map')
| -rw-r--r-- | client/map/items/pot.gd | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/client/map/items/pot.gd b/client/map/items/pot.gd index c42334a7..1bf9bde7 100644 --- a/client/map/items/pot.gd +++ b/client/map/items/pot.gd @@ -26,6 +26,8 @@ func _init(owned_by_: Node3D): func add_contents(contents: Array[String]): for i in contents: match i: + "cheese": + add_child(PotFill.new(self, Color(0.99, 0.75, 0.337, 1.0))) "cheese-leek-soup": add_child(PotFill.new(self, Color(0.747, 0.77, 0.493))) "mochi-dough": |