Fix gravity

This commit is contained in:
Daniel Odendahl Jr
2018-09-06 22:21:14 +00:00
parent 79a4b0f8c1
commit 36eb3063aa
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ module.exports = class GravityCommand extends Command {
key: 'planet',
prompt: `What planet do you want to use as the base? Either ${list(Object.keys(planets), 'or')}.`,
type: 'string',
oneOf: planets,
oneOf: Object.keys(planets),
parse: planet => planet.toUpperCase()
}
]