Skip to content

Fix Fire Temple Boss Door Logic #3774

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conversation

inspectredc
Copy link
Contributor

@inspectredc inspectredc commented Dec 30, 2023

Only adult can reach the boss door once this block is lowered. This adds a check for that

Build Artifacts

Copy link
Contributor

@Archez Archez left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good! Offered a simplification below, but non-blocking.

Copy link
Contributor

@briaguya-ai briaguya-ai left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

took a bit to understand the diff (i was confused about the hovers part) but i think i get it now

before:

Entrance(FIRE_TEMPLE_BOSS_ENTRYWAY, {[]{
    return BossKeyFireTemple && (
            (IsAdult && LogicFireBossDoorJump) ||
            CanUse(HOVER_BOOTS) ||
            Here(FIRE_TEMPLE_FIRE_MAZE_UPPER, []{return CanUse(MEGATON_HAMMER);})
    );
}}),

after:

Entrance(FIRE_TEMPLE_BOSS_ENTRYWAY, {[]{
    return BossKeyFireTemple && (
        (IsAdult && (
            LogicFireBossDoorJump ||
            Here(FIRE_TEMPLE_FIRE_MAZE_UPPER, []{return CanUse(MEGATON_HAMMER);})
        )) ||
        CanUse(HOVER_BOOTS));
}}),

:shipit:

@Archez Archez merged commit 321c258 into HarbourMasters:develop-macready Jan 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants