|
|
@ -504,7 +504,7 @@ public class ItemTemplate { |
|
|
|
|
|
|
|
|
|
|
|
JSONArray not_enemy_types_json = (JSONArray) jsonObject.get("rune_not_enemy_monster_types"); |
|
|
|
JSONArray not_enemy_types_json = (JSONArray) jsonObject.get("rune_not_enemy_monster_types"); |
|
|
|
|
|
|
|
|
|
|
|
for (Object o : enemy_types_json) { |
|
|
|
for (Object o : not_enemy_types_json) { |
|
|
|
String notenemy = (String) o; |
|
|
|
String notenemy = (String) o; |
|
|
|
notenemy = notenemy.replaceAll("-", ""); |
|
|
|
notenemy = notenemy.replaceAll("-", ""); |
|
|
|
Enum.MonsterType monsterType = Enum.MonsterType.valueOf(notenemy); |
|
|
|
Enum.MonsterType monsterType = Enum.MonsterType.valueOf(notenemy); |
|
|
|