# HG changeset patch # User Emmanuel Gil Peyrot # Date 1341082237 -7200 # Node ID d369a369204a1f5059010cdc99ab0cb08c0657a3 # Parent bdcf2077e368acefe2b1aad23d4d1879ff030e8a Prevent story mode in easy to go beyond stage 5. diff --git a/eosd b/eosd --- a/eosd +++ b/eosd @@ -108,7 +108,7 @@ def main(path, data, stage_num, rank, ch break except NextStage: game.music.pause() - if not story or stage_num == (7 if boss_rush else 6): + if not story or stage_num == (7 if boss_rush else 6 if rank > 0 else 5): break stage_num += 1 states = [player.state.copy() for player in game.players] # if player.state.lives >= 0]