remove: Removed .rip command

This commit is contained in:
Kwoth
2024-07-28 09:50:06 +00:00
parent 3f33274cec
commit 3d287b2afa
8 changed files with 8 additions and 100 deletions

View File

@@ -39,16 +39,6 @@ public partial class Searches : NadekoModule<SearchesService>
_tzSvc = tzSvc;
}
[Cmd]
public async Task Rip([Leftover] IGuildUser usr)
{
var av = usr.RealAvatarUrl();
await using var picStream = await _service.GetRipPictureAsync(usr.Nickname ?? usr.Username, av);
await ctx.Channel.SendFileAsync(picStream,
"rip.png",
$"Rip {Format.Bold(usr.ToString())} \n\t- " + Format.Italics(ctx.User.ToString()));
}
[Cmd]
public async Task Weather([Leftover] string query)
{