Skip to content

Commit

Permalink
Simplified zone randomization slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
mcgrew committed Dec 7, 2015
1 parent a8dbe3d commit 9cceea9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dwrandomizer.py
Expand Up @@ -313,7 +313,7 @@ def randomize_zones(zone_info):
# zone 16-18 - Charlock
for i in range(16, 19):
for j in range(5):
new_zones.append(random.randint(13+i, min(37,21+i)))
new_zones.append(random.randint(13+i, 37))

# zone 19 rimuldar tunnel
for j in range(5):
Expand Down

0 comments on commit 9cceea9

Please sign in to comment.