This commit is contained in:
Daniel Odendahl Jr
2018-09-06 22:22:50 +00:00
parent 36eb3063aa
commit 595bcb5931
+1 -1
View File
@@ -21,7 +21,7 @@ module.exports = class GravityCommand extends Command {
prompt: `What planet do you want to use as the base? Either ${list(Object.keys(planets), 'or')}.`,
type: 'string',
oneOf: Object.keys(planets),
parse: planet => planet.toUpperCase()
parse: planet => planet.toLowerCase()
}
]
});