This commit is contained in:
Dragon Fire
2021-03-13 13:18:22 -05:00
parent b940d240a2
commit 344f5d7ec7
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
const { shuffle } = require('../util/Util');
const { shuffle } = require('../../util/Util');
module.exports = class Deck {
constructor(cards) {
+1 -1
View File
@@ -1,7 +1,7 @@
const Collection = require('@discordjs/collection');
const Player = require('./Player');
const Deck = require('./Deck');
const { removeFromArray, awaitPlayers } = require('../util/Util');
const { removeFromArray, awaitPlayers } = require('../../util/Util');
const { SUCCESS_EMOJI_ID, FAILURE_EMOJI_ID } = process.env;
module.exports = class Game {