Compare commits

..

No commits in common. "ba8e39f857f251caf03ac1bee7f3e05f96218d45" and "21feb37d214b4ad38bace82346251661550232a8" have entirely different histories.

3 changed files with 3 additions and 4 deletions

4
package-lock.json generated
View File

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

View File

@ -1,6 +1,6 @@
{ {
"name": "schat2-clive", "name": "schat2-clive",
"version": "1.26.2", "version": "1.26.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

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