Compare commits
2 Commits
98eda1879b
...
276547cecb
Author | SHA1 | Date |
---|---|---|
|
276547cecb | |
|
fbd898d2ee |
|
@ -12,7 +12,7 @@ module.exports = {
|
|||
avatar: 'https://i.imgur.com/IZwrjjG.png',
|
||||
},
|
||||
operators: ['admin'],
|
||||
uniqueUsername: true,
|
||||
uniqueUsername: false,
|
||||
socket: 'ws://127.0.0.1:3000/socket',
|
||||
api: 'http://127.0.0.1:3000/api',
|
||||
reconnectDelay: 10, // seconds
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "schat2-clive",
|
||||
"version": "1.5.9",
|
||||
"version": "1.5.10",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "schat2-clive",
|
||||
"version": "1.5.9",
|
||||
"version": "1.5.10",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"bhttp": "^1.2.8",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "schat2-clive",
|
||||
"version": "1.5.9",
|
||||
"version": "1.5.10",
|
||||
"description": "Game host for SChat 2-powered chat sites",
|
||||
"main": "src/app.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -136,7 +136,7 @@ function onLeave(data, bot) {
|
|||
|
||||
function onMessage(message, bot, games) {
|
||||
const [, command, subcommand] = message.body?.match(new RegExp(`^${config.prefix}(\\w+)(?:\\:(\\w+))?`)) || [];
|
||||
const user = bot.users[message.userId];
|
||||
const user = bot.users[message.userId] || message.user;
|
||||
const room = bot.rooms[message.roomId];
|
||||
|
||||
if (['leaderboard', 'lead', 'leader', 'leaders', 'scoreboard', 'best'].includes(subcommand) && games[command]) {
|
||||
|
|
Loading…
Reference in New Issue