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");
}
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

View File

@ -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;
}
}

View File

@ -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)