forked from EllieBotDevs/elliebot
Removed .rip command
This commit is contained in:
parent
86b015115a
commit
20e5bbac89
8 changed files with 7 additions and 99 deletions
src/EllieBot/Modules/Searches
|
@ -39,16 +39,6 @@ public partial class Searches : EllieModule<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)
|
||||
{
|
||||
|
|
Reference in a new issue