Skip to content

Commit

Permalink
Merge pull request #50 from Dunedan/increase-cooldown-for-info-msg
Browse files Browse the repository at this point in the history
Increase cooldown for bot info messages
  • Loading branch information
Dunedan authored Dec 25, 2024
2 parents b44debf + e69febd commit 9b2c0ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion xpartamupp/echelon.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

# Number of seconds to not respond to mentions after having responded
# to a mention.
INFO_MSG_COOLDOWN_SECONDS = 120
INFO_MSG_COOLDOWN_SECONDS = 15 * 60

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion xpartamupp/modbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@

# Number of seconds to not respond to mentions after having responded
# to a mention.
INFO_MSG_COOLDOWN_SECONDS = 120
INFO_MSG_COOLDOWN_SECONDS = 15 * 60

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion xpartamupp/xpartamupp.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

# Number of seconds to not respond to mentions after having responded
# to a mention.
INFO_MSG_COOLDOWN_SECONDS = 120
INFO_MSG_COOLDOWN_SECONDS = 15 * 60

logger = logging.getLogger(__name__)

Expand Down

0 comments on commit 9b2c0ab

Please sign in to comment.