Skip to content

Commit

Permalink
Update police.py
Browse files Browse the repository at this point in the history
  • Loading branch information
madboy482 authored Mar 1, 2021
1 parent 333c409 commit 35ab96b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions SaitamaRobot/modules/police.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@
@user_admin
@run_async
def police(bot: Bot, update: Update):
msg = update.effective_message.reply_text('Police is coming!')
msg = update.effective_message.reply_text('**🚨Police is coming!🚨**')
for x in range(EDIT_TIMES):
msg.edit_text(police_siren[x%2])
time.sleep(EDIT_SLEEP)
msg.edit_text('Police is here!')
msg.edit_text('**🚨Police is here!🚨**')


help = """
__help__ = """
- /police : 🚔
"""

Expand All @@ -42,6 +42,6 @@ def police(bot: Bot, update: Update):

dispatcher.add_handler(POLICE_HANDLER)

mod_name = "POLICE"
command_list = ["police"]
handlers = [POLICE_HANDLER]
__mod_name__ = "POLICE"
__command_list__ = ["police"]
__handlers__ = [POLICE_HANDLER]

0 comments on commit 35ab96b

Please sign in to comment.