mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-12 09:54:59 -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>',
|
||||
trusted: 0,
|
||||
execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) {
|
||||
const message = args.join(' ')
|
||||
|
||||
if (message.toLowerCase().includes('netmsg')) return // lazy fix
|
||||
|
||||
const component = [
|
||||
{
|
||||
text: '[',
|
||||
|
@ -33,7 +37,7 @@ module.exports = {
|
|||
color: 'dark_gray'
|
||||
},
|
||||
{
|
||||
text: args.join(' '),
|
||||
text: message,
|
||||
color: 'gray'
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue