From a2fe0d9aaf231ee277fe082c1145a9ff389b6e56 Mon Sep 17 00:00:00 2001 From: Ino Date: Thu, 6 Feb 2025 14:38:07 +0900 Subject: [PATCH] ... --- Assets/Script/Mgr/MobControlMgr.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Assets/Script/Mgr/MobControlMgr.cs b/Assets/Script/Mgr/MobControlMgr.cs index 92054cca9..51a4720b1 100644 --- a/Assets/Script/Mgr/MobControlMgr.cs +++ b/Assets/Script/Mgr/MobControlMgr.cs @@ -78,20 +78,11 @@ public class MobControlMgr : MyCoroutine case eSpawnerType.Phase: case eSpawnerType.PhaseAllKill: var list_ids = m_MonsterAppearData.Get_MobIds(); - Debug.Log("list_ids : " + list_ids); - Debug.Log("list_make_mobs : " + list_make_mobs); - Debug.Log("indexCopy : " + indexCopy); - int findindex = list_ids.FindIndex(f => f == list_make_mobs[indexCopy].n_MonsterID); - if (findindex >= 0 && findindex < dic_actors.Count) // 인덱스가 유효한지 체크 - { dic_actors[findindex].Add(mob); - } else - { Debug.LogError($"Invalid findindex: {findindex}, MonsterID: {list_make_mobs[indexCopy].n_MonsterID}"); - } break; }