Skip to content

Commit

Permalink
Update echo.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MrRizoel committed Feb 6, 2022
1 parent 855810f commit 6b89df5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RiZoeLXSpam/plugins/echo.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
@Riz9.on(events.NewMessage(incoming=True, pattern=r"\%saddecho(?: |$)(.*)" % hl))
@Riz10.on(events.NewMessage(incoming=True, pattern=r"\%saddecho(?: |$)(.*)" % hl))
async def echo(event):
usage = "๐— ๐—ผ๐—ฑ๐˜‚๐—น๐—ฒ ๐—ก๐—ฎ๐—บ๐—ฒ = **ECHO**\n\nCommand:\n\n `{hl}addecho <reply to a User>`"
usage = f"๐— ๐—ผ๐—ฑ๐˜‚๐—น๐—ฒ ๐—ก๐—ฎ๐—บ๐—ฒ = **ECHO**\n\nCommand:\n\n `{hl}addecho <reply to a User>`"
if event.sender_id in SUDO_USERS:
if event.reply_to_msg_id is not None:
reply_msg = await event.get_reply_message()
Expand Down Expand Up @@ -65,7 +65,7 @@ async def echo(event):
@Riz9.on(events.NewMessage(incoming=True, pattern=r"\%srmecho(?: |$)(.*)" % hl))
@Riz10.on(events.NewMessage(incoming=True, pattern=r"\%srmecho(?: |$)(.*)" % hl))
async def echo(event):
usage = "๐— ๐—ผ๐—ฑ๐˜‚๐—น๐—ฒ ๐—ก๐—ฎ๐—บ๐—ฒ = **ECHO**\n\nCommand:\n\n `{hl}rmecho <reply to a User>`"
usage = f"๐— ๐—ผ๐—ฑ๐˜‚๐—น๐—ฒ ๐—ก๐—ฎ๐—บ๐—ฒ = **ECHO**\n\nCommand:\n\n `{hl}rmecho <reply to a User>`"
if event.sender_id in SUDO_USERS or event.sender_id in DEV:
if event.reply_to_msg_id is not None:
reply_msg = await event.get_reply_message()
Expand Down

0 comments on commit 6b89df5

Please sign in to comment.