aboutsummaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2025-10-14 23:15:43 +0200
committertpart <tpart120@proton.me>2025-10-14 23:15:43 +0200
commitd78d3954eeb5c7933120b9dccced21d2238a7027 (patch)
tree94b9aa6ee077f253d5f40ec53f9e6b3172b667b3 /client
parent4bb10e9fe3b2ee3b6db88954c488df96d0ce1593 (diff)
downloadhurrycurry-d78d3954eeb5c7933120b9dccced21d2238a7027.tar
hurrycurry-d78d3954eeb5c7933120b9dccced21d2238a7027.tar.bz2
hurrycurry-d78d3954eeb5c7933120b9dccced21d2238a7027.tar.zst
Fix: Stuff in pans invisible
Diffstat (limited to 'client')
-rw-r--r--client/map/items/pan.gd2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/map/items/pan.gd b/client/map/items/pan.gd
index c5b16fa0..95d6433a 100644
--- a/client/map/items/pan.gd
+++ b/client/map/items/pan.gd
@@ -27,6 +27,8 @@ func add_contents(contents: Array[String]):
for i: String in contents:
if i == "steak" or i == "seared-steak":
base.add_child(ItemFactory.produce(i, self, .85))
+ else:
+ super([i])
func progress(position_: float, speed: float, warn: bool):
super(position_, speed, warn)