Bug Fixes

This commit is contained in:
Daniel Odendahl Jr
2017-06-06 20:48:28 +00:00
parent e0421885bf
commit f5e7c229a0
3 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -12,7 +12,8 @@ module.exports = class RoastCommand extends Command {
{
key: 'user',
prompt: 'What user do you want to roast?',
type: 'string'
type: 'string',
default: ''
}
]
});
+2 -1
View File
@@ -16,7 +16,8 @@ module.exports = class XKCDCommand extends Command {
key: 'type',
prompt: 'Please enter either a specific comic number, today, or random.',
type: 'string',
default: 'random'
default: 'random',
parse: (type) => type.toLowerCase()
}
]
});
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiaobot",
"version": "22.1.2",
"version": "22.1.3",
"description": "A Discord Bot",
"main": "Shard.js",
"scripts": {