Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
dordsor21 committed Dec 21, 2023
1 parent 3dc4410 commit c66867f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ public boolean checkPlayerBlockEvent(
return true;
}
}
return player.hasPermission(Permission.PERMISSION_ADMIN_INTERACT_OTHER,false);
return player.hasPermission(Permission.PERMISSION_ADMIN_INTERACT_OTHE, false);
}
case SPAWN_MOB -> {
if (plot == null) {
Expand All @@ -446,7 +446,7 @@ public boolean checkPlayerBlockEvent(
return true;
}
}
if (player.hasPermission(Permission.PERMISSION_ADMIN_INTERACT_OTHER,false)) {
if (player.hasPermission(Permission.PERMISSION_ADMIN_INTERACT_OTHER, false)) {
return true;
}
if (notifyPerms) {
Expand Down Expand Up @@ -481,7 +481,7 @@ public boolean checkPlayerBlockEvent(
return true;
}
}
if (player.hasPermission(Permission.PERMISSION_ADMIN_INTERACT_OTHER,false)) {
if (player.hasPermission(Permission.PERMISSION_ADMIN_INTERACT_OTHER, false)) {
return true;
}
if (notifyPerms) {
Expand Down

0 comments on commit c66867f

Please sign in to comment.