Skip to content

Commit

Permalink
Allow joke !!/alives in CHQ
Browse files Browse the repository at this point in the history
  • Loading branch information
angussidney committed Mar 20, 2017
1 parent 7358a8b commit 61a97d2
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions chatcommands.py
Expand Up @@ -519,14 +519,11 @@ def command_alive(ev_room, *args, **kwargs):
:param kwargs: No additional arguments expected
:return: A string
"""
if ev_room == GlobalVars.meta_tavern_room_id or ev_room == GlobalVars.socvr_room_id:
return Response(command_status=True,
message=random.choice(['Yup', 'You doubt me?', 'Of course',
'... did I miss something?', 'plz send teh coffee',
'Watching this endless list of new questions *never* gets boring',
'Kinda sorta']))
else:
return Response(command_status=True, message='Of course')
return Response(command_status=True,
message=random.choice(['Yup', 'You doubt me?', 'Of course',
'... did I miss something?', 'plz send teh coffee',
'Watching this endless list of new questions *never* gets boring',
'Kinda sorta']))


# noinspection PyIncorrectDocstring,PyUnusedLocal
Expand Down

0 comments on commit 61a97d2

Please sign in to comment.