This commit is contained in:
RedDucks 2018-04-15 21:57:17 -04:00
parent 60d7a0ae64
commit 4d44eec7c9
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ function genNEXPassoword() {
if (offset < 10) return offset;
if (offset < 36) return String.fromCharCode(offset + 55);
return String.fromCharCode(offset + 61);
}
};
while (output.length < 16) {
output.push(character());

View File

@ -6,7 +6,7 @@ const config = require('../../config');
const constants = require('../../constants');
const helpers = require('../../helpers');
const route_debugger = new debug('Provider Route'.green);
const gamePort = require('../../config.json').nex_servers;
const gamePort = config.nex_servers;
route_debugger.log('Loading \'provider\' API routes');