mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
Ora /lolfree funziona
This commit is contained in:
parent
431142a20e
commit
f942817f6e
1 changed files with 4 additions and 4 deletions
8
bot.py
8
bot.py
|
@ -431,7 +431,6 @@ def balurage():
|
||||||
|
|
||||||
|
|
||||||
def lolfree():
|
def lolfree():
|
||||||
global lolfreestring
|
|
||||||
# Visualizza i campioni gratuiti di LoL di questa settimana
|
# Visualizza i campioni gratuiti di LoL di questa settimana
|
||||||
print("@" + username + ": /lolfree")
|
print("@" + username + ": /lolfree")
|
||||||
# Informa Telegram che il messaggio è stato ricevuto.
|
# Informa Telegram che il messaggio è stato ricevuto.
|
||||||
|
@ -439,11 +438,12 @@ def lolfree():
|
||||||
ora = time.gmtime()
|
ora = time.gmtime()
|
||||||
cmd = text.split(" ", 1)
|
cmd = text.split(" ", 1)
|
||||||
if len(cmd) > 1:
|
if len(cmd) > 1:
|
||||||
refresh = cmd[1].startswith("refresh")
|
refresh_requested = cmd[1].startswith("refresh")
|
||||||
else:
|
else:
|
||||||
refresh = False
|
refresh_requested = False
|
||||||
# Controlla se i dati sono già stati scaricati.
|
# 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.
|
# Crea un nuovo set di dati.
|
||||||
print("Aggiornamento champ gratuiti di League of Legends...")
|
print("Aggiornamento champ gratuiti di League of Legends...")
|
||||||
lolfreestring = "Champion gratuiti del `" + str(ora.tm_mday) + "/" + str(ora.tm_mon) + "/" + \
|
lolfreestring = "Champion gratuiti del `" + str(ora.tm_mday) + "/" + str(ora.tm_mon) + "/" + \
|
||||||
|
|
Loading…
Reference in a new issue