diff options
Diffstat (limited to 'client/map/items/plate_fill.gd')
-rw-r--r-- | client/map/items/plate_fill.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/map/items/plate_fill.gd b/client/map/items/plate_fill.gd index 1ac8aa87..c56de565 100644 --- a/client/map/items/plate_fill.gd +++ b/client/map/items/plate_fill.gd @@ -16,7 +16,7 @@ class_name PlateFill extends Item -var fill: MeshInstance3D = load("res://map/items/plate_fill.tscn").instantiate() +var fill: Node3D = load("res://map/items/plate_fill.tscn").instantiate() func _init(owned_by_: Node3D, c: Color): super(owned_by_) |