Skip to content

Commit fe2cfd9

Browse files
committed
Fix code style
1 parent 3dc4410 commit fe2cfd9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Core/src/main/java/com/plotsquared/core/util/EventDispatcher.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ public boolean checkPlayerBlockEvent(
427427
return true;
428428
}
429429
}
430-
return player.hasPermission(Permission.PERMISSION_ADMIN_INTERACT_OTHER,false);
430+
return player.hasPermission(Permission.PERMISSION_ADMIN_INTERACT_OTHER, false);
431431
}
432432
case SPAWN_MOB -> {
433433
if (plot == null) {
@@ -446,7 +446,7 @@ public boolean checkPlayerBlockEvent(
446446
return true;
447447
}
448448
}
449-
if (player.hasPermission(Permission.PERMISSION_ADMIN_INTERACT_OTHER,false)) {
449+
if (player.hasPermission(Permission.PERMISSION_ADMIN_INTERACT_OTHER, false)) {
450450
return true;
451451
}
452452
if (notifyPerms) {
@@ -481,7 +481,7 @@ public boolean checkPlayerBlockEvent(
481481
return true;
482482
}
483483
}
484-
if (player.hasPermission(Permission.PERMISSION_ADMIN_INTERACT_OTHER,false)) {
484+
if (player.hasPermission(Permission.PERMISSION_ADMIN_INTERACT_OTHER, false)) {
485485
return true;
486486
}
487487
if (notifyPerms) {

0 commit comments

Comments
 (0)