1
Fork 0
mirror of https://github.com/RYGhub/royal-mifia.git synced 2024-11-22 05:44:19 +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()
for player in self.players:
if player.votes > currenttop:
mostvoted = [player]
mostvoted = list()
mostvoted.append(player)
currenttop = player.votes
elif player.votes == currenttop:
mostvoted.append(player)
if currenttop > 0:
@ -332,9 +334,11 @@ class Game:
currenttop = 0
self.updatemifiavotes()
for player in self.players:
if player.mifiavotes > currenttop:
mostvoted = [player]
elif player.votes == currenttop:
if player.mifiavotes > currenttop:
mostvoted = list()
mostvoted.append(player)
currenttop = player.mifiavotes
elif player.votes == currenttop:
mostvoted.append(player)
if currenttop > 0:
return mostvoted