Skip to content

Commit

Permalink
fix: backwards compatibility with old beemizer settings
Browse files Browse the repository at this point in the history
  • Loading branch information
aerinon committed Dec 20, 2024
1 parent 804e693 commit 46e5268
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Main.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def main(args, seed=None, fish=None):
world.enemy_health = args.enemy_health.copy()
world.enemy_damage = args.enemy_damage.copy()
world.any_enemy_logic = args.any_enemy_logic.copy()
world.beemizer = args.beemizer.copy()
world.beemizer = {player: str(args.beemizer[player]) for player in range(1, world.players + 1)}
world.intensity = {player: random.randint(1, 3) if args.intensity[player] == 'random' else int(args.intensity[player]) for player in range(1, world.players + 1)}
world.door_type_mode = args.door_type_mode.copy()
world.trap_door_mode = args.trap_door_mode.copy()
Expand Down
24 changes: 24 additions & 0 deletions docs/avianart/pots_n_bones.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
meta:
bps: on
user_notes: An attempt to replicate the Avianart Pots and Bones settings
settings:
1:
goal: triforcehunt
mode: standard
swords: assured
hints: on
shuffle: crossed
keysanity: on

pottery: lottery
dropshuffle: underworld

triforce_goal: 216
triforce_pool: 469

beemizer: 0
start_inventory:
1:
- Pegasus Boots
- Lamp
- Red Boomerang

0 comments on commit 46e5268

Please sign in to comment.