loosen command ratelimit

This commit is contained in:
1e99 2025-07-23 18:58:46 +02:00
parent 23e5bb03d8
commit e50b876b78

View file

@ -14,7 +14,7 @@ export default class Commands {
this.#commands = []
this.#throttle = new Map()
this.#decrementInterval = setInterval(this.#decrementThrottle.bind(this), 2 * 60 * 1_000)
this.#decrementInterval = setInterval(this.#decrementThrottle.bind(this), 60 * 1_000)
this.#client.addListener("end", () => clearInterval(this.#decrementInterval))
this.#chat.addListener("chat:chat", this.#onChat.bind(this))