Skip to content

Commit

Permalink
Fix for Dragonlord random encounters. Oops.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcgrew committed Dec 7, 2015
1 parent 886e514 commit a3db33c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dwrandomizer.py
Expand Up @@ -311,7 +311,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, 21+i))
new_zones.append(random.randint(13+i, min(37,21+i)))

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

0 comments on commit a3db33c

Please sign in to comment.