mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 13:34:28 +00:00
???
This commit is contained in:
parent
1a01d1ad0c
commit
eba991f3c3
1 changed files with 6 additions and 6 deletions
12
bot.py
12
bot.py
|
@ -109,17 +109,17 @@ while True:
|
|||
if msg['edit']:
|
||||
if 'text' in msg['edit_data']:
|
||||
# Salvatelo in una stringa
|
||||
text = msg['text']
|
||||
text = msg['edit_data']['text']
|
||||
# Guarda l'ID della chat in cui è stato inviato
|
||||
sentin = msg['chat']['id']
|
||||
sentin = msg['edit_data']['chat']['id']
|
||||
# ID del messaggio ricevuto
|
||||
source = msg['message_id']
|
||||
if 'username' in msg['from']:
|
||||
source = msg['edit_data']['message_id']
|
||||
if 'username' in msg['edit_data']['from']:
|
||||
# Salva l'username se esiste
|
||||
username = msg['from']['username']
|
||||
username = msg['edit_data']['from']['username']
|
||||
else:
|
||||
# Altrimenti, salva l'userID
|
||||
username = str(msg['from']['id'])
|
||||
username = str(msg['edit_data']['from']['id'])
|
||||
# Se sei un membro della Royal Games
|
||||
if username.lower() in royalgames:
|
||||
# Riconosci il comando.
|
||||
|
|
Loading…
Reference in a new issue