Compare commits

..

No commits in common. "dc8830feeac1c423420ba57485c96925b393711d" and "eee039a90eb3b1a7ed9d530d688e9c240999593b" have entirely different histories.

5 changed files with 5 additions and 8 deletions

View File

@ -7,9 +7,6 @@ module.exports = {
username: 'Aisha', username: 'Aisha',
realName: 'Aisha', realName: 'Aisha',
}, },
style: {
color: 'var(--message-56)',
},
operators: ['admin'], operators: ['admin'],
server: 'irc.libera.chat', server: 'irc.libera.chat',
port: 6697, port: 6697,

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "schat2-clive", "name": "schat2-clive",
"version": "1.8.2", "version": "1.8.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "schat2-clive", "name": "schat2-clive",
"version": "1.8.2", "version": "1.8.1",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"bhttp": "^1.2.8", "bhttp": "^1.2.8",

View File

@ -1,6 +1,6 @@
{ {
"name": "schat2-clive", "name": "schat2-clive",
"version": "1.8.2", "version": "1.8.1",
"description": "Game host for SChat 2-powered chat sites", "description": "Game host for SChat 2-powered chat sites",
"main": "src/app.js", "main": "src/app.js",
"scripts": { "scripts": {

View File

@ -1,7 +1,7 @@
'use strict'; 'use strict';
const config = require('config'); const config = require('config');
const irc = require('irc'); const irc = require('irc-upd');
const logger = require('simple-node-logger').createSimpleLogger(); const logger = require('simple-node-logger').createSimpleLogger();
const { argv } = require('yargs'); const { argv } = require('yargs');
// const timers = require('timers/promises'); // const timers = require('timers/promises');

View File

@ -22,7 +22,7 @@ async function initPoints(identifier) {
logger.info('Creating new points file'); logger.info('Creating new points file');
await fs.writeFile(`./points-${identifier}.json`, '{}'); await fs.writeFile(`./points-${identifier}.json`, '{}');
await initPoints(identifier); initPoints();
} }
} }
} }