mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
Fixes #682
This commit is contained in:
parent
fa442f5903
commit
a6dad4fb7b
2
CONTRIBUTING.md
Normal file
2
CONTRIBUTING.md
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
### Bugs
|
||||||
|
Please provide a `/plot debugpaste` if you are reporting a bug.
|
@ -14,7 +14,7 @@ public class Permissions {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static boolean hasPermission(final CommandCaller player, String perm) {
|
public static boolean hasPermission(final CommandCaller player, String perm) {
|
||||||
if (player.hasPermission(perm)) {
|
if (player.hasPermission(perm) || player.hasPermission(C.PERMISSION_ADMIN.s())) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
perm = perm.toLowerCase().replaceAll("^[^a-z|0-9|\\.|_|-]", "");
|
perm = perm.toLowerCase().replaceAll("^[^a-z|0-9|\\.|_|-]", "");
|
||||||
@ -42,6 +42,9 @@ public class Permissions {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static int hasPermissionRange(final PlotPlayer player, final String stub, final int range) {
|
public static int hasPermissionRange(final PlotPlayer player, final String stub, final int range) {
|
||||||
|
if (player.hasPermission(C.PERMISSION_ADMIN.s())) {
|
||||||
|
return Integer.MAX_VALUE;
|
||||||
|
}
|
||||||
final String[] nodes = stub.split("\\.");
|
final String[] nodes = stub.split("\\.");
|
||||||
final StringBuilder n = new StringBuilder();
|
final StringBuilder n = new StringBuilder();
|
||||||
for (int i = 0; i < (nodes.length - 1); i++) {
|
for (int i = 0; i < (nodes.length - 1); i++) {
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user