mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 21:44:21 +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
|
return r
|
||||||
|
|
||||||
#Caricamento delle API Keys
|
#Caricamento delle API Keys
|
||||||
token = readFile(telegramapi.txt)
|
token = readFile('telegramapi.txt')
|
||||||
steamtoken = readFile(steamapi.txt)
|
steamtoken = readFile('steamapi.txt')
|
||||||
osutoken = readFile(osuapi.txt)
|
osutoken = readFile('osuapi.txt')
|
||||||
|
|
||||||
#Il loop del bot
|
#Il loop del bot
|
||||||
while(True):
|
while(True):
|
||||||
|
@ -116,8 +116,6 @@ while(True):
|
||||||
if(msg['text'] == "/steam"):
|
if(msg['text'] == "/steam"):
|
||||||
sendMessage(unichr(9888) + " Non hai specificato uno SteamID o un username!", msg['chat']['id'], msg['from']['id'])
|
sendMessage(unichr(9888) + " Non hai specificato uno SteamID o un username!", msg['chat']['id'], msg['from']['id'])
|
||||||
else:
|
else:
|
||||||
#Elenco degli steamid e degli username di telegram.
|
|
||||||
global steamids
|
|
||||||
#Controlla se la selezione è un username di telegram.
|
#Controlla se la selezione è un username di telegram.
|
||||||
if(msg['text'][7:] in steamids ):
|
if(msg['text'][7:] in steamids ):
|
||||||
selezione = steamids[msg['text'][7:]]
|
selezione = steamids[msg['text'][7:]]
|
||||||
|
|
Loading…
Reference in a new issue