Proper parsing of power grants

This commit is contained in:
2024-04-01 16:21:56 -04:00
parent 75f11deee1
commit 0abffeeb7f
+1 -1
View File
@@ -356,7 +356,7 @@ public class ItemTemplate {
for (Object grantArrayEntry : powerGrantsArray) {
JSONObject powerGrantEntry = (JSONObject) grantArrayEntry;
JSONObject powerGrant = (JSONObject) powerGrantEntry.get("granted_powers");
JSONObject powerGrant = (JSONObject) powerGrantEntry.get("power_granted_powers");
for (Object key : powerGrant.keySet()) {
String powerString = (String) key;