clubapps and clubbans now have ok color line

This commit is contained in:
Master Kwoth 2017-09-15 22:19:31 +02:00
parent 4841418cff
commit 9cff3b59c1

View File

@ -159,7 +159,8 @@ namespace NadekoBot.Modules.Xp
return new EmbedBuilder()
.WithTitle(GetText("club_bans_for", club.ToString()))
.WithDescription(toShow);
.WithDescription(toShow)
.WithOkColor();
}, bans.Length / 10);
}
@ -190,7 +191,8 @@ namespace NadekoBot.Modules.Xp
return new EmbedBuilder()
.WithTitle(GetText("club_apps_for", club.ToString()))
.WithDescription(toShow);
.WithDescription(toShow)
.WithOkColor();
}, apps.Length / 10);
}