Userpresence now shows a timestamp

This commit is contained in:
Master Kwoth 2016-05-03 15:26:29 +02:00
parent 55f14a0ccb
commit bd629dbbe8

View File

@ -117,7 +117,7 @@ namespace NadekoBot.Modules.Administration.Commands
if (loggingPresences.TryGetValue(e.Server, out ch)) if (loggingPresences.TryGetValue(e.Server, out ch))
if (e.Before.Status != e.After.Status) 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 { } catch { }