change log color for voice channel switching
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 59s

This commit is contained in:
Lee 2024-07-05 21:42:47 +01:00
parent a7af4108c6
commit 863206bb9f

@ -129,7 +129,7 @@ public class ChannelListener implements EventListener {
.appendLine("User: %s".formatted(user.getDiscordUser().getAsMention()), true)
.appendLine("Channel: %s -> %s".formatted(oldChannel.getAsMention(), voiceChannel.getAsMention()), true)
.build();
logFeature.sendLog(guild, LogType.VOICE_CHANNEL_SWITCH, EmbedUtils.successEmbed().setDescription(switchDescription).build());
logFeature.sendLog(guild, LogType.VOICE_CHANNEL_SWITCH, EmbedUtils.genericEmbed().setDescription(switchDescription).build());
return;
}