Helpee and groupee parsing

This commit is contained in:
2024-04-22 13:33:03 -04:00
parent d0a837783e
commit 07a5de2c57
+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) o).intValue();
int groupeeId = Long.valueOf((int) o).intValue();
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) o).intValue();
int helperId = Long.valueOf((int) o).intValue();
rune_helper_monster_types.add(helperId);
}