aboutsummaryrefslogtreecommitdiff
path: root/src/commands/queue.ts
diff options
context:
space:
mode:
authorSon <[email protected]>2024-04-28 19:11:38 -0400
committerGitHub <[email protected]>2024-04-28 18:11:38 -0500
commite0dfd8c9fd14cb6b644d0f426e891fa6603916ab (patch)
tree5f9a1399e2cabb38c321c93b96e5b16e5ddf1bca /src/commands/queue.ts
parent75d2714ff26254386abbf0ab9a76156d75d15e3c (diff)
downloadmuse-e0dfd8c9fd14cb6b644d0f426e891fa6603916ab.tar.xz
muse-e0dfd8c9fd14cb6b644d0f426e891fa6603916ab.zip
Fix ERR_MODULE_NOT_FOUND for constants file (#1023)
Co-authored-by: Max Isom <[email protected]>
Diffstat (limited to 'src/commands/queue.ts')
-rw-r--r--src/commands/queue.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/queue.ts b/src/commands/queue.ts
index 9115ee6..5196ca9 100644
--- a/src/commands/queue.ts
+++ b/src/commands/queue.ts
@@ -3,7 +3,7 @@ import {SlashCommandBuilder} from '@discordjs/builders';
import {inject, injectable} from 'inversify';
import {TYPES} from '../types.js';
import PlayerManager from '../managers/player.js';
-import Command from '.';
+import Command from './index.js';
import {buildQueueEmbed} from '../utils/build-embed.js';
@injectable()