#1324: Improve ItemFactory#enchantItem consistency
This commit is contained in:
parent
4e419c774c
commit
9fde4c037c
@ -489,13 +489,8 @@ public final class CraftItemFactory implements ItemFactory {
|
||||
private static ItemStack enchantItem(RandomSource source, ItemStack itemStack, int level, boolean allowTreasures) {
|
||||
Preconditions.checkArgument(itemStack != null, "ItemStack must not be null");
|
||||
Preconditions.checkArgument(!itemStack.getType().isAir(), "ItemStack must not be air");
|
||||
|
||||
if (!(itemStack instanceof CraftItemStack)) {
|
||||
itemStack = CraftItemStack.asCraftCopy(itemStack);
|
||||
}
|
||||
|
||||
CraftItemStack craft = (CraftItemStack) itemStack;
|
||||
EnchantmentManager.enchantItem(source, craft.handle, level, allowTreasures);
|
||||
return craft;
|
||||
return CraftItemStack.asCraftMirror(EnchantmentManager.enchantItem(source, craft.handle, level, allowTreasures));
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user