forked from MagicBane/Server
Helpee and groupee parsing
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user