diff options
author | 2019-10-04 12:41:05 -0700 | |
---|---|---|
committer | 2019-10-04 12:41:05 -0700 | |
commit | e353b00ca5e98f5587afcb36baba6ef7acb9f278 (patch) | |
tree | b731ceadeb6f59359834cdf70cffd24cebe577c5 | |
parent | Show previous watch reason and total after invoking watch command (diff) |
Adjust verbiage of totals for watch commands
-rw-r--r-- | bot/cogs/watchchannels/bigbrother.py | 2 | ||||
-rw-r--r-- | bot/cogs/watchchannels/talentpool.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/watchchannels/bigbrother.py b/bot/cogs/watchchannels/bigbrother.py index 9a9178534..3eba9862f 100644 --- a/bot/cogs/watchchannels/bigbrother.py +++ b/bot/cogs/watchchannels/bigbrother.py @@ -83,7 +83,7 @@ class BigBrother(WatchChannel, Cog, name="Big Brother"): ) if len(history) > 1: - total = f"({len(history) // 2} infractions total)" + total = f"({len(history) // 2} previous infractions in total)" end_reason = history[0]["reason"] start_reason = f"Watched: {history[1]['reason']}" msg += f"\n\nUser's previous watch reasons {total}:```{start_reason}\n\n{end_reason}```" diff --git a/bot/cogs/watchchannels/talentpool.py b/bot/cogs/watchchannels/talentpool.py index ba4dea836..176c6f760 100644 --- a/bot/cogs/watchchannels/talentpool.py +++ b/bot/cogs/watchchannels/talentpool.py @@ -105,7 +105,7 @@ class TalentPool(WatchChannel, Cog, name="Talentpool"): ) if history: - total = f"({len(history)} nominations total)" + total = f"({len(history)} previous nominations in total)" start_reason = f"Watched: {history[0]['reason']}" end_reason = f"Unwatched: {history[0]['end_reason']}" msg += f"\n\nUser's previous watch reasons {total}:```{start_reason}\n\n{end_reason}```" |