This commit is contained in:
Thomas Forgione 2019-04-04 11:44:16 +02:00
parent 3ff55f281e
commit ed3c86a282
No known key found for this signature in database
GPG Key ID: 203DAEA747F48F41
1 changed files with 4 additions and 4 deletions

View File

@ -110,9 +110,9 @@ class Game:
except:
# An error occured during the evaluation of pp.player strategy
if id == 0:
self.winner = 1
self.winner = 2
elif id == 1:
self.winner = 0
self.winner = 1
return False
@ -135,9 +135,9 @@ class Game:
except:
# An error occured during the evaluation of pp.player strategy
if id == 0:
self.winner = 1
self.winner = 2
elif id == 1:
self.winner = 0
self.winner = 1
return False
for (id, pp) in enumerate(self.pps):