From e7e99e37dab1d0af0cfa8c13b08c00f85e08ba4e Mon Sep 17 00:00:00 2001 From: tpart Date: Tue, 14 Oct 2025 21:32:33 +0200 Subject: Make noodles fit in pot --- client/map/items/pot.gd | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'client/map') diff --git a/client/map/items/pot.gd b/client/map/items/pot.gd index 1bf9bde7..335fd093 100644 --- a/client/map/items/pot.gd +++ b/client/map/items/pot.gd @@ -45,9 +45,15 @@ func add_contents(contents: Array[String]): leek.rotation_degrees = Vector3(-75.5, 0, -25) leek.position = Vector3(.03, .1, .25) base.add_child(leek) + "cooked-noodles": + var noodles := ItemFactory.produce(i, self) + noodles.scale = Vector3(.85, .85, .85) + base.add_child(noodles) "noodles": add_child(PotFillTransparent.new(self, Color(0.46, 0.68, 0.73, 0.392))) # water - base.add_child(ItemFactory.produce(i, self)) + var noodles := ItemFactory.produce(i, self) + noodles.scale = Vector3(.85, .85, .85) + base.add_child(noodles) "processed-mushroom": add_child(PotFill.new(self, Color(0.596, 0.341, 0.259))) "mushroom-soup": -- cgit v1.3