mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-04 02:01:44 +01:00
SPIGOT-4047: Ignore non-existent potions
This commit is contained in:
parent
fc1b107579
commit
80fefcf5ef
1 changed files with 5 additions and 0 deletions
|
@ -71,6 +71,11 @@ class CraftMetaPotion extends CraftMetaItem implements PotionMeta {
|
||||||
for (int i = 0; i < length; i++) {
|
for (int i = 0; i < length; i++) {
|
||||||
NBTTagCompound effect = list.getCompound(i);
|
NBTTagCompound effect = list.getCompound(i);
|
||||||
PotionEffectType type = PotionEffectType.getById(effect.getByte(ID.NBT));
|
PotionEffectType type = PotionEffectType.getById(effect.getByte(ID.NBT));
|
||||||
|
// SPIGOT-4047: Vanilla just disregards these
|
||||||
|
if (type == null) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
int amp = effect.getByte(AMPLIFIER.NBT);
|
int amp = effect.getByte(AMPLIFIER.NBT);
|
||||||
int duration = effect.getInt(DURATION.NBT);
|
int duration = effect.getInt(DURATION.NBT);
|
||||||
boolean ambient = effect.getBoolean(AMBIENT.NBT);
|
boolean ambient = effect.getBoolean(AMBIENT.NBT);
|
||||||
|
|
Loading…
Reference in a new issue