aboutsummaryrefslogtreecommitdiff
path: root/src/events
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/events
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/events')
-rw-r--r--src/events/guild-create.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/events/guild-create.ts b/src/events/guild-create.ts
index d566c13..1d60910 100644
--- a/src/events/guild-create.ts
+++ b/src/events/guild-create.ts
@@ -1,6 +1,6 @@
import {Client, Guild} from 'discord.js';
import container from '../inversify.config.js';
-import Command from '../commands';
+import Command from '../commands/index.js';
import {TYPES} from '../types.js';
import Config from '../services/config.js';
import {prisma} from '../utils/db.js';