From 55d426dd7bbbeb4bd05b2134d93f32a71f7222e9 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Fri, 3 Oct 2025 16:09:02 +0200 Subject: Add cheese leek soup plate fill --- client/map/items/plate.gd | 1 + client/map/items/pot.gd | 2 ++ 2 files changed, 3 insertions(+) diff --git a/client/map/items/plate.gd b/client/map/items/plate.gd index fb4e52f6..d6df1c46 100644 --- a/client/map/items/plate.gd +++ b/client/map/items/plate.gd @@ -48,6 +48,7 @@ func _init(owned_by_: Node3D, contents: Array): var item: Item match c: "curry": add_child(PlateFill.new(self, Color(.75, .45, .1))) + "cheese-leek-soup": add_child(PlateFill.new(self, Color(0.747, 0.77, 0.493))) "cooked-rice": add_child(load("res://map/items/cooked_rice_fill.tscn").instantiate()) "tomato-lettuce-salad": add_child(load("res://map/items/sliced_tomato_sliced_lettuce_fill.tscn").instantiate()) "tomato-soup": add_child(PlateFill.new(self, Color(1., .3, .2))) diff --git a/client/map/items/pot.gd b/client/map/items/pot.gd index 6ff61f2f..5c9623a2 100644 --- a/client/map/items/pot.gd +++ b/client/map/items/pot.gd @@ -25,6 +25,8 @@ func _init(owned_by_: Node3D, contents: Array): for i in contents: match i: + "cheese-leek-soup": + add_child(PotFill.new(self, Color(0.747, 0.77, 0.493))) "mochi-dough": add_child(PotFill.new(self, Color(1.,1.,.3))) "rice": -- cgit v1.2.3-70-g09d2