From b755dbe8284199fccb4c10e9ad1dbd6c80e7f87e Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 9 Jan 2021 11:10:22 -0500 Subject: [PATCH] Fix --- commands/games-mp/connect-four.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-mp/connect-four.js b/commands/games-mp/connect-four.js index f65d0db3..7ee1ce6d 100644 --- a/commands/games-mp/connect-four.js +++ b/commands/games-mp/connect-four.js @@ -38,7 +38,7 @@ module.exports = class ConnectFourCommand extends Command { }, { key: 'color', - prompt: `What color do you want to be? Either ${Object.keys(colors, 'or')}.`, + prompt: `What color do you want to be? Either ${list(Object.keys(colors), 'or')}.`, type: 'string', oneOf: Object.keys(colors), parse: color => color.toLowerCase()