seedcord 0.7.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -548,7 +548,7 @@ var EventController = class {
|
|
|
548
548
|
}
|
|
549
549
|
attachToClient() {
|
|
550
550
|
for (const [eventName, handlerEntries] of this.eventMap) {
|
|
551
|
-
this.logger.debug(`Attaching ${chalk3.bold.green(eventName)} to ${chalk3.
|
|
551
|
+
this.logger.debug(`Attaching ${chalk3.bold.green(eventName)} to the client with ${chalk3.gray(handlerEntries.length)} handler(s)`);
|
|
552
552
|
for (const entry of handlerEntries) {
|
|
553
553
|
const register = entry.frequency === "once" ? this.core.bot.client.once.bind(this.core.bot.client) : this.core.bot.client.on.bind(this.core.bot.client);
|
|
554
554
|
register(eventName, (...args) => {
|