From 21710baa5cb5ce3dd3cb244d91d0574a37c5dedb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szymon=20Mi=C5=9B?= <> Date: Fri, 24 Oct 2025 16:19:13 +0200 Subject: [PATCH] fix --- Assets/AI/Summons/SummonerSpawner.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Assets/AI/Summons/SummonerSpawner.cs b/Assets/AI/Summons/SummonerSpawner.cs index 21af4a3fd..b478ac071 100644 --- a/Assets/AI/Summons/SummonerSpawner.cs +++ b/Assets/AI/Summons/SummonerSpawner.cs @@ -28,7 +28,6 @@ public class SummonerSpawner : MonoBehaviour public void SelectNextObject() { if (spawnableObjects.Length == 0) return; - if (isSpawning) return; currentObjectIndex = (currentObjectIndex + 1) % spawnableObjects.Length; Debug.Log($"Wybrano obiekt: {spawnableObjects[currentObjectIndex].name} (Index: {currentObjectIndex})"); @@ -37,7 +36,6 @@ public class SummonerSpawner : MonoBehaviour public void SelectPreviousObject() { if (spawnableObjects.Length == 0) return; - if (isSpawning) return; currentObjectIndex--; if (currentObjectIndex < 0)