Fix NPE for Alchemy Fixes #5080 Fixes #5073

This commit is contained in:
nossr50 2024-09-14 15:19:13 -07:00
parent 9b046bd490
commit bac16238ac

View File

@ -152,12 +152,17 @@ public class AlchemyBrewTask extends CancellableRunnable {
private void finish() {
if (mmoPlayer == null) {
// Still need to finish brewing if the player is null
AlchemyPotionBrewer.finishBrewing(brewingStand, null, false);
} else {
final McMMOPlayerBrewEvent event = new McMMOPlayerBrewEvent(mmoPlayer, brewingStand);
mcMMO.p.getServer().getPluginManager().callEvent(event);
if (!event.isCancelled()) {
AlchemyPotionBrewer.finishBrewing(brewingStand, mmoPlayer, false);
}
}
Alchemy.brewingStandMap.remove(brewingStand.getLocation());
}