Helpee and groupee parsing

This commit is contained in:
2024-04-22 13:38:04 -04:00
parent 07a5de2c57
commit d92b1c7473
+2 -2
View File
@@ -530,14 +530,14 @@ public class ItemTemplate {
JSONArray groupee_types_json = jsonObject.getJSONArray("rune_groupee_monster_types");
for (Object o : groupee_types_json) {
int groupeeId = Long.valueOf((int) o).intValue();
int groupeeId = (int) o;
rune_groupee_monster_types.add(groupeeId);
}
JSONArray helper_types_json = jsonObject.getJSONArray("rune_helper_monster_types");
for (Object o : helper_types_json) {
int helperId = Long.valueOf((int) o).intValue();
int helperId = (int) o;
rune_helper_monster_types.add(helperId);
}