Fix: Plot#getOwner can be nullable, and redstone may be present on unowned plots

This commit is contained in:
dordsor21 2022-01-25 15:41:49 +00:00
parent ff5d79699d
commit 2d0fdccc48
No known key found for this signature in database
GPG Key ID: 1E53E88969FFCF0B

View File

@ -166,7 +166,7 @@ public class BlockEventListener implements Listener {
}
if (Settings.Redstone.DISABLE_OFFLINE) {
boolean disable = false;
if (!plot.getOwner().equals(DBFunc.SERVER)) {
if (!DBFunc.SERVER.equals(plot.getOwner())) {
if (plot.isMerged()) {
disable = true;
for (UUID owner : plot.getOwners()) {