initialize runes array list for NPC

This commit is contained in:
2023-09-13 20:45:21 -05:00
parent 8869772fa4
commit 1fdd0a1b32
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -460,6 +460,7 @@ public enum NPCManager {
}
public static void applyRunesForNPC(NPC npc){
npc.runes = new ArrayList<>();
for(int runeID : _runeSetMap.get(npc.runeSetID)){
RuneBase rb = RuneBase.getRuneBase(runeID);
CharacterRune toApply = new CharacterRune(rb,npc.getObjectUUID());