fixed user id in afk message dm
This commit is contained in:
parent
6e0a129bc0
commit
c61f3f1433
1 changed files with 1 additions and 2 deletions
|
@ -126,13 +126,12 @@ public sealed class AfkService : IEService, IReadyExecutor
|
|||
{
|
||||
var st = SmartText.CreateFrom(msg);
|
||||
|
||||
st = $"The user you've pinged ({arg.Author}) is AFK: " + st;
|
||||
st = $"The user you've pinged (<#{mentionedUserId}>) is AFK: " + st;
|
||||
|
||||
var toDelete = await _mss.Response(arg.Channel)
|
||||
.User(arg.Author)
|
||||
.Message(uMsg)
|
||||
.Text(st)
|
||||
.Sanitize(false)
|
||||
.SendAsync();
|
||||
|
||||
toDelete.DeleteAfter(30);
|
||||
|
|
Loading…
Reference in a new issue