From fd675ca9d60cc06d892ebc36a1b9624f15233f20 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Tue, 29 Jun 2021 20:48:27 -0400 Subject: don't judge part 1 --- src/lib/extensions/BushUser.ts | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 src/lib/extensions/BushUser.ts (limited to 'src/lib/extensions/BushUser.ts') 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); -- cgit