Removed unnecessary mysql call on client login.

This commit is contained in:
Jonathan Williams 2014-02-28 13:22:30 -08:00
parent c2044f7e8a
commit 8550307904
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ public class CoreClientManager implements Listener
Bukkit.getServer().getPluginManager().callEvent(new AsyncClientLoadEvent(token, client)); Bukkit.getServer().getPluginManager().callEvent(new AsyncClientLoadEvent(token, client));
// Mysql // Mysql
Bukkit.getServer().getPluginManager().callEvent(new RetrieveClientInformationEvent(client.GetPlayerName())); // Bukkit.getServer().getPluginManager().callEvent(new RetrieveClientInformationEvent(client.GetPlayerName()));
} }
@EventHandler(priority = EventPriority.LOWEST) @EventHandler(priority = EventPriority.LOWEST)