From 54391c3996d18f6cfa52372983ea6e0687aae283 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 9 Jan 2021 12:03:09 -0500 Subject: [PATCH] Add loading custom emoji to c4 --- commands/games-mp/connect-four.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/commands/games-mp/connect-four.js b/commands/games-mp/connect-four.js index 22d4a979..10c45952 100644 --- a/commands/games-mp/connect-four.js +++ b/commands/games-mp/connect-four.js @@ -1,6 +1,7 @@ const Command = require('../../structures/Command'); const { stripIndents } = require('common-tags'); const { verify, list } = require('../../util/Util'); +const { LOADING_EMOJI_ID } = process.env; const blankEmoji = '⚪'; const nums = ['1⃣', '2⃣', '3⃣', '4⃣', '5⃣', '6⃣', '7⃣']; const colors = { @@ -30,7 +31,8 @@ const colors = { nsfw: '🔞', nosmoke: '🚭', clock: '🕓', - coin: '🪙' + coin: '🪙', + loading: `` }; module.exports = class ConnectFourCommand extends Command {