Fix CraftInventoryMerchant#getSelectedRecipe if there is no active merchant recipe.

This commit is contained in:
blablubbabc 2019-02-21 03:06:11 +01:00 committed by md_5
parent c24abab787
commit 14cd1688da

View File

@ -17,7 +17,8 @@ public class CraftInventoryMerchant extends CraftInventory implements MerchantIn
@Override
public MerchantRecipe getSelectedRecipe() {
return getInventory().getRecipe().asBukkit();
net.minecraft.server.MerchantRecipe nmsRecipe = getInventory().getRecipe();
return (nmsRecipe == null) ? null : nmsRecipe.asBukkit();
}
@Override