Mods
This commit is contained in:
parent
c38e571ceb
commit
02d12bc506
21
main.py
21
main.py
|
@ -226,15 +226,15 @@ async def on_message(ws, message):
|
||||||
except BaseException:
|
except BaseException:
|
||||||
return
|
return
|
||||||
|
|
||||||
dta = data.get("data")
|
|
||||||
|
|
||||||
if not dta:
|
|
||||||
return
|
|
||||||
|
|
||||||
if dta.get("name") == username:
|
|
||||||
return
|
|
||||||
|
|
||||||
if data["type"] == "files":
|
if data["type"] == "files":
|
||||||
|
dta = data.get("data")
|
||||||
|
|
||||||
|
if not dta:
|
||||||
|
return
|
||||||
|
|
||||||
|
if dta["name"] == username:
|
||||||
|
return
|
||||||
|
|
||||||
files = dta.get("files")
|
files = dta.get("files")
|
||||||
|
|
||||||
if not files:
|
if not files:
|
||||||
|
@ -253,7 +253,10 @@ async def on_message(ws, message):
|
||||||
if blocked():
|
if blocked():
|
||||||
return
|
return
|
||||||
|
|
||||||
text = dta["text"].strip()
|
if data["data"]["name"] == username:
|
||||||
|
return
|
||||||
|
|
||||||
|
text = data["data"]["text"].strip()
|
||||||
|
|
||||||
if not text.startswith(prefix):
|
if not text.startswith(prefix):
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue