diff --git a/TelegramBotBase/Commands/Extensions.cs b/TelegramBotBase/Commands/Extensions.cs index 47b415e..b866439 100644 --- a/TelegramBotBase/Commands/Extensions.cs +++ b/TelegramBotBase/Commands/Extensions.cs @@ -14,7 +14,7 @@ namespace TelegramBotBase.Commands /// public static void AddStartCommand(this List cmds, String description) { - cmds.Add(new BotCommand() { Command = "/start", Description = description }); + cmds.Add(new BotCommand() { Command = "start", Description = description }); } /// @@ -24,7 +24,7 @@ namespace TelegramBotBase.Commands /// public static void AddHelpCommand(this List cmds, String description) { - cmds.Add(new BotCommand() { Command = "/help", Description = description }); + cmds.Add(new BotCommand() { Command = "help", Description = description }); } /// @@ -34,7 +34,7 @@ namespace TelegramBotBase.Commands /// public static void AddSettingsCommand(this List cmds, String description) { - cmds.Add(new BotCommand() { Command = "/settings", Description = description }); + cmds.Add(new BotCommand() { Command = "settings", Description = description }); } } }