You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
v5 Release Milestone 1
* Added ban command
* Added config command
* Added kick command
* Updated reactionroles command to allow cancellation
* Added unban command
* Updated channelCreate, channelDelete, and channelUpdate as there were many problems in the last commit.
* Added emojiCreate, emojiDelete, emojiUpdate
* guildBanAdd and guildBanRemove events now work and are now added in this commit.
* Added guildCreate and updated guildDelete so that invite tracking is working.
* Updated guildMemberRemove and guildMemberAdd
* Added guildMemberUpdate
* Added guildUpdate
* Added inviteCreate and inviteDelete for invite tracking.
* Updated messageCreate, messageDelete, messageDeleteBulk, messageUpdate events to remedy many bugs.
* Updated ready event to track invites properly.
* Updated roleCreate, roleDelete, and roleUpdate to remedy even more bugs
* Added to the bootloader the new settings you can play with! (logging stuff)
* Added Member Welcome Image Generation (with some templates)
* Corrected bot file to not die when unloading events and updated intents to include ALL intents
* Fix a itty bitsy ~~spider~~ bug in the explode cmd (#20) - (if args weren't an user that it would get the first part of the message instead of full args.)
Co-authored-by: Sophie Mondz <anthonymondz@gmail.com>
app.logger.debug("DISCORD",`[MESSAGE] Got message in ${(currTime-message.createdTimestamp)/1000}ms. | Responded in ${(currTime-msg.createdTimestamp)/1000}ms.`);
316
+
if(callback!=null)callback(msg);
317
+
}).catch(err=>{app.logger.warn("DISCORD",`[MESSAGE] Message failed to send! Error: ${err.message}`)});
318
+
else
319
+
message.send(options).then(msg=>{if(callback!=null)callback(msg);}).catch(err=>{app.logger.warn("DISCORD",`[MESSAGE] Message failed to send! Error: ${err.message}`)});
0 commit comments