mirror of
https://github.com/PikaMug/Quests.git
synced 2024-11-24 03:25:20 +01:00
Fix ItemFlags breaking older servers, fixes #569
This commit is contained in:
parent
6e34954281
commit
274b27fe7c
@ -152,7 +152,8 @@ public class ItemUtil {
|
|||||||
Map<Enchantment, Integer> enchs = new HashMap<Enchantment, Integer>();
|
Map<Enchantment, Integer> enchs = new HashMap<Enchantment, Integer>();
|
||||||
String display = null;
|
String display = null;
|
||||||
LinkedList<String> lore = new LinkedList<String>();
|
LinkedList<String> lore = new LinkedList<String>();
|
||||||
ItemFlag[] flags = new ItemFlag[ItemFlag.values().length];
|
String[] flags = new String[10];
|
||||||
|
//ItemFlag[] flags = new ItemFlag[ItemFlag.values().length];
|
||||||
LinkedHashMap<Enchantment, Integer> stored = new LinkedHashMap<Enchantment, Integer>();
|
LinkedHashMap<Enchantment, Integer> stored = new LinkedHashMap<Enchantment, Integer>();
|
||||||
LinkedHashMap<String, Object> extra = new LinkedHashMap<String, Object>();
|
LinkedHashMap<String, Object> extra = new LinkedHashMap<String, Object>();
|
||||||
ItemMeta meta = null;
|
ItemMeta meta = null;
|
||||||
@ -199,7 +200,8 @@ public class ItemUtil {
|
|||||||
String[] mapping = value.replace("[", "").replace("]", "").split(", ");
|
String[] mapping = value.replace("[", "").replace("]", "").split(", ");
|
||||||
int index = 0;
|
int index = 0;
|
||||||
for (String s : mapping) {
|
for (String s : mapping) {
|
||||||
flags[index] = ItemFlag.valueOf(s);
|
//flags[index] = ItemFlag.valueOf(s);
|
||||||
|
flags[index] = s;
|
||||||
index++;
|
index++;
|
||||||
}
|
}
|
||||||
} else if (arg.startsWith("stored-enchants")) {
|
} else if (arg.startsWith("stored-enchants")) {
|
||||||
@ -277,10 +279,10 @@ public class ItemUtil {
|
|||||||
meta.setLore(lore);
|
meta.setLore(lore);
|
||||||
}
|
}
|
||||||
if (flags[0] != null && flags[0].toString().equals("")) {
|
if (flags[0] != null && flags[0].toString().equals("")) {
|
||||||
for (ItemFlag flag : flags) {
|
for (String flag : flags) {
|
||||||
if (flag != null) {
|
if (flag != null) {
|
||||||
try {
|
try {
|
||||||
meta.addItemFlags(flag);
|
meta.addItemFlags(ItemFlag.valueOf(flag));
|
||||||
} catch (NullPointerException npe) {
|
} catch (NullPointerException npe) {
|
||||||
Bukkit.getLogger().severe(flag + " is not a valid ItemFlag");
|
Bukkit.getLogger().severe(flag + " is not a valid ItemFlag");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user