Fix permission check message arg ordering

This commit is contained in:
Luck 2020-11-03 12:16:54 +00:00
parent 5bdc798237
commit 3f04d439b4
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B
3 changed files with 12 additions and 12 deletions

View File

@ -82,7 +82,7 @@ public class BulkUpdateBuilder {
throw new IllegalStateException("no action specified"); 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 @Override

View File

@ -44,38 +44,38 @@ public final class BulkUpdateStatistics {
} }
public int getAffectedNodes() { public int getAffectedNodes() {
return affectedNodes; return this.affectedNodes;
} }
public int getAffectedUsers() { public int getAffectedUsers() {
return affectedUsers; return this.affectedUsers;
} }
public int getAffectedGroups() { public int getAffectedGroups() {
return affectedGroups; return this.affectedGroups;
} }
public void incrementAffectedNodes() { public void incrementAffectedNodes() {
++affectedNodes; this.affectedNodes++;
} }
public void incrementAffectedUsers() { public void incrementAffectedUsers() {
++affectedUsers; this.affectedUsers++;
} }
public void incrementAffectedGroups() { public void incrementAffectedGroups() {
++affectedGroups; this.affectedGroups++;
} }
public void incrementAffectedNodesBy(int delta) { public void incrementAffectedNodesBy(int delta) {
affectedNodes += delta; this.affectedNodes += delta;
} }
public void incrementAffectedUsersBy(int delta) { public void incrementAffectedUsersBy(int delta) {
affectedUsers += delta; this.affectedUsers += delta;
} }
public void incrementAffectedGroupsBy(int delta) { public void incrementAffectedGroupsBy(int delta) {
affectedGroups += delta; this.affectedGroups += delta;
} }
} }

View File

@ -1748,9 +1748,9 @@ public interface Message {
.key("luckperms.command.generic.permission.check-inherits") .key("luckperms.command.generic.permission.check-inherits")
.color(GREEN) .color(GREEN)
.args( .args(
text().color(AQUA).append(holder.getFormattedDisplayName()),
text(permission, AQUA), text(permission, AQUA),
formatTristate(value), formatTristate(value),
text().color(AQUA).append(holder.getFormattedDisplayName()),
formatContextSet(context) formatContextSet(context)
) )
.append(FULL_STOP) .append(FULL_STOP)
@ -1761,9 +1761,9 @@ public interface Message {
.key("luckperms.command.generic.permission.check-inherits") .key("luckperms.command.generic.permission.check-inherits")
.color(GREEN) .color(GREEN)
.args( .args(
text().color(AQUA).append(holder.getFormattedDisplayName()),
text(permission, AQUA), text(permission, AQUA),
formatTristate(value), formatTristate(value),
text().color(AQUA).append(holder.getFormattedDisplayName()),
formatContextSet(context) formatContextSet(context)
) )
.append(FULL_STOP) .append(FULL_STOP)