Fix trock entrances when intensity < 3
Fix outputpath setting in settings.json
This commit is contained in:
aerinon
2020-11-16 13:20:39 -07:00
5 changed files with 18 additions and 9 deletions

View File

@@ -24,7 +24,7 @@ from Fill import distribute_items_cutoff, distribute_items_staleness, distribute
from ItemList import generate_itempool, difficulties, fill_prizes, fill_specific_items
from Utils import output_path, parse_player_names
__version__ = '0.2.0.11u'
__version__ = '0.2.0.12u'
class EnemizerError(RuntimeError):
pass
@@ -209,6 +209,9 @@ def main(args, seed=None, fish=None):
or world.enemy_health[player] != 'default' or world.enemy_damage[player] != 'default'
or args.shufflepots[player] or sprite_random_on_hit)
if use_enemizer:
base_patch = LocalRom(args.rom) # update base2current.json
rom = JsonRom() if args.jsonout or use_enemizer else LocalRom(args.rom)
if use_enemizer and (args.enemizercli or not args.jsonout):