diff options
author | tpart <tpart120@proton.me> | 2024-09-16 16:14:12 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-09-16 16:14:12 +0200 |
commit | a15420bfd06644096959f21d2cee2c0fc0f10ca0 (patch) | |
tree | 073addf0dc08cb6fcb13f1befb7bd83d8e0ea5ae /client/map/items/plate.gd | |
parent | bd4794cacdd93734ffea4861cf0c26dc07806c7a (diff) | |
download | hurrycurry-a15420bfd06644096959f21d2cee2c0fc0f10ca0.tar hurrycurry-a15420bfd06644096959f21d2cee2c0fc0f10ca0.tar.bz2 hurrycurry-a15420bfd06644096959f21d2cee2c0fc0f10ca0.tar.zst |
Fix cooked rice on plate
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: |