Quick hotfix

This commit is contained in:
Emotion 2022-12-26 00:21:51 +13:00 committed by GitHub
parent 186587fa0d
commit b4e833404c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ public class StatusCommand : ApplicationCommandModule
long closedTickets = Database.GetNumberOfClosedTickets(); long closedTickets = Database.GetNumberOfClosedTickets();
DiscordEmbed botInfo = new DiscordEmbedBuilder() DiscordEmbed botInfo = new DiscordEmbedBuilder()
.WithAuthor("KarlofDuty/supportchild @ GitHub", "https://github.com/EmotionChild/SupportChild", "https://cdn.discordapp.com/attachments/765441543100170271/914327948667011132/Ellie_Concept_2_transparent_ver.png") .WithAuthor("EmotionChild/supportchild @ GitHub", "https://github.com/EmotionChild/SupportChild", "https://cdn.discordapp.com/attachments/765441543100170271/914327948667011132/Ellie_Concept_2_transparent_ver.png")
.WithTitle("Bot information") .WithTitle("Bot information")
.WithColor(DiscordColor.Cyan) .WithColor(DiscordColor.Cyan)
.AddField("Version:", SupportChild.GetVersion()) .AddField("Version:", SupportChild.GetVersion())
@ -23,4 +23,4 @@ public class StatusCommand : ApplicationCommandModule
.AddField("Closed tickets:", closedTickets + " ", true); .AddField("Closed tickets:", closedTickets + " ", true);
await command.CreateResponseAsync(botInfo); await command.CreateResponseAsync(botInfo);
} }
} }