Don't try to reload client if already loaded

This commit is contained in:
samczsun 2017-01-06 20:23:34 -05:00 committed by cnr
parent 1ce69dfa14
commit cdc4f3debd

View File

@ -248,7 +248,10 @@ public class CoreClientManager extends MiniPlugin
{
CoreClient client = Get(playerName);
if (client != null)
{
loadedClient.accept(client);
return;
}
loadClientByName(playerName, loadedClient);
}