diff options
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) | 
