More PowerEntry parsing work.
This commit is contained in:
@@ -261,6 +261,9 @@ public class PowersParser {
|
|||||||
case "MAXNUMPLAYERTARGETS":
|
case "MAXNUMPLAYERTARGETS":
|
||||||
powerEntry.maxPlayerTargets = Integer.parseInt(lineValues[1].trim());
|
powerEntry.maxPlayerTargets = Integer.parseInt(lineValues[1].trim());
|
||||||
break;
|
break;
|
||||||
|
case "ISADMINPOWER":
|
||||||
|
powerEntry.isAdminPower = Boolean.parseBoolean(lineValues[1].trim());
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
Logger.error("Unhandled variable type:" + key + " for power: " + powerEntry.power_id);
|
Logger.error("Unhandled variable type:" + key + " for power: " + powerEntry.power_id);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -58,6 +58,8 @@ public class PowerEntry {
|
|||||||
public int pulseDuration;
|
public int pulseDuration;
|
||||||
public int maxMobTargets;
|
public int maxMobTargets;
|
||||||
public int maxPlayerTargets;
|
public int maxPlayerTargets;
|
||||||
|
public boolean isAdminPower = false;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user