Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
Fixes #427
Dieser Commit ist enthalten in:
Ursprung
b1b591f288
Commit
35c4de3484
@ -32,6 +32,9 @@ public enum NavigationWand implements DoubleActionTraceTool {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean actSecondary(Platform server, LocalConfiguration config, Player player, LocalSession session) {
|
public boolean actSecondary(Platform server, LocalConfiguration config, Player player, LocalSession session) {
|
||||||
|
if (!player.hasPermission("worldedit.navigation.jumpto.tool")) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
final int maxDist = config.navigationWandMaxDistance;
|
final int maxDist = config.navigationWandMaxDistance;
|
||||||
if (maxDist <= 0) {
|
if (maxDist <= 0) {
|
||||||
return false;
|
return false;
|
||||||
@ -47,6 +50,9 @@ public enum NavigationWand implements DoubleActionTraceTool {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean actPrimary(Platform server, LocalConfiguration config, Player player, LocalSession session) {
|
public boolean actPrimary(Platform server, LocalConfiguration config, Player player, LocalSession session) {
|
||||||
|
if (!player.hasPermission("worldedit.navigation.thru.tool")) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
final int maxDist = config.navigationWandMaxDistance;
|
final int maxDist = config.navigationWandMaxDistance;
|
||||||
if (maxDist <= 0) {
|
if (maxDist <= 0) {
|
||||||
return false;
|
return false;
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren