mirror of
https://github.com/RYGhub/royal-mifia.git
synced 2024-11-22 05:44:19 +00:00
Aggiunto disastro al config
This commit is contained in:
parent
12d55302ac
commit
8023dd6761
2 changed files with 9 additions and 0 deletions
8
main.py
8
main.py
|
@ -722,6 +722,14 @@ def config(bot, update):
|
|||
game.configstep += 1
|
||||
game.message(bot, s.config_list[game.configstep])
|
||||
elif game.configstep == 5:
|
||||
try:
|
||||
game.roleconfig["Disastro"] = 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 == 6:
|
||||
if cmd[1].lower() == 'testa':
|
||||
game.votingmifia = False
|
||||
game.endconfig(bot)
|
||||
|
|
|
@ -273,5 +273,6 @@ config_list = ["Quanti Mifiosi devono essere nella partita?",
|
|||
"Quanti Angeli devono essere nella partita?",
|
||||
"Quanti Terroristi devono essere nella partita?",
|
||||
"Quanti Derek devono essere nella partita?",
|
||||
"Quanti Investigatori Disastrosi 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?"]
|
||||
|
|
Loading…
Reference in a new issue