mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
intstr
This commit is contained in:
parent
641cd2bbe7
commit
3df8340ba9
1 changed files with 2 additions and 2 deletions
|
@ -278,8 +278,8 @@ while(True):
|
|||
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 + 1)
|
||||
ty = int(readFile("ty/" + selezione + ".tyr"))
|
||||
writeFile("ty/" + selezione + ".tyr", str(ty + 1))
|
||||
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'])
|
Loading…
Reference in a new issue