make core visible for interactive jython server

This commit is contained in:
darkk1138
2013-11-27 21:28:01 +01:00
parent 75601031a7
commit b76a0562dd
+1 -1
View File
@@ -227,7 +227,7 @@ public class NGECore {
System.out.println("Starting InteractiveJythonServer on Port " + jythonPort);
jythonAcceptor = new InteractiveJythonAcceptor();
jythonServer = new InteractiveJythonServer((IoHandler) jythonAcceptor, jythonPort);
jythonServer = new InteractiveJythonServer((IoHandler) jythonAcceptor, jythonPort, this);
jythonAcceptor.setServer(jythonServer);
jythonServer.start();
}