Logic bug for GT Refill room not requiring boots

This commit is contained in:
aerinon
2022-11-29 13:22:27 -07:00
parent 742d7db650
commit 6934aedfd8
3 changed files with 5 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ from Utils import output_path, parse_player_names
from source.item.FillUtil import create_item_pool_config, massage_item_pool, district_item_pool_config
from source.tools.BPS import create_bps_from_data
__version__ = '1.1.1-dev'
__version__ = '1.1.2-dev'
from source.classes.BabelFish import BabelFish

View File

@@ -181,6 +181,8 @@ Same as above but both small keys and bigs keys of the dungeon are not allowed o
# Bug Fixes and Notes
* 1.1.2
* Fixed a logic bug with GT Refill room not requiring boots to access the pots in there.
* 1.1.1
* Fixed a logic bug with Bumper Cave where the pots were accessible without Cape or Hookshot from the top entrance
* Fixed a pot coloring issue with hammer peg cave

View File

@@ -384,7 +384,8 @@ def global_rules(world, player):
set_rule(world.get_entrance('GT Mimics 1 ES', player), lambda state: state.can_shoot_arrows(player))
set_rule(world.get_entrance('GT Mimics 2 WS', player), lambda state: state.can_shoot_arrows(player))
set_rule(world.get_entrance('GT Mimics 2 NE', player), lambda state: state.can_shoot_arrows(player))
# consider access to refill room
# consider access to refill room - interior doors would need a change
set_rule(world.get_entrance('GT Cannonball Bridge SE', player), lambda state: state.has_Boots(player))
set_rule(world.get_entrance('GT Gauntlet 1 WN', player), lambda state: state.can_kill_most_things(player))
set_rule(world.get_entrance('GT Gauntlet 2 EN', player), lambda state: state.can_kill_most_things(player))
set_rule(world.get_entrance('GT Gauntlet 2 SW', player), lambda state: state.can_kill_most_things(player))