diff options
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": |