diff options
| -rw-r--r-- | bot/cogs/bigbrother.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bot/cogs/bigbrother.py b/bot/cogs/bigbrother.py index e64a8ee6d..0dc55609e 100644 --- a/bot/cogs/bigbrother.py +++ b/bot/cogs/bigbrother.py @@ -441,7 +441,11 @@ class BigBrother: prefix = "Additional nomination: " else: # If the user is being watched in big-brother, don't add them to talent-pool - await ctx.send(f":x: Can't add {user.mention} to the talent-pool at this moment") + message = ( + f":x: {user.mention} can't be added to the talent-pool " + "as they are currently being watched in big-brother." + ) + await ctx.send(message) return else: prefix = self.nomination_prefix |