1
0
mirror of https://github.com/Zrips/Jobs.git synced 2024-12-30 21:07:48 +01:00

Fix for brewing stand ownership failing to determine owner

This commit is contained in:
Zrips 2021-10-26 13:46:05 +03:00
parent 7f7003ca5f
commit 6c4923bcb2

View File

@ -362,6 +362,7 @@ public final class JobsPaymentListener implements Listener {
return;
BlockOwnerShip ownerShip = plugin.getBlockOwnerShip(CMIMaterial.get(block), false).orElse(null);
if (ownerShip == null)
return;
@ -382,7 +383,9 @@ public final class JobsPaymentListener implements Listener {
} catch (IllegalArgumentException e) {
return;
}
} else
}
if (uuid == null)
return;
JobsPlayer jPlayer = Jobs.getPlayerManager().getJobsPlayer(uuid);
@ -405,8 +408,9 @@ public final class JobsPaymentListener implements Listener {
return;
ItemStack contents = event.getContents().getIngredient();
if (contents != null)
if (contents != null) {
Jobs.action(jPlayer, new ItemActionInfo(contents, ActionType.BREW));
}
}
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)