1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Revert "/ty e basta"

This reverts commit fdb28e0363.
This commit is contained in:
Steffo 2015-09-21 16:33:05 +02:00
parent 3d61affe20
commit 49f7915730

View file

@ -272,15 +272,14 @@ while(True):
#Ringrazia una persona!
elif(msg['text'].startswith("/ty")):
if(msg['text'] == "/ty"):
ty = readFile("ty/" + selezione + ".tyr")
sendMessage(chr(9888) + " Queste persone ti hanno mandato TY da approvare: " + , msg['chat']['id'], msg['from']['id'])
sendMessage(chr(9888) + " Non hai specificato un username di Telegram!", msg['chat']['id'], msg['from']['id'])
else:
#Controlla se la selezione è un username di telegram.
if(msg['text'][4:].lower() in tylist):
selezione = tylist[msg['text'][4:].lower()]
setTyping('typing', msg['chat']['id'])
ty = readFile("ty/" + selezione + ".tyr")
writeFile("ty/" + selezione + ".tyr", ty + ", @" + msg['from']['username'])
ty = readFile("ty/" + selezione + ".tyr"
writeFile("ty/" + selezione + ".tyr", ty + ", @" + msg['from']['username']
sendMessage(chr(9989) + " Hai proposto un TY per " + selezione + "!", msg['chat']['id'], msg['from']['id'])
else:
sendMessage(chr(9888) + " Username inesistente!", msg['chat']['id'], msg['from']['id'])