diff options
| author | 2018-12-24 16:39:40 -0500 | |
|---|---|---|
| committer | 2018-12-24 16:39:40 -0500 | |
| commit | 4716565247ea749193f19f0e95e05eeaf4d70288 (patch) | |
| tree | 10b3e5c0df22bcb158f3fe7f0e9b75b11b9afbdf | |
| parent | Make reason a required input to bb watch (diff) | |
Remove reason check
| -rw-r--r-- | bot/cogs/bigbrother.py | 7 | 
1 files changed, 1 insertions, 6 deletions
| diff --git a/bot/cogs/bigbrother.py b/bot/cogs/bigbrother.py index 0f2cc7ac8..31dbf8b5e 100644 --- a/bot/cogs/bigbrother.py +++ b/bot/cogs/bigbrother.py @@ -216,18 +216,13 @@ class BigBrother:      @bigbrother_group.command(name='watch', aliases=('w',))      @with_role(Roles.owner, Roles.admin, Roles.moderator) -    async def watch_command(self, ctx: Context, user: User, *, reason: str = None): +    async def watch_command(self, ctx: Context, user: User, *, reason: str):          """          Relay messages sent by the given `user` to the `#big-brother-logs` channel          A `reason` for watching is required, which is added for the user to be watched as a          note (aka: shadow warning)          """ - -        if not reason: -            await ctx.send(":x: A reason for watching this user is required") -            return -          channel_id = Channels.big_brother_logs          post_data = { | 
