From fba606ca55a323c5968b55cbf92e1c143f26fd18 Mon Sep 17 00:00:00 2001 From: Erisa A Date: Thu, 10 Oct 2024 22:03:23 +0100 Subject: [PATCH] Apparently the on-call footers were not actually footers --- Commands/TechSupportCommands.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Commands/TechSupportCommands.cs b/Commands/TechSupportCommands.cs index 4310f92f..ed7576a7 100644 --- a/Commands/TechSupportCommands.cs +++ b/Commands/TechSupportCommands.cs @@ -11,8 +11,7 @@ public async Task OnCallCommand(CommandContext ctx) await ctx.Member.GrantRoleAsync(ctsRole, "Used !on-call"); await ctx.RespondAsync(new DiscordMessageBuilder().AddEmbed(new DiscordEmbedBuilder() .WithTitle($"{Program.cfgjson.Emoji.On} Received Community Tech Support Role") - .WithDescription($"{ctx.User.Mention} is available to help out in **#tech-support**.") - .WithFooter("(Use `!off-call` when you're no longer available)") + .WithDescription($"{ctx.User.Mention} is available to help out in **#tech-support**.\n(Use `!off-call` when you're no longer available)") .WithColor(DiscordColor.Green) )); } @@ -26,8 +25,7 @@ public async Task OffCallCommand(CommandContext ctx) await ctx.Member.RevokeRoleAsync(ctsRole, "Used !off-call"); await ctx.RespondAsync(new DiscordMessageBuilder().AddEmbed(new DiscordEmbedBuilder() .WithTitle($"{Program.cfgjson.Emoji.Off} Removed Community Tech Support Role") - .WithDescription($"{ctx.User.Mention} is no longer available to help out in **#tech-support**.") - .WithFooter("(Use `!on-call` again when you're available)") + .WithDescription($"{ctx.User.Mention} is no longer available to help out in **#tech-support**.\n(Use `!on-call` again when you're available)") .WithColor(DiscordColor.Red) )); }