Skip to content

Commit

Permalink
Apparently the on-call footers were not actually footers
Browse files Browse the repository at this point in the history
  • Loading branch information
Erisa committed Oct 10, 2024
1 parent db90087 commit fba606c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Commands/TechSupportCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
));
}
Expand All @@ -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)
));
}
Expand Down

0 comments on commit fba606c

Please sign in to comment.