aboutsummaryrefslogtreecommitdiff
path: root/client/map/item_factory.gd
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-09-15 11:37:54 +0200
committertpart <tpart120@proton.me>2024-09-15 11:37:54 +0200
commit4ae13902faf58d34e3ee9167171b1e7dbbd0700e (patch)
tree3de7bd5e83688ef8d0621e7a571bbc70e9ac8867 /client/map/item_factory.gd
parent1a42e49d6ed33bdce92e673f2d38f0d3104d1b6b (diff)
downloadhurrycurry-4ae13902faf58d34e3ee9167171b1e7dbbd0700e.tar
hurrycurry-4ae13902faf58d34e3ee9167171b1e7dbbd0700e.tar.bz2
hurrycurry-4ae13902faf58d34e3ee9167171b1e7dbbd0700e.tar.zst
Add pan model; Implement item
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 97edd66f..fb7e1131 100644
--- a/client/map/item_factory.gd
+++ b/client/map/item_factory.gd
@@ -49,6 +49,7 @@ static func produce(full_name: String, owned_by: Node3D) -> Item:
"sliced-lettuce": return SlicedLettuce.new(owned_by)
"pot": return Pot.new(owned_by, contents)
+ "pan": return Pan.new(owned_by, contents)
"foodprocessor": return FoodProcessor.new(owned_by, contents)
"glass": return Glass.new(owned_by, contents)
"plate": return Plate.new(owned_by, contents)