fixing up the branch

This commit is contained in:
logsol 2012-07-22 13:05:29 +02:00
parent 005fb57c31
commit 76391c2c5e
6 changed files with 19 additions and 11 deletions

View file

@ -7,7 +7,7 @@ function(Networker, SocketIO) {
function Client(location) {
this.socket = SocketIO.connect(location);
this.networker = new Networker(socket);
this.networker = new Networker(this.socket);
}
return Client;