mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-13 18:34:54 -05:00
lazy fix
This commit is contained in:
parent
6ee7486778
commit
8713a30b35
1 changed files with 5 additions and 1 deletions
|
@ -5,6 +5,10 @@ module.exports = {
|
||||||
usage: '<message>',
|
usage: '<message>',
|
||||||
trusted: 0,
|
trusted: 0,
|
||||||
execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) {
|
execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) {
|
||||||
|
const message = args.join(' ')
|
||||||
|
|
||||||
|
if (message.toLowerCase().includes('netmsg')) return // lazy fix
|
||||||
|
|
||||||
const component = [
|
const component = [
|
||||||
{
|
{
|
||||||
text: '[',
|
text: '[',
|
||||||
|
@ -33,7 +37,7 @@ module.exports = {
|
||||||
color: 'dark_gray'
|
color: 'dark_gray'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: args.join(' '),
|
text: message,
|
||||||
color: 'gray'
|
color: 'gray'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue