remove caching until i can find a good solution

This commit is contained in:
Lee
2024-06-26 16:17:57 +01:00
parent 805da78cad
commit 4d891e1825
13 changed files with 27 additions and 32 deletions

View File

@ -26,7 +26,8 @@ import java.util.Map;
/**
* @author Fascinated (fascinated7)
*/
@Service @Log4j2
@Service
@Log4j2
@DependsOn("discordService")
public class CommandService extends ListenerAdapter {
/**
@ -139,8 +140,10 @@ public class CommandService extends ListenerAdapter {
}
if (!missingPermissions.isEmpty()) {
event.replyEmbeds(EmbedUtils.errorEmbed()
.setDescription("You are missing the following permissions to execute this command: " + missingPermissions)
.build()).queue();
.setDescription("You are missing the following permissions to execute this command: " + missingPermissions)
.build())
.setEphemeral(true)
.queue();
return;
}
}
@ -150,8 +153,9 @@ public class CommandService extends ListenerAdapter {
log.error("An error occurred while executing command \"{}\"", commandName, ex);
event.replyEmbeds(EmbedUtils.successEmbed()
.setDescription("An error occurred while executing the command\n\n" + ex.getLocalizedMessage())
.build()).queue();
.setDescription("An error occurred while executing the command\n\n" + ex.getLocalizedMessage())
.build())
.queue();
}
}
}