diff options
Diffstat (limited to 'client/map/items/plate.gd')
-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 6e154072..d081450e 100644 --- a/client/map/items/plate.gd +++ b/client/map/items/plate.gd @@ -33,6 +33,7 @@ func _init(owned_by_: Node3D, contents: Array): var item: Item match c: "curry": add_child(PlateFill.new(self, Color(.75, .45, .1))) + "cooked-rice": add_child(load("res://map/items/cooked_rice_fill.tscn").instantiate()) "tomato-soup": add_child(PlateFill.new(self, Color(1., .3, .2))) _: item = ItemFactory.produce(c, base) if item != null: |