More poweraction parsing work.

This commit is contained in:
2024-08-20 17:37:17 -04:00
parent bda4bb66e1
commit 27c1ec0e55
2 changed files with 4 additions and 0 deletions
+3
View File
@@ -155,6 +155,9 @@ public class PowerActionParser {
case "Resurrect": case "Resurrect":
powerActionEntry.levelCap = Integer.parseInt(headerIterator.next()); powerActionEntry.levelCap = Integer.parseInt(headerIterator.next());
break; break;
case "SetItemFlag":
powerActionEntry.itemFlag = mbEnums.ItemFlags.valueOf(headerIterator.next());
break;
case "Recall": // No arguments for these tags or not parsed case "Recall": // No arguments for these tags or not parsed
case "Teleport": case "Teleport":
case "TreeChoke": case "TreeChoke":
@@ -43,5 +43,6 @@ public class PowerActionEntry {
public boolean clearAggro = false; public boolean clearAggro = false;
public boolean targetBecomesPet = false; public boolean targetBecomesPet = false;
public boolean destroyOldPet = false; public boolean destroyOldPet = false;
public mbEnums.ItemFlags itemFlag;
} }