diff --git a/commands/netmsg.js b/commands/netmsg.js index 889979a..d94f32b 100644 --- a/commands/netmsg.js +++ b/commands/netmsg.js @@ -41,7 +41,7 @@ module.exports = { color: c.colors.primary }, { - text: c.args.join(' ') + text: c.args.join(' ').slice(0,512) } ], color: 'white' diff --git a/commands/say.js b/commands/say.js index e6bc74f..693591e 100644 --- a/commands/say.js +++ b/commands/say.js @@ -1,7 +1,7 @@ module.exports = { execute: (c) => { if (c.args[0].startsWith('/') && c.verify < 1) return - c.bot.chat(c.args.join(' ')) + c.bot.chat(c.args.join(' ').slice(0,512)) }, consoleIndex: true, aliases: ['echo']