From bd03d7a79bf45df0a3603659ebfdcb1f831b6be5 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Thu, 3 Jan 2019 21:02:57 -0700 Subject: [PATCH] Fix comment --- core/login_server_module.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/login_server_module.js b/core/login_server_module.js index e5fccb39..8ba1d978 100644 --- a/core/login_server_module.js +++ b/core/login_server_module.js @@ -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 = {};