Fix comment

This commit is contained in:
Bryan Ashby 2019-01-03 21:02:57 -07:00
parent ea055ab58b
commit bd03d7a79b
1 changed files with 2 additions and 2 deletions

View File

@ -37,8 +37,8 @@ module.exports = class LoginServerModule extends ServerModule {
handleNewClient(client, clientSock, modInfo) {
//
// Start tracking the client. We'll assign it an ID which is
// just the index in our connections array.
// Start tracking the client. A session ID aka client ID
// will be established in addNewClient() below.
//
if(_.isUndefined(client.session)) {
client.session = {};