1
Fork 0
mirror of https://github.com/RYGhub/royal-mifia.git synced 2024-11-25 15:14:18 +00:00

fancy alerts

This commit is contained in:
Steffo 2017-07-07 23:55:07 +03:00
parent a08804a497
commit c367b5eddd

View file

@ -966,6 +966,7 @@ def inlinekeyboard(bot, update):
if game.phase is 'Preset': if game.phase is 'Preset':
if update.callback_query.from_user.id == game.admin.tid: if update.callback_query.from_user.id == game.admin.tid:
game.loadpreset(bot, update.callback_query.data) game.loadpreset(bot, update.callback_query.data)
bot.answerCallbackQuery(callback_query_id=update.callback_query.id, text=s.preset_selected.format(selected=update.callback_query.data), show_alert=True)
elif game.phase is 'Voting': elif game.phase is 'Voting':
# Trova il giocatore # Trova il giocatore
player = game.findplayerbyid(update.callback_query.from_user.id) player = game.findplayerbyid(update.callback_query.from_user.id)
@ -974,7 +975,7 @@ def inlinekeyboard(bot, update):
target = game.findplayerbyusername(update.callback_query.data) target = game.findplayerbyusername(update.callback_query.data)
player.votingfor = target player.votingfor = target
game.message(bot, s.vote.format(voting=player.tusername, voted=target.tusername)) game.message(bot, s.vote.format(voting=player.tusername, voted=target.tusername))
bot.answerCallbackQuery(callback_query_id=update.callback_query.id, text=s.vote_fp.format(voted=target.tusername)) bot.answerCallbackQuery(callback_query_id=update.callback_query.id, text=s.vote_fp.format(voted=target.tusername), show_alert=True)
updater.dispatcher.add_handler(CommandHandler('ping', ping)) updater.dispatcher.add_handler(CommandHandler('ping', ping))