More poweraction parsing work.

This commit is contained in:
2024-08-20 17:10:56 -04:00
parent 5b8934c922
commit b4638f9218
2 changed files with 4 additions and 0 deletions
+3
View File
@@ -224,6 +224,9 @@ public class PowerActionParser {
case "CLEARAGGRO":
powerActionEntry.clearAggro = Boolean.parseBoolean(lineValues[1].trim());
break;
case "TARGETBECOMESPET":
powerActionEntry.targetBecomesPet = Boolean.parseBoolean(lineValues[1].trim());
break;
case "WEAROFFEFFECTOTHER": // Keys not parsed go here.
case "WEAROFFEFFECTSELF":
break;
@@ -41,5 +41,6 @@ public class PowerActionEntry {
public boolean wearOffEffectBlank = false;
public boolean removeAll = false;
public boolean clearAggro = false;
public boolean targetBecomesPet = false;
}