Skip to content

Commit

Permalink
starting rbm edge case
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvris committed May 2, 2024
1 parent b881df0 commit 01963b8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions worlds/mm2/Rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,9 @@ def set_rules(world: "MM2World") -> None:
world.weapon_damage[weapons_to_id[p_weapon]][bosses[p_boss]] \
= world.options.plando_weakness[p_boss][p_weapon]

if world.weapon_damage[0][world.options.starting_robot_master.value] < 1:
world.weapon_damage[0][world.options.starting_robot_master.value] = 1

# weakness validation, it is better to confirm a completable seed than respect plando
boss_health = {boss: 0x1C if boss != 12 else 0x1C * 2 for boss in [*list(range(8)), 12]}

Expand Down

0 comments on commit 01963b8

Please sign in to comment.