diff options
Diffstat (limited to 'client/map/item_factory.gd')
-rw-r--r-- | client/map/item_factory.gd | 1 |
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) |