Skip to content

Commit

Permalink
cmds/helpverify: fix formatting error
Browse files Browse the repository at this point in the history
$ was already used as the prefix before the string, ergo the string itself does not need it.
  • Loading branch information
NathanX-S committed Nov 7, 2023
1 parent e1e1bfc commit 7950399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Commands/GeneralCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public async Task HelpVerifyCommand(InteractionContext ctx)
}

Log.Information("HelpVerifyCommand");
var message = $"Hello, {ctx.User.Mention}! Check out the ${_discordService.VerificationChannel.Mention} channel for detailed steps on how to join our roleplay server and on how to obtain access to our member-only channels.";
var message = $"Hello, {ctx.User.Mention}! Check out the {_discordService.VerificationChannel.Mention} channel for detailed steps on how to join our roleplay server and on how to obtain access to our member-only channels.";
await ctx.CreateResponseAsync(message);
}

Expand Down

0 comments on commit 7950399

Please sign in to comment.