From f0b021a5c65498068fe46fc30294efc3a0ba5be0 Mon Sep 17 00:00:00 2001 From: tpart Date: Mon, 13 Oct 2025 21:45:13 +0200 Subject: Make cheese melt in pot --- client/map/items/pot.gd | 2 ++ 1 file changed, 2 insertions(+) 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": -- cgit v1.3