diff options
Diffstat (limited to 'client/map')
-rw-r--r-- | client/map/items/plate.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/map/items/plate.gd b/client/map/items/plate.gd index 4463ce05..5bb40af2 100644 --- a/client/map/items/plate.gd +++ b/client/map/items/plate.gd @@ -25,6 +25,7 @@ func _init(owned_by_: Node3D, contents: Array): for c in contents: var item: Item match c: + "curry": item = PlateFill.new(self, Color(.75, .45, .1)) "tomato-soup": item = PlateFill.new(self, Color(1., .3, .2)) _: item = ItemFactory.produce(c, base) base.add_child(item) |