Skip to content

Commit fba606c

Browse files
committed
Apparently the on-call footers were not actually footers
1 parent db90087 commit fba606c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Commands/TechSupportCommands.cs

+2-4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ public async Task OnCallCommand(CommandContext ctx)
1111
await ctx.Member.GrantRoleAsync(ctsRole, "Used !on-call");
1212
await ctx.RespondAsync(new DiscordMessageBuilder().AddEmbed(new DiscordEmbedBuilder()
1313
.WithTitle($"{Program.cfgjson.Emoji.On} Received Community Tech Support Role")
14-
.WithDescription($"{ctx.User.Mention} is available to help out in **#tech-support**.")
15-
.WithFooter("(Use `!off-call` when you're no longer available)")
14+
.WithDescription($"{ctx.User.Mention} is available to help out in **#tech-support**.\n(Use `!off-call` when you're no longer available)")
1615
.WithColor(DiscordColor.Green)
1716
));
1817
}
@@ -26,8 +25,7 @@ public async Task OffCallCommand(CommandContext ctx)
2625
await ctx.Member.RevokeRoleAsync(ctsRole, "Used !off-call");
2726
await ctx.RespondAsync(new DiscordMessageBuilder().AddEmbed(new DiscordEmbedBuilder()
2827
.WithTitle($"{Program.cfgjson.Emoji.Off} Removed Community Tech Support Role")
29-
.WithDescription($"{ctx.User.Mention} is no longer available to help out in **#tech-support**.")
30-
.WithFooter("(Use `!on-call` again when you're available)")
28+
.WithDescription($"{ctx.User.Mention} is no longer available to help out in **#tech-support**.\n(Use `!on-call` again when you're available)")
3129
.WithColor(DiscordColor.Red)
3230
));
3331
}

0 commit comments

Comments
 (0)