This commit is contained in:
2024-04-26 14:07:53 +02:00
parent 5c9ee16e8b
commit fdf4c1033d
5 changed files with 5 additions and 17 deletions

View File

@@ -82,7 +82,7 @@ public class GameManager : MonoBehaviour
playerLaps[i] += 1;
if (playerLaps[i] < lapAmount)
if (playerLaps[i] <= lapAmount)
lapCounter.text = "Lap count: " + playerLaps[i] + "/" + lapAmount;
}