aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 0d09fd95..ba57b97e 100644
--- a/client/map/item_factory.gd
+++ b/client/map/item_factory.gd
@@ -47,6 +47,7 @@ static func produce(full_name: String, owned_by: Node3D) -> Item:
"sliced-tomato": return SlicedTomato.new(owned_by)
"lettuce": return Lettuce.new(owned_by)
"sliced-lettuce": return SlicedLettuce.new(owned_by)
+ "dirty-plate": return Plate.new(owned_by, ["dirt"])
"pot": return Pot.new(owned_by, contents)
"pan": return Pan.new(owned_by, contents)