aboutsummaryrefslogtreecommitdiffstats
path: root/tests/base.py (unfollow)
Commit message (Collapse)AuthorLines
2020-08-30Everyone ping: added formatting to member countGravatar MrAwesomeRocks-1/+1
Seperated the member count by commas every three digits.
2020-08-30Everyone ping: Changed message, cleaned fileGravatar MrAwesomeRocks-7/+1
Changed the message to say the raw member count, not just thousands. Also cleaned up some unused variables and imports in the file.
2020-08-29Everyone Ping: Fixed linting errorGravatar MrAwesomeRocks-1/+1
Switched from string.format to f-string for server member count.
2020-08-29Everyone Ping: Changed embed text and locationGravatar MrAwesomeRocks-15/+5
The you can view the embed text in the `everyone_ping.py` file. The embed also now sends in the server instead of a DM.
2020-08-29Everyone Ping: Removed debug `print`, spellingGravatar MrAwesomeRocks-2/+2
Removed a debug `print` statement, fixed a spelling mistake. Also added a comment for the DM string.
2020-08-29Everyone ping: Send embed on ping, fixed checkGravatar MrAwesomeRocks-3/+29
When a user pings the everyone role, they now get an embed explaining why what they did was wrong. The ping detection was also fixed to not thing that every message was a ping (changed form `>=` to `>`).
2020-08-29Everyone Ping: Fixed rule, edited configGravatar MrAwesomeRocks-12/+8
Changed the method of checking for an everyone ping. Also changed the config to act as `min pings` instead of `ping enabled/disabled`.
2020-08-29Everyone Ping: Added required values to configGravatar MrAwesomeRocks-2/+3
The `max` and `interval` values were required, so they were added to the config file and the rule was modified to accept these new values.
2020-08-29Everyone Ping: Added rule to recognized rulesGravatar MrAwesomeRocks-1/+3
Added mapping to anti-spam cog, then also edited __init__ in the rules folder to expose the apply function.