Merge pull request #807 from fkndean/dev

Add formatting output with scr as well as the actual output reaction.
This commit is contained in:
Master Kwoth 2016-11-29 00:50:27 +01:00 committed by GitHub
commit 438fc97ae1

View File

@ -212,7 +212,7 @@ namespace NadekoBot.Modules.CustomReactions
await imsg.Channel.SendMessageAsync("`No custom reaction found with that id.`").ConfigureAwait(false); await imsg.Channel.SendMessageAsync("`No custom reaction found with that id.`").ConfigureAwait(false);
else 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); .ConfigureAwait(false);
} }
} }