diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-01-31 19:20:39 -0500 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-01-31 19:20:39 -0500 |
commit | bab76f38a17c62f8c1477172fe1bc9428efb3843 (patch) | |
tree | 9aee5ed7b54e74735ff417820427c9d2efa984f4 /src/listeners/client | |
parent | 78ab3362a52578d0bcada903732f147747c609df (diff) | |
download | tanzanite-bab76f38a17c62f8c1477172fe1bc9428efb3843.tar.gz tanzanite-bab76f38a17c62f8c1477172fe1bc9428efb3843.tar.bz2 tanzanite-bab76f38a17c62f8c1477172fe1bc9428efb3843.zip |
fixes, and breaking changes
Diffstat (limited to 'src/listeners/client')
-rw-r--r-- | src/listeners/client/rateLimit.ts | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/listeners/client/rateLimit.ts b/src/listeners/client/rateLimit.ts deleted file mode 100644 index 26eaf18..0000000 --- a/src/listeners/client/rateLimit.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { BushListener, type BushClientEvents } from '#lib'; - -export default class RateLimitListener extends BushListener { - public constructor() { - super('rateLimit', { - emitter: 'client', - event: 'rateLimit', - category: 'client' - }); - } - - public override async exec(...[message]: BushClientEvents['rateLimit']): Promise<void> { - void client.console.superVerboseRaw('rateLimit', message); - } -} |