diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-06-29 20:48:27 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-06-29 20:48:27 -0400 |
commit | fd675ca9d60cc06d892ebc36a1b9624f15233f20 (patch) | |
tree | 0c510afb64eb2c6f45c15c7e22148c6e7f7ed2d7 /src/lib/extensions/BushUser.ts | |
parent | 921b07f9716fdd413ec89c4a40419a6e2d39824b (diff) | |
download | tanzanite-fd675ca9d60cc06d892ebc36a1b9624f15233f20.tar.gz tanzanite-fd675ca9d60cc06d892ebc36a1b9624f15233f20.tar.bz2 tanzanite-fd675ca9d60cc06d892ebc36a1b9624f15233f20.zip |
don't judge part 1
Diffstat (limited to 'src/lib/extensions/BushUser.ts')
-rw-r--r-- | src/lib/extensions/BushUser.ts | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/lib/extensions/BushUser.ts b/src/lib/extensions/BushUser.ts deleted file mode 100644 index 53fd449..0000000 --- a/src/lib/extensions/BushUser.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { Structures, User } from 'discord.js'; -import { BushClient } from './BushClient'; - -export class BushUser extends User { - public declare client: BushClient; - public constructor(client: BushClient, data: unknown) { - super(client, data); - } - - public isOwner(): boolean { - return this.client.isOwner(this); - } - - public isSuperUser(): boolean { - return this.client.isSuperUser(this); - } -} - -Structures.extend('User', () => BushUser); |