diff options
author | tpart <tpart120@proton.me> | 2024-09-19 22:31:36 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-09-19 22:31:36 +0200 |
commit | 3eb7a5cf106b6eb395363f71e75a87466a44fc59 (patch) | |
tree | 4e5741536406d927056898d4b85c969b852ed520 /client/map | |
parent | 192c14309acc49b085495510fd7c4adf9bb6e35d (diff) | |
download | hurrycurry-3eb7a5cf106b6eb395363f71e75a87466a44fc59.tar hurrycurry-3eb7a5cf106b6eb395363f71e75a87466a44fc59.tar.bz2 hurrycurry-3eb7a5cf106b6eb395363f71e75a87466a44fc59.tar.zst |
Fix bun small not displayed correctly
Diffstat (limited to 'client/map')
-rw-r--r-- | client/map/items/plate.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/map/items/plate.gd b/client/map/items/plate.gd index 32843011..506cd643 100644 --- a/client/map/items/plate.gd +++ b/client/map/items/plate.gd @@ -46,7 +46,7 @@ func _init(owned_by_: Node3D, contents: Array): "cooked-rice": add_child(load("res://map/items/cooked_rice_fill.tscn").instantiate()) "tomato-soup": add_child(PlateFill.new(self, Color(1., .3, .2))) "bun-small": - var bun = ItemFactory.produce(c, base) + var bun = ItemFactory.produce("bun", base) base.add_child(bun) bun.scale *= 0.5 bun.position += Vector3(-.1, 0, -.1) |