aboutsummaryrefslogtreecommitdiff
path: root/src/inhibitors
diff options
context:
space:
mode:
authorTymanWasTaken <32660892+tymanwastaken@users.noreply.github.com>2021-04-27 21:06:22 -0600
committerTymanWasTaken <32660892+tymanwastaken@users.noreply.github.com>2021-04-27 21:06:22 -0600
commit763fb7d98c3accbb21adf035a7cf0a83cb9533c9 (patch)
tree9d333fbca2a2a8e19d79904a4e29226174925cfc /src/inhibitors
downloadtanzanite-763fb7d98c3accbb21adf035a7cf0a83cb9533c9.tar.gz
tanzanite-763fb7d98c3accbb21adf035a7cf0a83cb9533c9.tar.bz2
tanzanite-763fb7d98c3accbb21adf035a7cf0a83cb9533c9.zip
legit just copy utilibot v2 code
Diffstat (limited to 'src/inhibitors')
-rw-r--r--src/inhibitors/blacklist/BlacklistInhibitor.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/inhibitors/blacklist/BlacklistInhibitor.ts b/src/inhibitors/blacklist/BlacklistInhibitor.ts
new file mode 100644
index 0000000..82db4c2
--- /dev/null
+++ b/src/inhibitors/blacklist/BlacklistInhibitor.ts
@@ -0,0 +1,14 @@
+import { BotInhibitor } from '../../lib/extensions/BotInhibitor';
+
+export default class BlacklistInhibitor extends BotInhibitor {
+ constructor() {
+ super('blacklist', {
+ reason: 'blacklist'
+ });
+ }
+
+ public exec(): boolean | Promise<boolean> {
+ // This is just a placeholder for now
+ return false;
+ }
+}