mirror of
https://github.com/dmulloy2/ProtocolLib.git
synced 2025-02-20 14:32:30 +01:00
Fix WrappedTeamParameters.Builder incorrectly using displayName for prefix and suffix (#3050)
This commit is contained in:
parent
da65c9d3c1
commit
4aa344bab2
@ -95,8 +95,8 @@ public class WrappedTeamParameters extends AbstractWrapper {
|
||||
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();
|
||||
|
Loading…
Reference in New Issue
Block a user