mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Sistemati casi improbabili in /match
This commit is contained in:
parent
fa5bc2ac49
commit
0694746aa2
1 changed files with 10 additions and 7 deletions
17
bot.py
17
bot.py
|
@ -519,14 +519,17 @@ def match():
|
|||
tobematched.append(royalgames[name.lower()]["steam"])
|
||||
if len(tobematched) > 1:
|
||||
m = list(steammatch.compare(tobematched))
|
||||
# Prepara il messaggio
|
||||
tosend = str()
|
||||
for game in m:
|
||||
tosend += "- {game}\n".format(game=game)
|
||||
# Manda il messaggio
|
||||
telegram.sendmessage(tosend, sentin, source)
|
||||
if len(m) > 0:
|
||||
# Prepara il messaggio
|
||||
tosend = "*Giochi in comune tra questi utenti:*\n"
|
||||
for game in m:
|
||||
tosend += "- {game}\n".format(game=game)
|
||||
# Manda il messaggio
|
||||
telegram.sendmessage(tosend, sentin, source)
|
||||
else:
|
||||
telegram.sendmessage("*Giochi in comune tra questi utenti:*\n_nessuno_", sentin, source)
|
||||
else:
|
||||
telegram.sendmessage(chr(9888) + "Non sono stati specificati abbastanza utenti per eseguire l'intersezione.",
|
||||
telegram.sendmessage(chr(9888) + "Non sono stati specificati abbastanza utenti per eseguire l'azione.",
|
||||
sentin, source)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue