diff --git a/NadekoBot/Modules/CustomReactions/CustomReactions.cs b/NadekoBot/Modules/CustomReactions/CustomReactions.cs index ede0bd96..9d9c8c6a 100644 --- a/NadekoBot/Modules/CustomReactions/CustomReactions.cs +++ b/NadekoBot/Modules/CustomReactions/CustomReactions.cs @@ -32,8 +32,10 @@ namespace NadekoBot.Modules.CustomReactions { var commandName = command.Key.Replace("%mention%", NadekoBot.BotMention); - cgb.CreateCommand(commandName) - .Description($"Custom reaction.\n**Usage**:{command.Key}") + var c = cgb.CreateCommand(commandName); + if (commandName.Contains(NadekoBot.BotMention)) + c.Alias(commandName.Replace("<@", "<@!")); + c.Description($"Custom reaction.\n**Usage**:{command.Key}") .Parameter("args", ParameterType.Unparsed) .Do(async e => {