More PowerEntry parsing work.

This commit is contained in:
2024-08-19 08:02:35 -04:00
parent 1460ddb975
commit 5860a263d9
2 changed files with 4 additions and 0 deletions
+3
View File
@@ -247,6 +247,9 @@ public class PowersParser {
case "SHOULDCHECKPATH":
powerEntry.shouldCheckPath = Boolean.parseBoolean(lineValues[1].trim());
break;
case "STICKY":
powerEntry.sticky = Boolean.parseBoolean(lineValues[1].trim());
break;
default:
Logger.error("Unhandled variable type:" + key + " for power: " + powerEntry.power_id);
}