diff options
| author | 2020-10-09 18:31:13 -0700 | |
|---|---|---|
| committer | 2020-10-09 18:31:13 -0700 | |
| commit | e1b7b48db3a1510dd2defd9879c12b85929f7364 (patch) | |
| tree | de5e9adc9dc7e6bff452ef8c543f8ebd20933d36 | |
| parent | Silence: require only 1 permission to be False for a manual unsilence (diff) | |
Silence: amend the manual unsilence message
Clarify that this situation could also result from the cache being
cleared prematurely. There's no way to distinguish the two scenarios, so
a manual unsilence is required for both.
| -rw-r--r-- | bot/exts/moderation/silence.py | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/bot/exts/moderation/silence.py b/bot/exts/moderation/silence.py index ee2c0dc7c..cfdefe103 100644 --- a/bot/exts/moderation/silence.py +++ b/bot/exts/moderation/silence.py @@ -22,8 +22,9 @@ MSG_SILENCE_SUCCESS = f"{Emojis.check_mark} silenced current channel for {{durat  MSG_UNSILENCE_FAIL = f"{Emojis.cross_mark} current channel was not silenced."  MSG_UNSILENCE_MANUAL = ( -    f"{Emojis.cross_mark} current channel was not unsilenced because the current " -    f"overwrites were set manually. Please edit them manually to unsilence." +    f"{Emojis.cross_mark} current channel was not unsilenced because the current overwrites were " +    f"set manually or the cache was prematurely cleared. " +    f"Please edit the overwrites manually to unsilence."  )  MSG_UNSILENCE_SUCCESS = f"{Emojis.check_mark} unsilenced current channel." | 
