little chat fix

This commit is contained in:
ChomeNS 2023-03-01 13:10:14 +07:00
parent ba790eb89a
commit 30b864b4c6

View file

@ -2,8 +2,8 @@ module.exports = {
version: '1.19.2', version: '1.19.2',
prefixes: [ prefixes: [
'*', '*',
'cbot ', 'devcbot ',
'/cbot ' '/devcbot '
], ],
commandsDir: '../commands', // this will be used by the commands.js in the plugins folder so it needs ../ commandsDir: '../commands', // this will be used by the commands.js in the plugins folder so it needs ../
keys: { keys: {
@ -16,7 +16,7 @@ module.exports = {
}, },
console: true, console: true,
chat: { chat: {
useChat: false, useChat: true,
messageLength: 100 messageLength: 100
}, },
core: { core: {
@ -73,36 +73,36 @@ module.exports = {
}, },
servers: [ servers: [
// logging means log to console // logging means log to console
{
host: 'play.kaboom.pw',
port: 25565,
kaboom: true,
logging: true
},
// R.I.P ayunboom
// { // {
// host: 'sus.shhnowisnottheti.me', // host: 'play.kaboom.pw',
// port: 25565, // port: 25565,
// kaboom: true, // kaboom: true,
// logging: true // logging: true
// }, // },
// R.I.P ayunboom
{ {
host: 'kitsune.icu', host: 'sus.shhnowisnottheti.me',
port: 25565, port: 25565,
kaboom: true, kaboom: false,
logging: false
},
{
host: 'play.chipmunk.land',
port: 25565,
kaboom: true,
logging: true
},
{
host: 'chayapak.chipmunk.land',
port: 25565,
kaboom: true,
logging: true logging: true
} }
// {
// host: 'kitsune.icu',
// port: 25565,
// kaboom: true,
// logging: false
// },
// {
// host: 'play.chipmunk.land',
// port: 25565,
// kaboom: true,
// logging: true
// },
// {
// host: 'chayapak.chipmunk.land',
// port: 25565,
// kaboom: true,
// logging: true
// }
] ]
} }