mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-24 11:38:40 +01:00
Fix PermissionsEx false node migration
PermissionsEx false nodes begin with a '-' not a '!'
This commit is contained in:
parent
07514000a4
commit
53db8c5928
@ -118,7 +118,7 @@ public class MigrationPermissionsEx extends SubCommand<Object> {
|
|||||||
try {
|
try {
|
||||||
for (String node : group.getOwnPermissions(null)) {
|
for (String node : group.getOwnPermissions(null)) {
|
||||||
boolean value = true;
|
boolean value = true;
|
||||||
if (node.startsWith("!")) {
|
if (node.startsWith("-")) {
|
||||||
node = node.substring(1);
|
node = node.substring(1);
|
||||||
value = false;
|
value = false;
|
||||||
}
|
}
|
||||||
@ -143,7 +143,7 @@ public class MigrationPermissionsEx extends SubCommand<Object> {
|
|||||||
for (String world : worlds) {
|
for (String world : worlds) {
|
||||||
for (String node : group.getOwnPermissions(world)) {
|
for (String node : group.getOwnPermissions(world)) {
|
||||||
boolean value = true;
|
boolean value = true;
|
||||||
if (node.startsWith("!")) {
|
if (node.startsWith("-")) {
|
||||||
node = node.substring(1);
|
node = node.substring(1);
|
||||||
value = false;
|
value = false;
|
||||||
}
|
}
|
||||||
@ -262,7 +262,7 @@ public class MigrationPermissionsEx extends SubCommand<Object> {
|
|||||||
try {
|
try {
|
||||||
for (String node : user.getOwnPermissions(null)) {
|
for (String node : user.getOwnPermissions(null)) {
|
||||||
boolean value = true;
|
boolean value = true;
|
||||||
if (node.startsWith("!")) {
|
if (node.startsWith("-")) {
|
||||||
node = node.substring(1);
|
node = node.substring(1);
|
||||||
value = false;
|
value = false;
|
||||||
}
|
}
|
||||||
@ -287,7 +287,7 @@ public class MigrationPermissionsEx extends SubCommand<Object> {
|
|||||||
for (String world : worlds) {
|
for (String world : worlds) {
|
||||||
for (String node : user.getOwnPermissions(world)) {
|
for (String node : user.getOwnPermissions(world)) {
|
||||||
boolean value = true;
|
boolean value = true;
|
||||||
if (node.startsWith("!")) {
|
if (node.startsWith("-")) {
|
||||||
node = node.substring(1);
|
node = node.substring(1);
|
||||||
value = false;
|
value = false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user