aboutsummaryrefslogtreecommitdiff
path: root/client/map/item_factory.gd
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-08-19 17:41:08 +0200
committertpart <tpart120@proton.me>2024-08-19 17:41:08 +0200
commite2d6cd6f86370aa6dfb55dea73e34c09db634c51 (patch)
treef9665b43b5a49b48b47d5dd664bbb48ea6ea6aad /client/map/item_factory.gd
parent4d529ad88847854bea4d0d23dd49c3c45846a670 (diff)
downloadhurrycurry-e2d6cd6f86370aa6dfb55dea73e34c09db634c51.tar
hurrycurry-e2d6cd6f86370aa6dfb55dea73e34c09db634c51.tar.bz2
hurrycurry-e2d6cd6f86370aa6dfb55dea73e34c09db634c51.tar.zst
Add glass model & implement item
Diffstat (limited to 'client/map/item_factory.gd')
-rw-r--r--client/map/item_factory.gd2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/map/item_factory.gd b/client/map/item_factory.gd
index f7e0bdba..e92886a1 100644
--- a/client/map/item_factory.gd
+++ b/client/map/item_factory.gd
@@ -69,6 +69,8 @@ static func produce(name: String, owned_by: Node3D) -> Item:
"tomato-foodprocessor": return FoodProcessorItems.TomatoF.new(owned_by)
"tomato-juice-foodprocessor": return FoodProcessorItems.TomatoJuiceF.new(owned_by)
+ "glass": return Glass.new(owned_by)
+
"plate": return Plate.new(owned_by)
"bread-slice-plate": return PlateItems.BreadSliceP.new(owned_by)
"bread-slice-sliced-tomato-plate": return PlateItems.BreadSliceSlicedTomatoP.new(owned_by)