More parsing work

This commit is contained in:
2024-02-27 15:40:55 -05:00
parent f39434a248
commit 0829a60f35
+3 -3
View File
@@ -341,9 +341,9 @@ public class ItemTemplate {
JSONObject powerActionEntry = (JSONObject) o; JSONObject powerActionEntry = (JSONObject) o;
String power = (String) powerActionEntry.get("power_type"); String power = (String) powerActionEntry.get("power_type");
JSONArray power_actions = (JSONArray) powerActionEntry.get("power_actions"); JSONArray power_actions = (JSONArray) powerActionEntry.get("power_actions");
JSONArray power_args = (JSONArray) power_actions.get(9);
//int[] power_arguments = {((Long) args.get(0)).intValue(), ((Long) args.get(1)).intValue()}; int[] power_arguments = {((Long) power_args.get(0)).intValue(), ((Long) power_args.get(1)).intValue()};
item_power_action.put(power, new int[]{1, 1}); item_power_action.put(power, power_arguments);
} }
} catch (Exception e) { } catch (Exception e) {