Tigran 4 anos atrás
pai
commit
30847d0ce7
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      MafiaTelegramBot/Models/Inlines/GiveToAllQuery.cs

+ 1 - 1
MafiaTelegramBot/Models/Inlines/GiveToAllQuery.cs

@@ -25,7 +25,7 @@ namespace MafiaTelegramBot.Models.Inlines
             var msg3 = strings.list_of_roles;
             var rolesList = Enum.GetValues(typeof(Roles)).Cast<Roles>().ToList();
             rolesList.RemoveAll(role => role is Roles.All or Roles.None or Roles.Doctor or Roles.Don or Roles.Mafia or Roles.Cop or Roles.Villager);
-            msg3 += $"\n{Roles.All} - {strings.use_this_to_random_giveaway}";
+            msg3 += $"\n`{Roles.All}` - {strings.use_this_to_random_giveaway}";
             foreach (var role in rolesList)
                 msg3 += $"\n{roles.ResourceManager.GetString(role.ToString())} - `{role}`";
             return await Bot.SendWithMarkdown2(ChatId, msg3);