Skip to content

Commit

Permalink
Fix permission
Browse files Browse the repository at this point in the history
  • Loading branch information
TechnicJelle committed Aug 31, 2022
1 parent cd78d7f commit 3f1cae1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.technicjelle</groupId>
<artifactId>bluemap-playercontrol</artifactId>
<version>1.0.0-BETA</version>
<version>1.0.0</version>
<packaging>jar</packaging>

<name>BlueMapPlayerControl</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,6 @@ public List<String> onTabComplete(CommandSender sender, Command command, String
}

private boolean othersAllowed(CommandSender sender) {
return sender.isOp() || sender.hasPermission("bmpc.other");
return sender.isOp() || sender.hasPermission("bmpc.others");
}
}

0 comments on commit 3f1cae1

Please sign in to comment.