Commit fba606c 1 parent db90087 commit fba606c Copy full SHA for fba606c
File tree 1 file changed +2
-4
lines changed
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)
11
11
await ctx . Member . GrantRoleAsync ( ctsRole , "Used !on-call" ) ;
12
12
await ctx . RespondAsync ( new DiscordMessageBuilder ( ) . AddEmbed ( new DiscordEmbedBuilder ( )
13
13
. 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)")
16
15
. WithColor ( DiscordColor . Green )
17
16
) ) ;
18
17
}
@@ -26,8 +25,7 @@ public async Task OffCallCommand(CommandContext ctx)
26
25
await ctx . Member . RevokeRoleAsync ( ctsRole , "Used !off-call" ) ;
27
26
await ctx . RespondAsync ( new DiscordMessageBuilder ( ) . AddEmbed ( new DiscordEmbedBuilder ( )
28
27
. 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)")
31
29
. WithColor ( DiscordColor . Red )
32
30
) ) ;
33
31
}
You can’t perform that action at this time.
0 commit comments