diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-26 16:12:06 +0000 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-26 16:12:06 +0000 |
commit | 00ad00734ddb2c2fce8de8efcc010181c9ce1821 (patch) | |
tree | e6b79047fd2cfbef4733cfbd488ee4cb47d600d5 /src/inhibitors/checks | |
parent | 1d6e64d5c43e4398e7c0488f114acba2c8a55164 (diff) | |
download | tanzanite-00ad00734ddb2c2fce8de8efcc010181c9ce1821.tar.gz tanzanite-00ad00734ddb2c2fce8de8efcc010181c9ce1821.tar.bz2 tanzanite-00ad00734ddb2c2fce8de8efcc010181c9ce1821.zip |
feat: use Time enum
Diffstat (limited to 'src/inhibitors/checks')
-rw-r--r-- | src/inhibitors/checks/fatal.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inhibitors/checks/fatal.ts b/src/inhibitors/checks/fatal.ts index 2521b2f..411357c 100644 --- a/src/inhibitors/checks/fatal.ts +++ b/src/inhibitors/checks/fatal.ts @@ -11,7 +11,7 @@ export default class FatalInhibitor extends BushInhibitor { } public override async exec(message: BushMessage | BushSlashMessage): Promise<boolean> { - if (client.isOwner(message.author)) return false; + if (message.author.isOwner()) return false; for (const property in client.cache.global) { if (!client.cache.global[property as keyof typeof client.cache.global]) { void client.console.verbose( |