mirror of
https://github.com/EngineHub/WorldEdit.git
synced 2024-12-21 04:49:51 +08:00
Added /worldeditselect permission in order to allow just selecting a region.
This commit is contained in:
parent
6427fdd940
commit
fd86ae8f6e
@ -1403,6 +1403,16 @@ public boolean onCommand(Player ply, String[] split) {
|
||||
* @return
|
||||
*/
|
||||
private boolean canUseCommand(Player player, String command) {
|
||||
// Allow the /worldeditselect permission
|
||||
if (command.equalsIgnoreCase("//pos1")
|
||||
|| command.equalsIgnoreCase("//pos2")
|
||||
|| command.equalsIgnoreCase("//hpos1")
|
||||
|| command.equalsIgnoreCase("//hpos2")) {
|
||||
return player.canUseCommand(command)
|
||||
|| player.canUseCommand("/worldeditselect")
|
||||
|| player.canUseCommand("/worldedit");
|
||||
}
|
||||
|
||||
return player.canUseCommand(command.replace("air", ""))
|
||||
|| player.canUseCommand("/worldedit");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user