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

Ora /lolfree funziona

This commit is contained in:
Steffo 2016-09-21 16:49:16 +02:00
parent 431142a20e
commit f942817f6e

8
bot.py
View file

@ -431,7 +431,6 @@ def balurage():
def lolfree():
global lolfreestring
# Visualizza i campioni gratuiti di LoL di questa settimana
print("@" + username + ": /lolfree")
# Informa Telegram che il messaggio è stato ricevuto.
@ -439,11 +438,12 @@ def lolfree():
ora = time.gmtime()
cmd = text.split(" ", 1)
if len(cmd) > 1:
refresh = cmd[1].startswith("refresh")
refresh_requested = cmd[1].startswith("refresh")
else:
refresh = False
refresh_requested = False
# Controlla se i dati sono già stati scaricati.
if lolfreestring is None or refresh:
global lolfreestring
if lolfreestring == "" or refresh_requested:
# Crea un nuovo set di dati.
print("Aggiornamento champ gratuiti di League of Legends...")
lolfreestring = "Champion gratuiti del `" + str(ora.tm_mday) + "/" + str(ora.tm_mon) + "/" + \