diff options
Diffstat (limited to 'arthur/exts/systems/system_information.py')
| -rw-r--r-- | arthur/exts/systems/system_information.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/arthur/exts/systems/system_information.py b/arthur/exts/systems/system_information.py index 83e3daa..4ccd73f 100644 --- a/arthur/exts/systems/system_information.py +++ b/arthur/exts/systems/system_information.py @@ -50,7 +50,7 @@ class SystemInformation(Cog):              return          if self.last_sent: -            if (datetime.utcnow() - self.last_sent).minutes < MIN_MINUTES: +            if (datetime.utcnow() - self.last_sent).seconds // 60 < MIN_MINUTES:                  logger.trace("Ignoring message as within cooldown")                  return | 
