Attempt to fix IOOBException due getOfflinePlayer at server startup

This commit is contained in:
bm01
2013-02-09 15:16:57 +01:00
parent 317a39177b
commit b628b9eb4d
2 changed files with 16 additions and 1 deletions

View File

@ -0,0 +1,10 @@
package com.gmail.nossr50.skills.runnables;
import com.gmail.nossr50.party.PartyManager;
public class PartiesLoader implements Runnable {
@Override
public void run() {
PartyManager.loadParties();
}
}