mirror of
https://github.com/TotalFreedomMC/TF-LibsDisguises.git
synced 2025-02-12 03:57:03 +00:00
Fix empty names leaving old names behind
This commit is contained in:
parent
9166120071
commit
baed87bc78
1 changed files with 1 additions and 1 deletions
|
@ -2717,7 +2717,7 @@ public class DisguiseUtilities {
|
|||
|
||||
for (int i = 0; i < newNames.length; i++) {
|
||||
if (i < internalOldNames.length) {
|
||||
if (newNames[i].equals(internalOldNames[i]) || newNames[i].isEmpty()) {
|
||||
if (newNames[i].equals(internalOldNames[i])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue