This commit is contained in:
Daniel Odendahl Jr
2017-06-17 03:26:31 +00:00
parent 5bb78126a9
commit fd4e35533a
129 changed files with 322 additions and 319 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ module.exports = class ClearSettingCommand extends Command {
type: 'string',
validate: (setting) => {
if (settings.includes(setting)) return true;
else return `Please enter one of the following: ${settings.join(', ')}.`;
else return `Please enter one of the following: ${settings.join(', ')}`;
}
}
]