From d159e8736c27be238f0229e9b8e5b8412ea5bb00 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 16 Jan 2021 18:09:55 -0500 Subject: [PATCH] Fix --- commands/games-sp/minesweeper.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/commands/games-sp/minesweeper.js b/commands/games-sp/minesweeper.js index 637a17eb..d1492a8c 100644 --- a/commands/games-sp/minesweeper.js +++ b/commands/games-sp/minesweeper.js @@ -1,5 +1,7 @@ const Command = require('../../structures/Command'); const BombSweeper = require('bombsweeper.js'); +const moment = require('moment'); +require('moment-duration-format'); const { stripIndents } = require('common-tags'); const { removeFromArray, verify } = require('../../util/Util'); const nums = ['1️⃣', '2️⃣', '3️⃣', '4️⃣', '5️⃣', '6️⃣', '7️⃣', '8️⃣', '9️⃣', '🔟'];