fixes to logcommand
This commit is contained in:
parent
7e962accf6
commit
5b15732527
@ -134,8 +134,8 @@ $@"🕔`[{prettyCurrentTime}]` **Message** 🚮 `#{e.Channel.Name}`
|
|||||||
await ch.SendMessage(
|
await ch.SendMessage(
|
||||||
$@"🕔`[{prettyCurrentTime}]` **Message** 📝 `#{e.Channel.Name}`
|
$@"🕔`[{prettyCurrentTime}]` **Message** 📝 `#{e.Channel.Name}`
|
||||||
👤`{e.User?.ToString() ?? ("NULL")}`
|
👤`{e.User?.ToString() ?? ("NULL")}`
|
||||||
`Old:` {e.Before.Text}
|
`Old:` {e.Before.Text}
|
||||||
`New:` {e.After.Text}").ConfigureAwait(false);
|
`New:` {e.After.Text}").ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
catch { }
|
catch { }
|
||||||
}
|
}
|
||||||
@ -176,13 +176,13 @@ $@"🕔`[{prettyCurrentTime}]` **Message** 📝 `#{e.Channel.Name}`
|
|||||||
if (e.Before.Name != e.After.Name)
|
if (e.Before.Name != e.After.Name)
|
||||||
str += $"**Name Changed**\n\t`{e.Before.Name}` => `{e.After.Name}`";
|
str += $"**Name Changed**\n\t`{e.Before.Name}` => `{e.After.Name}`";
|
||||||
else if (e.Before.AvatarUrl != e.After.AvatarUrl)
|
else if (e.Before.AvatarUrl != e.After.AvatarUrl)
|
||||||
str += $"**Avatar Changed**\n\t {e.Before.AvatarUrl.ShortenUrl()} `=>` {e.After.AvatarUrl.ShortenUrl()}";
|
str += $"**Avatar Changed**👤`{e.Before?.ToString()}`\n\t {await e.Before.AvatarUrl.ShortenUrl()} `=>` {await e.After.AvatarUrl.ShortenUrl()}";
|
||||||
else if (!e.Before.Roles.SequenceEqual(e.After.Roles))
|
else if (!e.Before.Roles.SequenceEqual(e.After.Roles))
|
||||||
{
|
{
|
||||||
if (e.Before.Roles.Count() < e.After.Roles.Count())
|
if (e.Before.Roles.Count() < e.After.Roles.Count())
|
||||||
{
|
{
|
||||||
var diffRoles = e.After.Roles.Where(r => !e.Before.Roles.Contains(r)).Select(r => "`" + r.Name + "`");
|
var diffRoles = e.After.Roles.Where(r => !e.Before.Roles.Contains(r)).Select(r => "`" + r.Name + "`");
|
||||||
str += $"**User's Roles changed +**\n👤`{e.Before?.ToString()}`\n\tNow has {string.Join(", ", diffRoles)} role.";
|
str += $"**User's Roles changed +**👤`{e.Before?.ToString()}`\n\tNow has {string.Join(", ", diffRoles)} role.";
|
||||||
}
|
}
|
||||||
else if (e.Before.Roles.Count() > e.After.Roles.Count())
|
else if (e.Before.Roles.Count() > e.After.Roles.Count())
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user