This commit is contained in:
ChomeNS 2023-03-25 13:33:38 +07:00
parent 6ee7486778
commit 8713a30b35

View file

@ -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'
} }
] ]