1
Fork 0
mirror of https://github.com/RYGhub/royal-mifia.git synced 2024-11-22 13:54:19 +00:00

ep5 i bug colpiscono ancora

This commit is contained in:
Steffo 2016-05-26 10:10:07 +00:00
parent c910b09798
commit f194bc498c

View file

@ -349,7 +349,7 @@ def findgamebyname(name) -> Game:
"""Trova una partita con un certo nome.""" """Trova una partita con un certo nome."""
for game in inprogress: for game in inprogress:
if game.name.lower() == name.lower(): if game.name.lower() == name.lower():
return name return game
# Comandi a cui risponde il bot # Comandi a cui risponde il bot
def ping(bot, update): def ping(bot, update):
@ -489,7 +489,7 @@ def power(bot, update):
if game is None: if game is None:
game = findgamebyid(int(cmd[1])) game = findgamebyid(int(cmd[1]))
if game is not None: if game is not None:
player = game.findplayerbyid(update.message.from_user['id']) player = game.findplayerbyid(int(update.message.from_user['id'])
if player is not None: if player is not None:
if player.alive: if player.alive:
player.role.power(bot, game, player, cmd[2]) player.role.power(bot, game, player, cmd[2])