From df71f020e2ba566f342394189b6534f654ff9afa Mon Sep 17 00:00:00 2001 From: fkndean Date: Sun, 27 Nov 2016 13:02:39 -0500 Subject: [PATCH] Add formatting output with scr as well as the actual output reaction. --- src/NadekoBot/Modules/CustomReactions/CustomReactions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NadekoBot/Modules/CustomReactions/CustomReactions.cs b/src/NadekoBot/Modules/CustomReactions/CustomReactions.cs index 65c4f7e0..e273d3d5 100644 --- a/src/NadekoBot/Modules/CustomReactions/CustomReactions.cs +++ b/src/NadekoBot/Modules/CustomReactions/CustomReactions.cs @@ -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); } }