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
This update includes fixes to commands:
* userinfo -> corrected default avatar handling.
* config -> Patch bug where supplying 'next' to the default results in the bot having a fit about json in console, not continuing for user.
* botcontrols -> You can now restart the bot and actually restart it. No more reloading everything but the main bot.js file.
Also including fixes to:
* All events requiring audit log pulling -> Patched bug where fetching audit log data got the wrong user. For instance, for a user deleting their own message, it would show the last user who deleted their message prior.
* ready event -> Patched bug where invite caching causes 429 (ratelimit) errors and possible improper logging of invites.
* verification -> Patched bug where running multiple verification may cause the database to freak out because the primary key was set to serverID and not something like code.
{name: `Are you sure you wish for me to ${type}?`,value: `To confirm, use the buttons.${((type=="Restart") ? "\n*This will not reload the main bot file.*" : "")}`}
32
+
{name: `Are you sure you wish for me to ${type}?`,value: `To confirm, use the buttons.`}
33
33
]
34
34
}],
35
35
components: [row]
@@ -51,10 +51,9 @@ module.exports = {
51
51
},1,true,(async()=>{
52
52
app.logger.debug("SYS",`${app.name}${actionDoing.toLowerCase()} as of ${newDate()}.`);
0 commit comments