More parsing work.

This commit is contained in:
2024-04-02 14:41:22 -04:00
parent 1603c8d8e9
commit 4746a8c9cf
+6 -3
View File
@@ -410,9 +410,12 @@ public class ItemTemplate {
JSONArray attr_adj_json = (JSONArray) jsonObject.get("rune_attr_adj");
for (Object attributes : attr_adj_json) {
attributes.toString();
for (Object attributeEntry : attr_adj_json) {
JSONObject attribute = (JSONObject) attributeEntry;
String typeString = (String) attribute.get("attr_type");
Enum.AttributeType attributeType = Enum.AttributeType.valueOf(typeString);
int attributeValue = ((Long) attribute.get("attr_value")).intValue();
rune_attr_adj.put(attributeType, attributeValue);
}
}