aboutsummaryrefslogtreecommitdiff
path: root/src/inhibitors/blacklist/blacklist.ts
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-05-27 17:15:53 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-05-27 17:15:53 -0400
commit705cead579a79d6ee86dd2e5edfcea2344bea6ce (patch)
tree3adf8875de96e84506d7b650cdc50d358a861d5c /src/inhibitors/blacklist/blacklist.ts
parent2c74ebf6651ccdc78e9fa5799c7887fe52b1ac2d (diff)
parent1546da359646b89f13d17784eb7653a52ca61efd (diff)
downloadtanzanite-705cead579a79d6ee86dd2e5edfcea2344bea6ce.tar.gz
tanzanite-705cead579a79d6ee86dd2e5edfcea2344bea6ce.tar.bz2
tanzanite-705cead579a79d6ee86dd2e5edfcea2344bea6ce.zip
Merge branch 'rewrite' of https://github.com/NotEnoughUpdates/mb-bot-ts into rewrite
Diffstat (limited to 'src/inhibitors/blacklist/blacklist.ts')
-rw-r--r--src/inhibitors/blacklist/blacklist.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/inhibitors/blacklist/blacklist.ts b/src/inhibitors/blacklist/blacklist.ts
new file mode 100644
index 0000000..309815f
--- /dev/null
+++ b/src/inhibitors/blacklist/blacklist.ts
@@ -0,0 +1,14 @@
+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;
+ }
+}