1
Fork 0
mirror of https://github.com/RYGhub/royal-mifia.git synced 2024-11-22 05:44:19 +00:00
This commit is contained in:
Steffo 2016-12-11 17:18:36 +01:00
parent e331b25e7d
commit 169a0c0360
2 changed files with 11 additions and 2 deletions

12
main.py
View file

@ -871,6 +871,14 @@ def config(bot, update):
game.configstep += 1
game.message(bot, s.config_list[game.configstep])
elif game.configstep == 6:
try:
game.roleconfig["Mamma"] = int(cmd[1])
except ValueError:
game.message(bot, s.error_invalid_config)
else:
game.configstep += 1
game.message(bot, s.config_list[game.configstep])
elif game.configstep == 7:
if cmd[1].lower() == 'testa':
game.votingmifia = False
game.configstep += 1
@ -881,7 +889,7 @@ def config(bot, update):
game.message(bot, s.config_list[game.configstep])
else:
game.message(bot, s.error_invalid_config)
elif game.configstep == 7:
elif game.configstep == 8:
if cmd[1].lower() == 'perfette':
game.missingmifia = False
game.endconfig(bot)
@ -891,7 +899,7 @@ def config(bot, update):
game.message(bot, s.config_list[game.configstep])
else:
game.message(bot, s.error_invalid_config)
elif game.configstep == 8:
elif game.configstep == 9:
try:
miss = int(cmd[1])
except ValueError:

View file

@ -297,6 +297,7 @@ config_list = ["Quanti *Mifiosi* devono essere nella partita?",
"Quanti *Terroristi* devono essere nella partita?",
"Quanti *Derek* devono essere nella partita?",
"Quanti *Disastri* devono essere nella partita?",
"Quante *Mamme* devono essere nella partita?",
"I mifiosi possono uccidere una persona a `testa` al giorno "
"o votano e decidono un'`unica` persona da uccidere per tutta la squadra?",
"La mifia può `mancare` le uccisioni o i loro attacchi sono `perfetti`?",