aboutsummaryrefslogtreecommitdiff
path: root/client/map/items
diff options
context:
space:
mode:
Diffstat (limited to 'client/map/items')
-rw-r--r--client/map/items/food_processor.gd2
-rw-r--r--client/map/items/glass.gd2
-rw-r--r--client/map/items/plate.gd2
-rw-r--r--client/map/items/pot.gd2
4 files changed, 4 insertions, 4 deletions
diff --git a/client/map/items/food_processor.gd b/client/map/items/food_processor.gd
index 67632fb4..a53d2034 100644
--- a/client/map/items/food_processor.gd
+++ b/client/map/items/food_processor.gd
@@ -19,7 +19,7 @@ extends Item
var time := 0.
var processing: CPUParticles3D = load("res://map/items/processing.tscn").instantiate()
-func _init(owned_by_: Node3D, contents: Array[String]):
+func _init(owned_by_: Node3D, contents: Array):
super(owned_by_)
add_child(load("res://map/items/food_processor.tscn").instantiate())
add_child(processing)
diff --git a/client/map/items/glass.gd b/client/map/items/glass.gd
index cff41f18..2e2452f6 100644
--- a/client/map/items/glass.gd
+++ b/client/map/items/glass.gd
@@ -16,7 +16,7 @@
class_name Glass
extends Item
-func _init(owned_by_: Node3D, contents: Array[String]):
+func _init(owned_by_: Node3D, contents: Array):
super(owned_by_)
add_child(load("res://map/items/glass.tscn").instantiate())
# TODO
diff --git a/client/map/items/plate.gd b/client/map/items/plate.gd
index 7019bcf8..4463ce05 100644
--- a/client/map/items/plate.gd
+++ b/client/map/items/plate.gd
@@ -17,7 +17,7 @@
class_name Plate
extends Item
-func _init(owned_by_: Node3D, contents: Array[String]):
+func _init(owned_by_: Node3D, contents: Array):
super(owned_by_)
add_child(load("res://map/items/plate.tscn").instantiate())
diff --git a/client/map/items/pot.gd b/client/map/items/pot.gd
index fb41e3d7..6295fa99 100644
--- a/client/map/items/pot.gd
+++ b/client/map/items/pot.gd
@@ -18,7 +18,7 @@ extends Item
var steam: CPUParticles3D = load("res://map/items/steam.tscn").instantiate()
-func _init(owned_by_: Node3D, contents: Array[String]):
+func _init(owned_by_: Node3D, contents: Array):
super(owned_by_)
add_child(load("res://map/items/pot.tscn").instantiate())
base.add_child(steam)