diff options
Diffstat (limited to 'client/rolled_dough.gd')
-rw-r--r-- | client/rolled_dough.gd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/rolled_dough.gd b/client/rolled_dough.gd index 0581fc8c..cd59d907 100644 --- a/client/rolled_dough.gd +++ b/client/rolled_dough.gd @@ -17,8 +17,8 @@ class_name RolledDough extends Item -func _init(owned_by_: Node3D, contents: Array): - super(owned_by_, contents) +func _init(owned_by_: Node3D): + super(owned_by_) add_child(load("res://map/items/rolled_dough.tscn").instantiate()) func add_contents(contents: Array[String]): |