Fix multi-names breaking on freebies

This commit is contained in:
libraryaddict 2020-09-19 07:09:03 +12:00
parent ac2d3d8325
commit ac574bc51c

View File

@ -2804,14 +2804,18 @@ public class DisguiseUtilities {
int[] destroyIds = new int[0];
if (!LibsPremium.isPremium()) {
internalOldNames = new String[]{StringUtils.join(internalOldNames, "\\n")};
if (internalOldNames.length > 0) {
internalOldNames = new String[]{StringUtils.join(internalOldNames, "\\n")};
}
if (!disguise.isPlayerDisguise() || ((PlayerDisguise) disguise).isNameVisible()) {
if (disguise.getMultiName().length > 1) {
getLogger().info("Multiline names is a premium feature, sorry!");
}
newNames = new String[]{StringUtils.join(disguise.getMultiName(), "\\n")};
if (disguise.getMultiName().length > 0) {
newNames = new String[]{StringUtils.join(disguise.getMultiName(), "\\n")};
}
}
} else {
newNames = (disguise instanceof PlayerDisguise && !((PlayerDisguise) disguise).isNameVisible()) ?