mirror of
https://github.com/lucko/LuckPerms.git
synced 2025-08-21 05:41:20 +02:00
Fix permission check message arg ordering
This commit is contained in:
@@ -82,7 +82,7 @@ public class BulkUpdateBuilder {
|
||||
throw new IllegalStateException("no action specified");
|
||||
}
|
||||
|
||||
return new BulkUpdate(this.dataType, this.action, ImmutableList.copyOf(this.queries), trackStatistics);
|
||||
return new BulkUpdate(this.dataType, this.action, ImmutableList.copyOf(this.queries), this.trackStatistics);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@@ -44,38 +44,38 @@ public final class BulkUpdateStatistics {
|
||||
}
|
||||
|
||||
public int getAffectedNodes() {
|
||||
return affectedNodes;
|
||||
return this.affectedNodes;
|
||||
}
|
||||
|
||||
public int getAffectedUsers() {
|
||||
return affectedUsers;
|
||||
return this.affectedUsers;
|
||||
}
|
||||
|
||||
public int getAffectedGroups() {
|
||||
return affectedGroups;
|
||||
return this.affectedGroups;
|
||||
}
|
||||
|
||||
public void incrementAffectedNodes() {
|
||||
++affectedNodes;
|
||||
this.affectedNodes++;
|
||||
}
|
||||
|
||||
public void incrementAffectedUsers() {
|
||||
++affectedUsers;
|
||||
this.affectedUsers++;
|
||||
}
|
||||
|
||||
public void incrementAffectedGroups() {
|
||||
++affectedGroups;
|
||||
this.affectedGroups++;
|
||||
}
|
||||
|
||||
public void incrementAffectedNodesBy(int delta) {
|
||||
affectedNodes += delta;
|
||||
this.affectedNodes += delta;
|
||||
}
|
||||
|
||||
public void incrementAffectedUsersBy(int delta) {
|
||||
affectedUsers += delta;
|
||||
this.affectedUsers += delta;
|
||||
}
|
||||
|
||||
public void incrementAffectedGroupsBy(int delta) {
|
||||
affectedGroups += delta;
|
||||
this.affectedGroups += delta;
|
||||
}
|
||||
}
|
||||
|
@@ -1748,9 +1748,9 @@ public interface Message {
|
||||
.key("luckperms.command.generic.permission.check-inherits")
|
||||
.color(GREEN)
|
||||
.args(
|
||||
text().color(AQUA).append(holder.getFormattedDisplayName()),
|
||||
text(permission, AQUA),
|
||||
formatTristate(value),
|
||||
text().color(AQUA).append(holder.getFormattedDisplayName()),
|
||||
formatContextSet(context)
|
||||
)
|
||||
.append(FULL_STOP)
|
||||
@@ -1761,9 +1761,9 @@ public interface Message {
|
||||
.key("luckperms.command.generic.permission.check-inherits")
|
||||
.color(GREEN)
|
||||
.args(
|
||||
text().color(AQUA).append(holder.getFormattedDisplayName()),
|
||||
text(permission, AQUA),
|
||||
formatTristate(value),
|
||||
text().color(AQUA).append(holder.getFormattedDisplayName()),
|
||||
formatContextSet(context)
|
||||
)
|
||||
.append(FULL_STOP)
|
||||
|
Reference in New Issue
Block a user