removed node-fork, using native child_process now, the API is the same

This commit is contained in:
Jeena Paradies 2012-07-23 01:11:18 +02:00
parent 25653b4d58
commit b5b10ba0b9
3 changed files with 29 additions and 7 deletions

View file

@ -1,12 +1,12 @@
define([
"Lobby/User",
"Game/Server/Channel",
"node-fork"
"child_process"
],
function(User, Channel, nodeFork) {
function(User, Channel, childProcess) {
var fork = nodeFork.fork;
var fork = childProcess.fork;
function Coordinator() {
this.channels = {};