1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-04-30 02:59:54 +03:00

Resync roles when restarting bot

Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
This commit is contained in:
Octol1ttle 2023-01-24 12:36:53 +05:00
parent 9d5bafbbf5
commit b1e43611de
Signed by: Octol1ttle
GPG key ID: B77C34313AEE1FFF
2 changed files with 8 additions and 1 deletions

View file

@ -141,7 +141,7 @@ public static class EventHandler {
}
if (memberData.MutedUntil < DateTimeOffset.Now) {
if (data.MuteRole is not null)
if (data.MuteRole is not null && !user.TimedOutUntil.HasValue)
await user.AddRoleAsync(data.MuteRole);
if (config["RemoveRolesOnMute"] is "false" && config["ReturnRolesOnRejoin"] is "true")
await user.AddRolesAsync(memberData.Roles);
@ -149,6 +149,7 @@ public static class EventHandler {
}
private static Task UserLeftEvent(SocketGuild guild, SocketUser user) {
if (user.IsBot) return Task.CompletedTask;
var data = GuildData.Get(guild).MemberData[user.Id];
data.IsInGuild = false;
data.LeftAt.Add(DateTimeOffset.Now);