diff options
| author | 2019-02-09 11:56:19 +0100 | |
|---|---|---|
| committer | 2019-02-09 11:56:19 +0100 | |
| commit | 9fa9bc922f5211a3af9b8d8e236e3b3ff022e520 (patch) | |
| tree | 4c6100a39ee31f5bb681392c0dec9f2276454386 | |
| parent | Adding current staff member check for nomination and updating prefix accordin... (diff) | |
Changing negative bot response in nominate command to be more explicit about current bb-status of nominated user
| -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 |