-
Notifications
You must be signed in to change notification settings - Fork 4
Modals #74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Modals #74
Conversation
@@ -22,12 +22,12 @@ | |||
"homepage": "https://github.com/jafrilli/acm-bot#readme", | |||
"dependencies": { | |||
"@discordjs/builders": "^0.12.0", | |||
"@discordjs/rest": "^0.1.0-canary.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was using an alpha version of this earlier, but stable version works now
}); | ||
for (const manager of Object.values(this.managers)) { | ||
await manager.init(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some managers depend on others to start up first (error handling, databases, etc. should be first)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should probably leave a comment here
); | ||
await interaction.reply({ | ||
content: "Command execution failed. Please contact a bot maintainer...", | ||
ephemeral: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made this ephemeral to hide failed executions from public, in case someones trying to use an anon slash command or smth.
Adding modals to the bot, wherever useful.
Aim to fully resolve #71