We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da65c9d commit 4aa344bCopy full SHA for 4aa344b
src/main/java/com/comphenix/protocol/wrappers/WrappedTeamParameters.java
@@ -95,8 +95,8 @@ public static class Builder {
95
private Builder(@Nullable WrappedTeamParameters template) {
96
if (template != null) {
97
this.displayName = template.getDisplayName();
98
- this.prefix = template.getDisplayName();
99
- this.suffix = template.getDisplayName();
+ this.prefix = template.getPrefix();
+ this.suffix = template.getSuffix();
100
this.nametagVisibility = template.getNametagVisibility();
101
this.collisionRule = template.getCollisionRule();
102
this.color = template.getColor();
0 commit comments