Fixed history being called flag list

This commit is contained in:
Teriuihi 2022-09-16 03:16:45 +02:00
parent 931781e30a
commit c59746d81f

View File

@ -117,7 +117,7 @@ public class CommandHistory extends DiscordCommand {
private void sendHistEmbed(SlashCommandInteractionEvent event, List<History> historyList, String username) {
EmbedBuilder embedBuilder = new EmbedBuilder()
.setColor(Color.ORANGE)
.setTitle("Flaglist for: " + username);
.setTitle("History for: " + username);
int i = 0;
for (History history : historyList) {