mirror of
https://github.com/libraryaddict/LibsDisguises.git
synced 2024-11-04 08:59:47 +01:00
Fix LibsDisguises
This commit is contained in:
parent
33e803134b
commit
090ce6e8c5
@ -111,9 +111,9 @@ public class PlayerDisguise extends TargetedDisguise {
|
||||
|
||||
if (scoreboardName == null) {
|
||||
if (isUpsideDown()) {
|
||||
scoreboardName = new DisguiseUtilities.DScoreTeam(new String[]{"", getProfileName(), ""});
|
||||
scoreboardName = new DisguiseUtilities.DScoreTeam(this, new String[]{"", getProfileName(), ""});
|
||||
} else {
|
||||
scoreboardName = DisguiseUtilities.createExtendedName(getName());
|
||||
scoreboardName = DisguiseUtilities.createExtendedName(this);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -76,7 +76,8 @@ import java.util.stream.Collectors;
|
||||
public class DisguiseUtilities {
|
||||
@Setter
|
||||
public static class DScoreTeam {
|
||||
public DScoreTeam(String[] name) {
|
||||
public DScoreTeam(PlayerDisguise disguise, String[] name) {
|
||||
this.disguise = disguise;
|
||||
this.split = name;
|
||||
}
|
||||
|
||||
@ -1547,10 +1548,10 @@ public class DisguiseUtilities {
|
||||
return boards;
|
||||
}
|
||||
|
||||
public static DScoreTeam createExtendedName(String name) {
|
||||
String[] split = getExtendedNameSplit(null, name);
|
||||
public static DScoreTeam createExtendedName(PlayerDisguise disguise) {
|
||||
String[] split = getExtendedNameSplit(null, disguise.getName());
|
||||
|
||||
return new DScoreTeam(split);
|
||||
return new DScoreTeam(disguise, split);
|
||||
}
|
||||
|
||||
public static String getUniqueTeam() {
|
||||
|
Loading…
Reference in New Issue
Block a user