Add a period

This commit is contained in:
Daniel Odendahl Jr
2017-05-16 13:37:39 +00:00
parent 167c6410f5
commit 9fe8220a4f
+1 -1
View File
@@ -18,7 +18,7 @@ module.exports = class HoroscopeCommand extends Command {
type: 'string',
validate: sign => {
if (signs.includes(sign.toLowerCase())) return true;
return 'Invalid sign. Use `help horoscope` for a list of signs';
return 'Invalid sign. Use `help horoscope` for a list of signs.';
},
parse: sign => sign.toLowerCase()
}