ServerProvider init method added

This commit is contained in:
Clisprail
2014-02-20 01:18:00 +01:00
parent ecae42fa57
commit ff85cbffde
2 changed files with 5 additions and 0 deletions
@@ -158,6 +158,7 @@ public class Context {
*/
public void load() {
Core.verbose("Parsing server jar...");
serverProvider.init();
serverProvider.parseJar();
Core.verbose("Done.");
Core.verbose("Injecting hooks...");
@@ -117,6 +117,10 @@ public abstract class ServerProvider implements Opcodes {
}
public void init() {
}
public void initMouse() {
final Context context = Context.resolve();
final Applet applet = context.getApplet();