update - default ephemeral enabled

This commit is contained in:
Phil 2023-02-13 19:44:20 +01:00
commit 5ee17b2612
2 changed files with 2 additions and 1 deletions

View file

@ -16,6 +16,7 @@ Boring Bug Fixes:
- Better error handling on message deletions (it was spamming the console)
- /about better formatting
- Wiki has been updated with new features
- default ephemeral enabled for successful commands
Planned for the Future:
- use bans to deny service to a guild

View file

@ -6,7 +6,7 @@ global.messageFail = async (interaction, body, color, ephemeral) => {
global.messageSuccess = async (interaction, body, color, ephemeral) => {
const sentMessage = await client.functions.get('EmbedBuilder')
.run(interaction, body, '', color || 'Green', false, ephemeral || false);
.run(interaction, body, '', color || 'Green', false, ephemeral || true);
return sentMessage;
};