Fix error in username change

This commit is contained in:
mathiascode 2019-12-20 21:12:56 +02:00
parent b1c132a461
commit 1d9f62f556

View file

@ -56,7 +56,10 @@ public class SkinDownloader {
}
Main.skinInProgress.remove(player.getUniqueId());
return;
if (!shouldChangeName) {
return;
}
}
new BukkitRunnable() {