diff --git a/src/main/java/cc/fascinated/bat/features/logging/command/ListSubCommand.java b/src/main/java/cc/fascinated/bat/features/logging/command/ListSubCommand.java index 6ec1fcd..7e9ebc6 100644 --- a/src/main/java/cc/fascinated/bat/features/logging/command/ListSubCommand.java +++ b/src/main/java/cc/fascinated/bat/features/logging/command/ListSubCommand.java @@ -56,10 +56,6 @@ public class ListSubCommand extends BatSubCommand implements EventListener { if (guild == null || !event.getComponentId().startsWith("logs:list:")) { // Invalid button return; } - if (!event.getInteraction().getUser().getId().equals(user.getId())) { - event.replyEmbeds(EmbedUtils.errorEmbed().setDescription("You cannot interact with this button").build()).setEphemeral(true).queue(); - return; - } String[] split = event.getComponentId().split(":"); if (split.length != 3) { return;