SPIGOT-4551: Ignore invalid attribute modifier slots

This commit is contained in:
md_5 2018-12-25 09:27:17 +11:00
parent dff66dfccd
commit bd36e200da
1 changed files with 7 additions and 1 deletions

View File

@ -421,7 +421,13 @@ class CraftMetaItem implements ItemMeta, Damageable, Repairable {
continue;
}
EquipmentSlot slot = CraftEquipmentSlot.getSlot(EnumItemSlot.fromName(slotName.toLowerCase(Locale.ROOT)));
EquipmentSlot slot = null;
try {
slot = CraftEquipmentSlot.getSlot(EnumItemSlot.fromName(slotName.toLowerCase(Locale.ROOT)));
} catch (IllegalArgumentException ex) {
// SPIGOT-4551 - Slot is invalid, should really match nothing but this is undefined behaviour anyway
}
if (slot == null) {
modifiers.put(attribute, attribMod);
continue;