mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
fix: fixed user id in afk message dm
This commit is contained in:
@@ -126,13 +126,12 @@ public sealed class AfkService : INService, 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);
|
||||
|
Reference in New Issue
Block a user