This commit is contained in:
Daniel Odendahl Jr
2017-05-08 16:44:55 +00:00
parent 5846742336
commit 3d91d5c8ab
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -25,8 +25,8 @@ module.exports = class MemberMsgCommand extends Command {
prompt: 'What should be sent to the channel? Use <user>, <server>, and <mention> as placeholders.',
type: 'string',
validate: message => {
if (message.length < 1000) return true;
return 'Invalid Message. Message must be under 1000 characters.';
if (message.length < 150) return true;
return 'Invalid Message. Message must be under 150 characters.';
}
}
]
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiaobot",
"version": "18.6.3",
"version": "18.6.4",
"description": "A Discord Bot",
"main": "shardingmanager.js",
"scripts": {