Add formatting output with scr as well as the actual output reaction.

This commit is contained in:
fkndean 2016-11-27 13:02:39 -05:00
parent 7592cebd12
commit df71f020e2

View File

@ -212,7 +212,7 @@ namespace NadekoBot.Modules.CustomReactions
await imsg.Channel.SendMessageAsync("`No custom reaction found with that id.`").ConfigureAwait(false);
else
{
await imsg.Channel.SendMessageAsync($"`Custom reaction #{id}`\n`Trigger:` {found.Trigger}\n`Response:` {found.Response}")
await imsg.Channel.SendMessageAsync($"`Custom reaction #{id}`\n`Trigger:` {found.Trigger}\n`Response:` {found.Response} ```css\n{found.Response}```")
.ConfigureAwait(false);
}
}