Teleport bool parsed

This commit is contained in:
2024-09-07 15:16:05 -04:00
parent a41288ac78
commit 5e5203aa36
2 changed files with 5 additions and 1 deletions
+4 -1
View File
@@ -186,9 +186,12 @@ public class PowerActionParser {
trackEntry.max = Integer.parseInt(headerIterator.next());
powerAction.trackEntry = trackEntry;
break;
case "Teleport":
if (headerIterator.hasNext())
powerAction.ignoreNoTeleSpire = Boolean.parseBoolean(headerIterator.next());
break;
case "Recall": // No arguments for these tags or not parsed
case "Summon":
case "Teleport":
case "TreeChoke":
case "SimpleDamage":
case "MobRecall": // One argument always zero
+1
View File
@@ -48,6 +48,7 @@ public class PowerAction {
public mbEnums.MobBehaviourType rootFsmID;
public int splashDamageMin;
public int splashDamageMax;
public boolean ignoreNoTeleSpire = false;
}