From bd629dbbe86dbe61bca5104476515c6789a3bc4e Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Tue, 3 May 2016 15:26:29 +0200 Subject: [PATCH] Userpresence now shows a timestamp --- NadekoBot/Modules/Administration/Commands/LogCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NadekoBot/Modules/Administration/Commands/LogCommand.cs b/NadekoBot/Modules/Administration/Commands/LogCommand.cs index 9351025b..3c6fa664 100644 --- a/NadekoBot/Modules/Administration/Commands/LogCommand.cs +++ b/NadekoBot/Modules/Administration/Commands/LogCommand.cs @@ -117,7 +117,7 @@ namespace NadekoBot.Modules.Administration.Commands if (loggingPresences.TryGetValue(e.Server, out ch)) if (e.Before.Status != e.After.Status) { - await ch.SendMessage($"**{e.Before.Name}** is now **{e.After.Status}**.").ConfigureAwait(false); + await ch.SendMessage($"`[{DateTime.Now:HH:mm:ss}]`**{e.Before.Name}** is now **{e.After.Status}**.").ConfigureAwait(false); } } catch { }