From 529f858949fb2aef71692cc127c22a9a20008ada Mon Sep 17 00:00:00 2001 From: marcinzelent Date: Sat, 27 Apr 2019 21:29:07 +0200 Subject: Fixed errors after cave walls run out --- nGJ2019/Assets/Scripts/LevelScrolling.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nGJ2019/Assets/Scripts/LevelScrolling.cs b/nGJ2019/Assets/Scripts/LevelScrolling.cs index fac0a13..9835f0e 100644 --- a/nGJ2019/Assets/Scripts/LevelScrolling.cs +++ b/nGJ2019/Assets/Scripts/LevelScrolling.cs @@ -63,7 +63,7 @@ public class LevelScrolling : MonoBehaviour void DestroyObstacles() { - if (Obstacles[0].transform.position.x < -30) + if (Obstacles.Count > 0 && Obstacles[0].transform.position.x < -30) { Destroy(Obstacles[0]); Obstacles.RemoveAt(0); -- cgit v1.2.3