Skip to content

Commit

Permalink
Update lower norfair east exit logic for keysanity
Browse files Browse the repository at this point in the history
  • Loading branch information
MattEqualsCoder committed Jan 1, 2025
1 parent 64d85f7 commit cc1124b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ public bool CanBeatBoss(Progression items)
private bool CanExit(Progression items)
{
return items.CardNorfairL2 /*Bubble Mountain*/ ||
(items.Gravity && items.Wave /* Volcano Room and Blue Gate */ && (items.Grapple || items.SpaceJump /*Spikey Acid Snakes and Croc Escape*/));
items is { Gravity: true, SpaceJump: true } /* Path back to Mire*/ ||
(items is { Gravity: true, Wave: true } /* Volcano Room and Blue Gate */ && (items.Grapple || items.SpaceJump /*Spikey Acid Snakes and Croc Escape*/));
}

public class SpringBallMazeRoom : Room
Expand Down
2 changes: 1 addition & 1 deletion src/TrackerCouncil.Smz3.UI/TrackerCouncil.Smz3.UI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<Version>9.9.0</Version>
<Version>9.9.0-rc.3</Version>
<AssemblyName>SMZ3CasRandomizer</AssemblyName>
<ApplicationIcon>Assets\smz3.ico</ApplicationIcon>
<RootNamespace>$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
Expand Down

0 comments on commit cc1124b

Please sign in to comment.