From a2924dc49ff95585d55743d36a440a9aeba8158a Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Thu, 5 May 2016 17:27:59 +0200 Subject: [PATCH] done --- .../Administration/Commands/CustomReactionsCommands.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/NadekoBot/Modules/Administration/Commands/CustomReactionsCommands.cs b/NadekoBot/Modules/Administration/Commands/CustomReactionsCommands.cs index 5b6da2e9..93453fef 100644 --- a/NadekoBot/Modules/Administration/Commands/CustomReactionsCommands.cs +++ b/NadekoBot/Modules/Administration/Commands/CustomReactionsCommands.cs @@ -107,21 +107,21 @@ namespace NadekoBot.Modules.Administration.Commands { return $"No items on page {page + 1}."; } - var message = new StringBuilder($"```js\n --- Custom reactions - page {page + 1} ---\n"); + var message = new StringBuilder($"--- Custom reactions - page {page + 1} ---\n"); foreach (var cr in items) { - message.Append($"\"{ Format.Escape(cr.Key)}\"\n"); + message.Append($"{ Format.Code(cr.Key)}\n"); int i = 1; var last = cr.Value.Last(); foreach (var reaction in cr.Value) { if (last != reaction) - message.AppendLine(" ├" + i++ + "─" + reaction); + message.AppendLine(" `├" + i++ + "─`" + Format.Bold(reaction)); else - message.AppendLine(" └" + i++ + "─" + reaction); + message.AppendLine(" `└" + i++ + "─`" + Format.Bold(reaction)); } } - return message.ToString() + "\n```"; + return message.ToString() + "\n"; } } }