More poweraction parsing work.
This commit is contained in:
@@ -224,6 +224,9 @@ public class PowerActionParser {
|
|||||||
case "CLEARAGGRO":
|
case "CLEARAGGRO":
|
||||||
powerActionEntry.clearAggro = Boolean.parseBoolean(lineValues[1].trim());
|
powerActionEntry.clearAggro = Boolean.parseBoolean(lineValues[1].trim());
|
||||||
break;
|
break;
|
||||||
|
case "TARGETBECOMESPET":
|
||||||
|
powerActionEntry.targetBecomesPet = Boolean.parseBoolean(lineValues[1].trim());
|
||||||
|
break;
|
||||||
case "WEAROFFEFFECTOTHER": // Keys not parsed go here.
|
case "WEAROFFEFFECTOTHER": // Keys not parsed go here.
|
||||||
case "WEAROFFEFFECTSELF":
|
case "WEAROFFEFFECTSELF":
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -41,5 +41,6 @@ public class PowerActionEntry {
|
|||||||
public boolean wearOffEffectBlank = false;
|
public boolean wearOffEffectBlank = false;
|
||||||
public boolean removeAll = false;
|
public boolean removeAll = false;
|
||||||
public boolean clearAggro = false;
|
public boolean clearAggro = false;
|
||||||
|
public boolean targetBecomesPet = false;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user