mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54: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
7
bot.py
7
bot.py
|
@ -519,14 +519,17 @@ def match():
|
||||||
tobematched.append(royalgames[name.lower()]["steam"])
|
tobematched.append(royalgames[name.lower()]["steam"])
|
||||||
if len(tobematched) > 1:
|
if len(tobematched) > 1:
|
||||||
m = list(steammatch.compare(tobematched))
|
m = list(steammatch.compare(tobematched))
|
||||||
|
if len(m) > 0:
|
||||||
# Prepara il messaggio
|
# Prepara il messaggio
|
||||||
tosend = str()
|
tosend = "*Giochi in comune tra questi utenti:*\n"
|
||||||
for game in m:
|
for game in m:
|
||||||
tosend += "- {game}\n".format(game=game)
|
tosend += "- {game}\n".format(game=game)
|
||||||
# Manda il messaggio
|
# Manda il messaggio
|
||||||
telegram.sendmessage(tosend, sentin, source)
|
telegram.sendmessage(tosend, sentin, source)
|
||||||
else:
|
else:
|
||||||
telegram.sendmessage(chr(9888) + "Non sono stati specificati abbastanza utenti per eseguire l'intersezione.",
|
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'azione.",
|
||||||
sentin, source)
|
sentin, source)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue