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

che boiata

This commit is contained in:
Steffo 2016-05-27 11:51:57 +02:00
parent b3737d33f6
commit 5518dd5277

12
main.py
View file

@ -318,7 +318,9 @@ class Game:
self.updatevotes() self.updatevotes()
for player in self.players: for player in self.players:
if player.votes > currenttop: if player.votes > currenttop:
mostvoted = [player] mostvoted = list()
mostvoted.append(player)
currenttop = player.votes
elif player.votes == currenttop: elif player.votes == currenttop:
mostvoted.append(player) mostvoted.append(player)
if currenttop > 0: if currenttop > 0:
@ -332,9 +334,11 @@ class Game:
currenttop = 0 currenttop = 0
self.updatemifiavotes() self.updatemifiavotes()
for player in self.players: for player in self.players:
if player.mifiavotes > currenttop: if player.mifiavotes > currenttop:
mostvoted = [player] mostvoted = list()
elif player.votes == currenttop: mostvoted.append(player)
currenttop = player.mifiavotes
elif player.votes == currenttop:
mostvoted.append(player) mostvoted.append(player)
if currenttop > 0: if currenttop > 0:
return mostvoted return mostvoted