aboutsummaryrefslogtreecommitdiff
path: root/client/map/item_factory.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/map/item_factory.gd')
-rw-r--r--client/map/item_factory.gd4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/map/item_factory.gd b/client/map/item_factory.gd
index 24cb201f..18141dd6 100644
--- a/client/map/item_factory.gd
+++ b/client/map/item_factory.gd
@@ -1,6 +1,7 @@
# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
# Copyright 2024 metamuffin
+# Copyright 2024 tpart
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
@@ -35,7 +36,8 @@ static func produce(name: String, owned_by: Node3D) -> Item:
"leek": return Leek.new(owned_by)
"strawberry-mochi": return MochiItems.StrawberryM.new(owned_by)
"nigiri": return Nigiri.new(owned_by)
- "raw-steak": return RawSteak.new(owned_by)
+ "steak": return Steak.new(owned_by)
+ "seared-steak": return SearedSteak.new(owned_by)
"rice": return Rice.new(owned_by)
"sliced-fish": return SlicedFish.new(owned_by)
"sliced-tomato": return SlicedTomato.new(owned_by)