mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-07 15:34:52 +00:00
Add Filters.me
Useful to filter messages coming from the current running user.
Does the same thing as Filters.user("me")
This commit is contained in:
parent
d69a93d253
commit
36f987e979
1 changed files with 3 additions and 0 deletions
|
|
@ -61,6 +61,9 @@ class Filters:
|
|||
|
||||
create = create
|
||||
|
||||
me = create("Me", lambda _, m: bool(m.from_user and m.from_user.is_self))
|
||||
"""Filter messages coming from you yourself"""
|
||||
|
||||
bot = create("Bot", lambda _, m: bool(m.from_user and m.from_user.is_bot))
|
||||
"""Filter messages coming from bots"""
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue