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

Aggiunto un comando /endjoin

This commit is contained in:
Steffo 2016-04-19 17:48:49 +02:00
parent f4eb5e5e6c
commit a097f35334

View file

@ -345,7 +345,6 @@ while True:
elif t['text'].startswith("/endday"):
if t['from']['id'] == g.adminid:
g.endday()
g.message(g.status())
else:
g.message("\U000FEB23 Non sei il creatore della partita; non puoi finire il giorno.")
elif t['text'].startswith("/vote"):
@ -363,3 +362,6 @@ while True:
g.message("\U000FEB23 La persona selezionata non esiste.")
else:
g.message("\U000FEB23 La partita non è ancora iniziata; non puoi votare.")
elif t['text'].startswith("/endjoin"):
g.endjoin()
g.message("La fase di join è terminata.")