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:
parent
b3737d33f6
commit
5518dd5277
1 changed files with 8 additions and 4 deletions
8
main.py
8
main.py
|
@ -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:
|
||||
|
@ -333,7 +335,9 @@ class Game:
|
|||
self.updatemifiavotes()
|
||||
for player in self.players:
|
||||
if player.mifiavotes > currenttop:
|
||||
mostvoted = [player]
|
||||
mostvoted = list()
|
||||
mostvoted.append(player)
|
||||
currenttop = player.mifiavotes
|
||||
elif player.votes == currenttop:
|
||||
mostvoted.append(player)
|
||||
if currenttop > 0:
|
||||
|
|
Loading…
Reference in a new issue