mirror of
https://github.com/RYGhub/royal-mifia.git
synced 2024-11-29 09:04:18 +00:00
Tolto il preset di debug
This commit is contained in:
parent
35213f28c0
commit
7291eb7ff1
1 changed files with 13 additions and 33 deletions
46
main.py
46
main.py
|
@ -275,39 +275,19 @@ class Game:
|
||||||
def startpreset(self, bot):
|
def startpreset(self, bot):
|
||||||
"""Inizio della fase di preset"""
|
"""Inizio della fase di preset"""
|
||||||
self.phase = 'Preset'
|
self.phase = 'Preset'
|
||||||
if __debug__:
|
# Crea la tastiera
|
||||||
# Preset di debug
|
kbmarkup = InlineKeyboardMarkup([
|
||||||
self.roleconfig = {
|
[
|
||||||
"Mifioso": 0,
|
InlineKeyboardButton(s.preset_simple, callback_data="simple"),
|
||||||
"Investigatore": 0,
|
InlineKeyboardButton(s.preset_classic, callback_data="classic"),
|
||||||
"Corrotto": 0,
|
InlineKeyboardButton(s.preset_advanced, callback_data="advanced")
|
||||||
"Angelo": 0,
|
],
|
||||||
"Terrorista": 0,
|
[
|
||||||
"Derek": 0,
|
InlineKeyboardButton(s.preset_custom, callback_data="custom")
|
||||||
"Disastro": 0,
|
]
|
||||||
"Mamma": 0,
|
])
|
||||||
"Stagista": 0,
|
# Manda la tastiera
|
||||||
"SignoreDelCaos": 0,
|
bot.sendMessage(self.groupid, s.preset_choose, parse_mode=ParseMode.MARKDOWN, reply_markup=kbmarkup)
|
||||||
"Servitore": 0
|
|
||||||
}
|
|
||||||
self.votingmifia = True
|
|
||||||
self.missingmifia = False
|
|
||||||
self.endconfig(bot)
|
|
||||||
self.message(bot, "Utilizzando il preset di debug (tutti royal, cambia ruolo con `/debugchangerole nomeutente ruolo`.")
|
|
||||||
else:
|
|
||||||
# Crea la tastiera
|
|
||||||
kbmarkup = InlineKeyboardMarkup([
|
|
||||||
[
|
|
||||||
InlineKeyboardButton(s.preset_simple, callback_data="simple"),
|
|
||||||
InlineKeyboardButton(s.preset_classic, callback_data="classic"),
|
|
||||||
InlineKeyboardButton(s.preset_advanced, callback_data="advanced")
|
|
||||||
],
|
|
||||||
[
|
|
||||||
InlineKeyboardButton(s.preset_custom, callback_data="custom")
|
|
||||||
]
|
|
||||||
])
|
|
||||||
# Manda la tastiera
|
|
||||||
bot.sendMessage(self.groupid, s.preset_choose, parse_mode=ParseMode.MARKDOWN, reply_markup=kbmarkup)
|
|
||||||
|
|
||||||
def loadpreset(self, bot, preset):
|
def loadpreset(self, bot, preset):
|
||||||
"""Fine della fase di preset: carica il preset selezionato o passa a config"""
|
"""Fine della fase di preset: carica il preset selezionato o passa a config"""
|
||||||
|
|
Loading…
Reference in a new issue