Compare commits

...

2 Commits

Author SHA1 Message Date
Niels Simenon ba8e39f857 1.26.2 2023-04-11 00:51:52 +02:00
Niels Simenon 44386cf096 Added recipient to IRC message. 2023-04-11 00:51:50 +02:00
3 changed files with 4 additions and 3 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "schat2-clive",
"version": "1.26.1",
"version": "1.26.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "schat2-clive",
"version": "1.26.1",
"version": "1.26.2",
"license": "ISC",
"dependencies": {
"better-sqlite3": "^8.3.0",

View File

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

View File

@ -51,6 +51,7 @@ async function init() {
client.addListener('message', (from, to, body) => onMessage({
from,
to,
recipient: /^#/.test(to) ? to : null,
body,
type: 'message',
}, bot, games));