mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Bugfix
This commit is contained in:
parent
9024cf7a38
commit
7572e3c5fc
1 changed files with 3 additions and 5 deletions
|
@ -93,9 +93,9 @@ def getSteamStatus(steamid):
|
|||
return r
|
||||
|
||||
#Caricamento delle API Keys
|
||||
token = readFile(telegramapi.txt)
|
||||
steamtoken = readFile(steamapi.txt)
|
||||
osutoken = readFile(osuapi.txt)
|
||||
token = readFile('telegramapi.txt')
|
||||
steamtoken = readFile('steamapi.txt')
|
||||
osutoken = readFile('osuapi.txt')
|
||||
|
||||
#Il loop del bot
|
||||
while(True):
|
||||
|
@ -116,8 +116,6 @@ while(True):
|
|||
if(msg['text'] == "/steam"):
|
||||
sendMessage(unichr(9888) + " Non hai specificato uno SteamID o un username!", msg['chat']['id'], msg['from']['id'])
|
||||
else:
|
||||
#Elenco degli steamid e degli username di telegram.
|
||||
global steamids
|
||||
#Controlla se la selezione è un username di telegram.
|
||||
if(msg['text'][7:] in steamids ):
|
||||
selezione = steamids[msg['text'][7:]]
|
||||
|
|
Loading…
Reference in a new issue