Skip to content

Commit

Permalink
Exclude Coastal Village locations (#776)
Browse files Browse the repository at this point in the history
Resolves #774.
  • Loading branch information
lahm86 authored Oct 3, 2024
1 parent c771ab9 commit 8ce3d35
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## [Unreleased](https://github.com/LostArtefacts/TR-Rando/compare/V1.9.3...master) - xxxx-xx-xx
- fixed unreachable item locations in Coastal Village (#774)

## [V1.9.3](https://github.com/LostArtefacts/TR-Rando/compare/V1.9.2...V1.9.3) - 2024-09-29
- added an option to disable underwater corner secrets (#763)
Expand Down
8 changes: 4 additions & 4 deletions LocationExport/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -357,25 +357,25 @@ private static void Usage()

Console.WriteLine("Examples");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("\tLocationExport TR3");
Console.WriteLine("\tLocationExport export TR3");
Console.ResetColor();
Console.WriteLine("\t\tGenerate all locations for TR3 to TR3-Locations.json");
Console.WriteLine();

Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("\tLocationExport RAPIDS.TR2 rapids.json");
Console.WriteLine("\tLocationExport export RAPIDS.TR2 rapids.json");
Console.ResetColor();
Console.WriteLine("\t\tGenerate all locations for Madubu Gorge to rapids.json");
Console.WriteLine();

Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("\tLocationExport TR3 old_locations.json new_locations.json");
Console.WriteLine("\tLocationExport export TR3 old_locations.json new_locations.json");
Console.ResetColor();
Console.WriteLine("\t\tGenerate all locations for TR3 and output only the differences to new_locations.json (excludes old_loctions.json)");
Console.WriteLine();

Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("\tLocationExport adjust");
Console.WriteLine("\tLocationExport adjust TR1");
Console.ResetColor();
Console.WriteLine("\t\tIntended to adjust underwater corner secret locations. A diff output will be generated as diff.json");
Console.WriteLine();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1328,6 +1328,18 @@
"Z": 32412,
"Room": 2
},
{
"X": 10752,
"Y": -4352,
"Z": 32256,
"Room": 2
},
{
"X": 1536,
"Y": -4352,
"Z": 38400,
"Room": 2
},
{
"X": 14848,
"Y": -1408,
Expand Down

0 comments on commit 8ce3d35

Please sign in to comment.