Proper parsing of power grants

This commit is contained in:
2024-04-01 16:26:35 -04:00
parent 64e780744d
commit 5a1027c611
+4
View File
@@ -358,6 +358,10 @@ public class ItemTemplate {
JSONObject powerGrantEntry = (JSONObject) grantArrayEntry;
JSONArray powerGrants = (JSONArray) powerGrantEntry.get("power_granted_powers");
for (Object grantedPowerEntry : powerGrants) {
JSONObject grantedPower = (JSONObject) grantedPowerEntry;
}
}
}