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