bugfix
This commit is contained in:
@@ -15,11 +15,11 @@ class TunnelEvent(Event):
|
||||
|
||||
def scoreBonusTunnelPoints(self):
|
||||
playerState = self.playerState()
|
||||
if playerState().tunnelLit == 2:
|
||||
playerState().addPoints(10000)
|
||||
elif playerState().tunnelLit == 3:
|
||||
playerState().addPoints(20000)
|
||||
elif playerState().tunnelLit == 4:
|
||||
playerState().addPoints(40000)
|
||||
elif playerState().tunnelLit == 5:
|
||||
playerState().addPoints(190000)
|
||||
if playerState.tunnelLit == 2:
|
||||
playerState.addPoints(10000)
|
||||
elif playerState.tunnelLit == 3:
|
||||
playerState.addPoints(20000)
|
||||
elif playerState.tunnelLit == 4:
|
||||
playerState.addPoints(40000)
|
||||
elif playerState.tunnelLit == 5:
|
||||
playerState.addPoints(190000)
|
||||
|
||||
Reference in New Issue
Block a user