diff options
Diffstat (limited to 'client')
| -rw-r--r-- | client/map/items/food_processor.gd | 2 | ||||
| -rw-r--r-- | client/map/items/pot.gd | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/client/map/items/food_processor.gd b/client/map/items/food_processor.gd index 0a78904f..14706677 100644 --- a/client/map/items/food_processor.gd +++ b/client/map/items/food_processor.gd @@ -52,6 +52,8 @@ func add_contents(contents: Array[String]): add_child(FoodProcessorFill.new(self, Color8(250, 180, 210))) "strawberry-puree": add_child(FoodProcessorFill.new(self, Color8(200, 80, 80))) + "processed-mushroom": + add_child(FoodProcessorFill.new(self, Color(0.596, 0.341, 0.259))) "tomato": processing.color = Color(1.,0.,0.) base.add_child(load("res://map/items/tomato.tscn").instantiate()) diff --git a/client/map/items/pot.gd b/client/map/items/pot.gd index ec60c04c..c42334a7 100644 --- a/client/map/items/pot.gd +++ b/client/map/items/pot.gd @@ -46,7 +46,7 @@ func add_contents(contents: Array[String]): "noodles": add_child(PotFillTransparent.new(self, Color(0.46, 0.68, 0.73, 0.392))) # water base.add_child(ItemFactory.produce(i, self)) - "sliced-mushroom": + "processed-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))) |