File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments