diff --git a/level.gd b/level.gd index 0735386..89dc832 100644 --- a/level.gd +++ b/level.gd @@ -72,7 +72,7 @@ func _ready() -> void: var new_chunk = null if Vector2i(x,y) == station: new_chunk = station_scn.instantiate() - if Vector2i(x,y) == spawn: + elif Vector2i(x,y) == spawn: new_chunk = spawn_scn.instantiate() else: new_chunk = chunk_scn.instantiate()