JD-pyprocgame
JD-pyprocgame copied to clipboard
List of remaining awards in Missile_Award_mode not kept independently for each player
In Missile_Award_Mode, the variable swards_remaining is a typo self.swards_remaining = self.awards Also, the value assigned should be a copy of the awards to keep every player independent. This is the correct statement: self.awards_remaining = self.awards[:] This bug will manifest itself only for player 2 to 4.