aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/cogs/watchchannels/bigbrother.py2
-rw-r--r--bot/cogs/watchchannels/talentpool.py2
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}```"