Fix a NPC before we go live.

This commit is contained in:
Harry5573OP 2014-05-24 00:46:15 +01:00
parent d46615f0d9
commit 96d79901c7

View File

@ -110,6 +110,8 @@ public class McMMOPlayer {
pendingCallback = new Callback() {
@Override
public void done(String playerName, PlayerProfile p) {
profile = p;
party = PartyManager.getPlayerParty(playerName);
ptpRecord = new PartyTeleportRecord();
@ -160,8 +162,6 @@ public class McMMOPlayer {
if (!profile.isLoaded()) {
mcMMO.p.getLogger().log(Level.WARNING, "Unable to load the PlayerProfile for {0}. Will retry over the next several seconds.", playerName);
new RetryProfileLoadingTask().runTaskTimerAsynchronously(mcMMO.p, 11L, 31L);
} else {
new ApplySuccessfulProfile(profile).runTask(mcMMO.p);
}
}
};