Skip to content

Commit

Permalink
Fixed and added additional puzzles to statistics menu
Browse files Browse the repository at this point in the history
  • Loading branch information
Krapht committed May 30, 2024
1 parent ccfb8bb commit 00944a2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions InsightLogParser.Client/Menu/MenuHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,12 @@ private void SignalMenuClosed()
yield return ('6', "Hidden Archways");
yield return ('7', "Hidden Pentads");
yield return ('8', "Wandering Echoes");
yield return ('8', "Glide Rings");
yield return ('9', "Glide Rings");
yield return ('a', "Flow Orbs");
yield return ('a', "Shy Auras");
yield return ('b', "Shy Auras");
yield return ('c', "Rolling Blocks");
yield return ('d', "Sentinel Stones");
yield return ('e', "Crystal Labyrinths");
}
}

Expand Down Expand Up @@ -205,6 +208,9 @@ public PuzzleType PickWorldPuzzleType()
case '9': return PuzzleType.GlideRings;
case 'a': return PuzzleType.FlowOrbs;
case 'b': return PuzzleType.ShyAura;
case 'c': return PuzzleType.RollingBlock;
case 'd': return PuzzleType.SentinelStones;
case 'e': return PuzzleType.CrystalLabyrinth;
default: return PuzzleType.Unknown;
}
}
Expand Down

0 comments on commit 00944a2

Please sign in to comment.