aboutsummaryrefslogtreecommitdiff
path: root/client/map/item_factory.gd
diff options
context:
space:
mode:
authornokoe <nokoe@mailbox.org>2025-09-30 15:19:38 +0200
committernokoe <nokoe@mailbox.org>2025-09-30 15:20:37 +0200
commit5850d86b552bd555d031cdbbd7ca20251793f6da (patch)
tree87d7aeddc31a82f1d272171d11869bf524571798 /client/map/item_factory.gd
parent37a176f2e76eb5d293fd63f6ba39a143cb0abf1c (diff)
downloadhurrycurry-5850d86b552bd555d031cdbbd7ca20251793f6da.tar
hurrycurry-5850d86b552bd555d031cdbbd7ca20251793f6da.tar.bz2
hurrycurry-5850d86b552bd555d031cdbbd7ca20251793f6da.tar.zst
add french fries recipe models
Diffstat (limited to 'client/map/item_factory.gd')
-rw-r--r--client/map/item_factory.gd1
1 files changed, 1 insertions, 0 deletions
diff --git a/client/map/item_factory.gd b/client/map/item_factory.gd
index 0ebc3367..ac1a03c9 100644
--- a/client/map/item_factory.gd
+++ b/client/map/item_factory.gd
@@ -64,6 +64,7 @@ static func produce_inner(raw_name: String, owned_by: Node3D) -> Item:
"lettuce": return Lettuce.new(owned_by)
"sliced-lettuce": return SlicedLettuce.new(owned_by)
"potato": return Potato.new(owned_by)
+ "sliced-potato": return SlicedPotato.new(owned_by)
"dirty-plate": return Plate.new(owned_by, ["dirt"])
"pot": return Pot.new(owned_by, item.contents)