mirror of
https://gitlab.com/Deukhoofd/DeukBot4.git
synced 2025-09-02 23:57:19 +00:00
Fix silencing always defaulting to 5 minutes
This commit is contained in:
parent
16e41120bd
commit
585dabce39
@ -210,7 +210,7 @@ namespace DeukBot4.MessageHandlers.CommandHandler
|
||||
}
|
||||
|
||||
await user.AddRoleAsync(silencedRole);
|
||||
if (span.Seconds <= 0)
|
||||
if (span.TotalSeconds <= 0)
|
||||
span = TimeSpan.FromMinutes(5);
|
||||
await Task.Delay(span);
|
||||
await user.RemoveRoleAsync(silencedRole);
|
||||
|
Loading…
x
Reference in New Issue
Block a user