Skip to content

Commit

Permalink
Fix WrappedTeamParameters.Builder incorrectly using displayName for p…
Browse files Browse the repository at this point in the history
…refix and suffix (#3050)
  • Loading branch information
hiett authored Jun 27, 2024
1 parent da65c9d commit 4aa344b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ public static class Builder {
private Builder(@Nullable WrappedTeamParameters template) {
if (template != null) {
this.displayName = template.getDisplayName();
this.prefix = template.getDisplayName();
this.suffix = template.getDisplayName();
this.prefix = template.getPrefix();
this.suffix = template.getSuffix();
this.nametagVisibility = template.getNametagVisibility();
this.collisionRule = template.getCollisionRule();
this.color = template.getColor();
Expand Down

0 comments on commit 4aa344b

Please sign in to comment.