From 3d39fd9784881e3732879656d2bab3ca29a3eadc Mon Sep 17 00:00:00 2001 From: Liam Date: Thu, 27 Jun 2024 17:40:21 +0100 Subject: [PATCH] fix auto role list title --- .../bat/features/autorole/command/ListSubCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cc/fascinated/bat/features/autorole/command/ListSubCommand.java b/src/main/java/cc/fascinated/bat/features/autorole/command/ListSubCommand.java index 09970c8..bba7f74 100644 --- a/src/main/java/cc/fascinated/bat/features/autorole/command/ListSubCommand.java +++ b/src/main/java/cc/fascinated/bat/features/autorole/command/ListSubCommand.java @@ -42,7 +42,7 @@ public class ListSubCommand extends BatSubCommand { } EmbedBuilder embed = EmbedUtils.genericEmbed(); - embed.setTitle("Auto Role List"); + embed.setAuthor("Auto Role List"); embed.setDescription(roles.toString()); interaction.replyEmbeds(embed.build()).queue(); }