fix: 스킬 쿨타임 dimd 영역이 정상적으로 동작하지 않는 오류 수정

This commit is contained in:
aube.lee
2025-03-17 23:15:57 +09:00
parent 4a97375d4d
commit 9127ae8ff2
7 changed files with 104 additions and 96 deletions

View File

@@ -68,7 +68,10 @@ namespace TON
Dictionary<int, SkillBase> skillMap = new Dictionary<int, SkillBase>();
foreach (var skill in activatedSkills)
{
skillMap[skill.SkillData.slotNumber - 1] = skill;
if (skill != null)
{
skillMap[skill.SkillData.slotNumber - 1] = skill;
}
}
for (int i = 0; i < 3; i++)