SPIGOT-798: Allow for CustomPotionEffects to be empty

This commit is contained in:
Thinkofdeath 2015-04-15 15:02:34 +01:00
parent e4ca2af9c4
commit 5b2764148d

View File

@ -47,7 +47,6 @@ class CraftMetaPotion extends CraftMetaItem implements PotionMeta {
if (tag.hasKey(POTION_EFFECTS.NBT)) {
NBTTagList list = tag.getList(POTION_EFFECTS.NBT, 10);
int length = list.size();
if (length > 0) {
customEffects = new ArrayList<PotionEffect>(length);
for (int i = 0; i < length; i++) {
@ -61,7 +60,6 @@ class CraftMetaPotion extends CraftMetaItem implements PotionMeta {
}
}
}
}
CraftMetaPotion(Map<String, Object> map) {
super(map);
@ -82,7 +80,7 @@ class CraftMetaPotion extends CraftMetaItem implements PotionMeta {
@Override
void applyToItem(NBTTagCompound tag) {
super.applyToItem(tag);
if (hasCustomEffects()) {
if (customEffects != null) {
NBTTagList effectList = new NBTTagList();
tag.set(POTION_EFFECTS.NBT, effectList);
@ -127,7 +125,7 @@ class CraftMetaPotion extends CraftMetaItem implements PotionMeta {
}
public boolean hasCustomEffects() {
return !(customEffects == null || customEffects.isEmpty());
return customEffects != null;
}
public List<PotionEffect> getCustomEffects() {
@ -177,6 +175,9 @@ class CraftMetaPotion extends CraftMetaItem implements PotionMeta {
changed = true;
}
}
if (customEffects.isEmpty()) {
customEffects = null;
}
return changed;
}