fix: item thrower/owner can be nuill

- Fixes #3862
This commit is contained in:
dordsor21 2022-11-11 11:16:00 +00:00
parent 28bd993680
commit f0982377c1
No known key found for this signature in database
GPG Key ID: 1E53E88969FFCF0B

View File

@ -104,6 +104,12 @@ public class BlockEventListener117 implements Listener {
if (entity instanceof Item item) {
UUID itemThrower = item.getThrower();
if (plot != null) {
if (itemThrower == null && (itemThrower = item.getOwner()) == null) {
plot.debug(
"A thrown item couldn't trigger sculk sensors because misc-interact = false and the item's owner could not be resolved.");
event.setCancelled(true);
return;
}
if (!plot.isAdded(itemThrower)) {
if (!plot.isAdded(itemThrower)) {
plot.debug("A thrown item couldn't trigger sculk sensors because misc-interact = false");