mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-04-20 00:43:36 +03:00
Added toLower() for trolling things
This commit is contained in:
parent
37360a39c7
commit
4d1767bd61
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ public class MessageCreateResponder : IResponder<IMessageCreate> {
|
|||
|
||||
public Task<Result> RespondAsync(IMessageCreate gatewayEvent, CancellationToken ct = default) {
|
||||
_ = _channelApi.CreateMessageAsync(
|
||||
gatewayEvent.ChannelID, ct: ct, content: gatewayEvent.Content switch {
|
||||
gatewayEvent.ChannelID, ct: ct, content: gatewayEvent.Content.ToLower() switch {
|
||||
"whoami" => "`nobody`",
|
||||
"сука !!" => "`root`",
|
||||
"воооо" => "`removing /...`",
|
||||
|
|
Loading…
Add table
Reference in a new issue