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

This commit is contained in:
Jordan 2022-01-27 12:14:16 +01:00 committed by GitHub
parent 92c54de5e9
commit 1f28bac955
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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()) {