Fix gatewayCache

This commit is contained in:
DjDeveloperr 2020-11-05 08:52:14 +05:30
parent 973794cbc5
commit 8517e71811
2 changed files with 2 additions and 2 deletions

View file

@ -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"
/**

View file

@ -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'
})
})