aboutsummaryrefslogtreecommitdiff
path: root/src/inhibitors/blacklist/blacklist.ts
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-06-24 00:56:16 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-06-24 00:56:16 -0400
commit4176b6258e44e4a095376aaf0f4c687244243a69 (patch)
tree3b9144be9a2045483c90d92fff05b3ca0b288e52 /src/inhibitors/blacklist/blacklist.ts
parente80446e23060c0325bbd6db620920d86694ec3ce (diff)
downloadtanzanite-4176b6258e44e4a095376aaf0f4c687244243a69.tar.gz
tanzanite-4176b6258e44e4a095376aaf0f4c687244243a69.tar.bz2
tanzanite-4176b6258e44e4a095376aaf0f4c687244243a69.zip
feat(*): Began working on other punishment commands etc
Diffstat (limited to 'src/inhibitors/blacklist/blacklist.ts')
-rw-r--r--src/inhibitors/blacklist/blacklist.ts14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/inhibitors/blacklist/blacklist.ts b/src/inhibitors/blacklist/blacklist.ts
deleted file mode 100644
index 309815f..0000000
--- a/src/inhibitors/blacklist/blacklist.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import { BushInhibitor } from '../../lib/extensions/BushInhibitor';
-
-export default class BlacklistInhibitor extends BushInhibitor {
- constructor() {
- super('blacklist', {
- reason: 'blacklist'
- });
- }
-
- public exec(): boolean | Promise<boolean> {
- // This is just a placeholder for now
- return false;
- }
-}