From 9fa9bc922f5211a3af9b8d8e236e3b3ff022e520 Mon Sep 17 00:00:00 2001 From: SebastiaanZ <33516116+SebastiaanZ@users.noreply.github.com> Date: Sat, 9 Feb 2019 11:56:19 +0100 Subject: Changing negative bot response in nominate command to be more explicit about current bb-status of nominated user --- bot/cogs/bigbrother.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3