Update CustomReactions.cs

This commit is contained in:
miraai 2016-08-02 02:13:03 +02:00 committed by GitHub
parent ecacd4515d
commit 70de5aca59

View File

@ -50,7 +50,7 @@ namespace NadekoBot.Modules.CustomReactions
var c = cgb.CreateCommand(commandName);
if (commandName.Contains(NadekoBot.BotMention))
c.Alias(commandName.Replace("<@", "<@!"));
c.Description($"Custom reaction. |{command.Key}")
c.Description($"Custom reaction. | `{command.Key}`")
.Parameter("args", ParameterType.Unparsed)
.Do(async e =>
{
@ -64,4 +64,4 @@ namespace NadekoBot.Modules.CustomReactions
});
}
}
}
}