From 8517e71811b0c01c60a643a9bb7e34bde5ee997d Mon Sep 17 00:00:00 2001 From: DjDeveloperr Date: Thu, 5 Nov 2020 08:52:14 +0530 Subject: [PATCH] Fix gatewayCache --- src/gateway/index.ts | 2 +- src/test/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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' }) })