From 80d5b5b11ae261945dc725a0a80115922003afcf Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Mon, 26 Jul 2021 18:47:13 -0400 Subject: refactor: this.client -> client --- src/tasks/updateCache.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/tasks/updateCache.ts') diff --git a/src/tasks/updateCache.ts b/src/tasks/updateCache.ts index 404173b..721b2db 100644 --- a/src/tasks/updateCache.ts +++ b/src/tasks/updateCache.ts @@ -12,9 +12,9 @@ export class UpdateCacheTask extends BushTask { }); } public async exec(): Promise { - await UpdateCacheTask.updateGlobalCache(this.client); - await UpdateCacheTask.updateGuildCache(this.client); - await this.client.logger.verbose(`UpdateCache`, `Updated cache.`); + await UpdateCacheTask.updateGlobalCache(client); + await UpdateCacheTask.updateGuildCache(client); + await client.logger.verbose(`UpdateCache`, `Updated cache.`); } public static async init(client: BushClient): Promise { -- cgit