diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-10-08 23:35:47 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-10-08 23:35:47 +0200 |
| commit | 4e069bc9d7f033aba601dc52a2e0b0065b60d513 (patch) | |
| tree | ee6f00a8aec8cdeb19a31f568afda16d6d1b9d62 | |
| parent | c768cd1240c272dad34f07b09340cfe1d11d67b6 (diff) | |
| download | hurrycurry-4e069bc9d7f033aba601dc52a2e0b0065b60d513.tar hurrycurry-4e069bc9d7f033aba601dc52a2e0b0065b60d513.tar.bz2 hurrycurry-4e069bc9d7f033aba601dc52a2e0b0065b60d513.tar.zst | |
Add mushroom soup plate fill
| -rw-r--r-- | client/map/items/plate.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/map/items/plate.gd b/client/map/items/plate.gd index e5b86df2..10918595 100644 --- a/client/map/items/plate.gd +++ b/client/map/items/plate.gd @@ -51,6 +51,7 @@ func add_contents(contents: Array[String]): 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))) + "mushroom-soup": add_child(PlateFill.new(self, Color(0.747, 0.454, 0.36))) "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))) |