diff options
| author | tpart <tpart120@proton.me> | 2025-10-08 21:03:41 +0200 |
|---|---|---|
| committer | tpart <tpart120@proton.me> | 2025-10-08 21:03:41 +0200 |
| commit | b8af9f80385fa4d38bc2ac2109250fa9ea2a8080 (patch) | |
| tree | 24b46a06f5cd7d8d1a446e1bd3639173c74ad5da /client/map | |
| parent | 52477afbfbf74129c8f407af4ff0a8b5e0564470 (diff) | |
| download | hurrycurry-b8af9f80385fa4d38bc2ac2109250fa9ea2a8080.tar hurrycurry-b8af9f80385fa4d38bc2ac2109250fa9ea2a8080.tar.bz2 hurrycurry-b8af9f80385fa4d38bc2ac2109250fa9ea2a8080.tar.zst | |
Add mushroom soup in pot representation (#393)
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 cf4596ce..ec60c04c 100644 --- a/client/map/items/pot.gd +++ b/client/map/items/pot.gd @@ -48,6 +48,8 @@ func add_contents(contents: Array[String]): base.add_child(ItemFactory.produce(i, self)) "sliced-mushroom": add_child(PotFill.new(self, Color(0.596, 0.341, 0.259))) + "mushroom-soup": + add_child(PotFill.new(self, Color(0.747, 0.454, 0.36, 1.0))) "cooked-rice": add_child(PotFill.new(self, Color(1.,1.,1.))) "curry": |