From 4ff1f34d085f64082e230165197b20969f49c1f6 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 9 Jun 2020 10:18:58 -0400 Subject: [PATCH] Fix --- commands/games-mp/guesspionage.js | 1 + commands/games-mp/lie-swatter.js | 1 + 2 files changed, 2 insertions(+) diff --git a/commands/games-mp/guesspionage.js b/commands/games-mp/guesspionage.js index dc91b238..bc2677df 100644 --- a/commands/games-mp/guesspionage.js +++ b/commands/games-mp/guesspionage.js @@ -3,6 +3,7 @@ const { stripIndents } = require('common-tags'); const Collection = require('@discordjs/collection'); const { delay, awaitPlayers } = require('../../util/Util'); const questions = require('../../assets/json/guesspionage'); +const { SUCCESS_EMOJI_ID } = process.env; const guesses = ['much higher', 'higher', 'lower', 'much lower']; const max = 8; const min = 2; diff --git a/commands/games-mp/lie-swatter.js b/commands/games-mp/lie-swatter.js index f8c89a29..4ca97860 100644 --- a/commands/games-mp/lie-swatter.js +++ b/commands/games-mp/lie-swatter.js @@ -3,6 +3,7 @@ const request = require('node-superfetch'); const { stripIndents } = require('common-tags'); const Collection = require('@discordjs/collection'); const { delay, awaitPlayers } = require('../../util/Util'); +const { SUCCESS_EMOJI_ID } = process.env; const trueOptions = ['true', 'yes', 'the truth', 't', 'tru', 'tr', 'y', 'ye']; const falseOptions = ['false', 'lie', 'no', 'a lie', 'f', 'fals', 'fal', 'fa', 'n', 'l'];