We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f6888a commit 34531d7Copy full SHA for 34531d7
src/Nellebot/CommandModules/RandomModule.cs
@@ -66,4 +66,18 @@ public static ValueTask Ban(
66
{
67
return ctx.RespondAsync($"Why ban **{str}** when I can ban you instead?");
68
}
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
+ }
83
0 commit comments