Skip to content

Commit

Permalink
Fixed an errant filename flag
Browse files Browse the repository at this point in the history
  • Loading branch information
mcgrew committed Jun 6, 2016
1 parent 1ac4396 commit a6836cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dwrandomizer.py
Expand Up @@ -957,11 +957,11 @@ def randomize(args):

if args.very_fast_leveling:
print("Setting XP requirements for levels to 50% of normal...")
flags += "f"
flags += "F"
rom.lower_xp_reqs(True)
elif args.fast_leveling:
print("Setting XP requirements for levels to 75% of normal...")
flags += "F"
flags += "f"
rom.lower_xp_reqs()

if args.no_repel:
Expand Down

0 comments on commit a6836cf

Please sign in to comment.