Skip to content

Commit

Permalink
cosmetic
Browse files Browse the repository at this point in the history
  • Loading branch information
denis-karev committed Nov 10, 2020
1 parent e3a1322 commit d158536
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Bot_NetCore/Bot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ public static void Main(string[] args)
var bot = new Bot();

Console.WriteLine(@"
██████╗ ██╗ ██████
╚════██╗ ███║██╔════
█████╔╝ ╚██║███████╗
██╔═══╝ ██║██╔═══██╗
███████╗██╗ ██║╚██████╔╝
╚══════╝╚═╝ ╚═╝ ╚═════╝
██████╗ ██╗███████╗
╚════██╗ ███║════██║
█████╔╝ ╚██║ ██╔╝
██╔═══╝ ██║ ██╔
███████╗██╗██║ ██║
╚══════╝╚═╝╚═╝ ╚═╝
"); //Font Name: ANSI Shadow

ReloadSettings(); // Загрузим настройки
Expand Down
4 changes: 2 additions & 2 deletions Bot_NetCore/Commands/SupportCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public async Task Support(CommandContext ctx)
{
if (SupportBlacklistEntry.IsBlacklisted(ctx.User.Id))
{
await ctx.RespondAsync("Вы были заблокированы для создания тикетов. Свяжитесь с администрацией для выяснения");
await ctx.RespondAsync("Создание тикетов заблокировано. Свяжитесь с администрацией для выяснения");
return;
}

Expand All @@ -71,7 +71,7 @@ public async Task Support(CommandContext ctx)
ticketEmbed.AddField($"{SupportEmoji[SupportType.Events]} {SupportNames[SupportType.Events]}", "По вопросам ивентов на сервере. Как игровых так и внутри сервера.", true);

ticketEmbed.WithFooter("‎\n" +
"За злоупотребление системой тикетов, вы будете заблокированы.\n" +
"При злоупотреблении системой тикетов вы будете заблокированы.\n" +
"Дождитесь загрузки всех вариантов ответа. У вас есть минута на выбор варианта");

var ticketMessage = await ctx.RespondAsync(embed: ticketEmbed.Build());
Expand Down

0 comments on commit d158536

Please sign in to comment.