mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-31 04:13:51 -07:00
Fix CraftInventoryMerchant#getSelectedRecipe if there is no active merchant recipe.
By: blablubbabc <lukas@wirsindwir.de>
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user