From 0528178e9dbda09b30abf6b533e605c54a1a16d5 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 31 Oct 2020 11:03:55 -0400 Subject: [PATCH] Fix --- commands/games-sp/hearing-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-sp/hearing-test.js b/commands/games-sp/hearing-test.js index 0794923d..1f595945 100644 --- a/commands/games-sp/hearing-test.js +++ b/commands/games-sp/hearing-test.js @@ -37,7 +37,7 @@ module.exports = class HearingTestCommand extends Command { try { let age; for (const [dataAge, file] of Object.entries(data)) { - connection.play(path.join(__dirname, '..', '..', 'assets', 'sounds', file)); + connection.play(path.join(__dirname, '..', '..', 'assets', 'sounds', 'hearing-test', file)); await delay(2000); await msg.reply('Did you hear that sound? Reply with [y]es or [n]o.'); const heard = await verify(msg.channel, msg.author);