diff --git a/src/gateway/index.ts b/src/gateway/index.ts index b2002d2..7de2bac 100644 --- a/src/gateway/index.ts +++ b/src/gateway/index.ts @@ -12,7 +12,7 @@ import { } from '../types/gateway.ts' import { gatewayHandlers } from './handlers/index.ts' import { GATEWAY_BOT } from '../types/endpoint.ts' -import { GatewayCache } from "../managers/GatewayCache.ts" +import { GatewayCache } from "../managers/gatewayCache.ts" import { ClientActivityPayload } from "../structures/presence.ts" /** diff --git a/src/test/index.ts b/src/test/index.ts index dc925ec..c8941f0 100644 --- a/src/test/index.ts +++ b/src/test/index.ts @@ -25,7 +25,7 @@ bot.setAdapter(new DefaultCacheAdapter(bot)) bot.on('ready', () => { console.log(`[Login] Logged in as ${bot.user?.tag}!`) bot.setPresence({ - name: "Test After Ready", + name: "Test - Ready", type: 'COMPETING' }) })