Skip to content

Commit 34531d7

Browse files
Tingle
1 parent 2f6888a commit 34531d7

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/Nellebot/CommandModules/RandomModule.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,18 @@ public static ValueTask Ban(
6666
{
6767
return ctx.RespondAsync($"Why ban **{str}** when I can ban you instead?");
6868
}
69+
70+
[BaseCommandCheck]
71+
[Command("tingle")]
72+
[Description("Tingle")]
73+
public static ValueTask Tingle(TextCommandContext ctx, [RemainingText] string? text = null)
74+
{
75+
string? theText = ctx.Message.ReferencedMessage?.Content ?? text;
76+
77+
if (string.IsNullOrEmpty(theText)) return ValueTask.CompletedTask;
78+
79+
const string specialMention = "<@131479587287728128>";
80+
81+
return ctx.RespondAsync($"{specialMention}'s butt got pounded by a {theText}");
82+
}
6983
}

0 commit comments

Comments
 (0)