Skip to content
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

Fix Cobra alias in TR3R #784

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
- added (experimental) support for Linux (#143)
- changed the number of secrets in TR3R Coastal Village to four to match the statistics (#775)
- fixed unreachable item locations in Coastal Village (#774)
- fixed the cobra not rendering properly in TR3R if used cross-level (#782)

## [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
1 change: 1 addition & 0 deletions TRDataControl/Data/Remastered/TR3RDataCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,5 +140,6 @@ public override TR3RAlias GetAlias(TR3Type key)

[TR3Type.DogLondon] = TR3RAlias.DOG_SEWER,
[TR3Type.CobraNevada] = TR3RAlias.COBRA_NEVADA,
[TR3Type.CobraIndia] = TR3RAlias.COBRA,
};
}
1 change: 1 addition & 0 deletions TRLevelControl/Model/TR3/Enums/TR3RAlias.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ public enum TR3RAlias
CEILING_SPIKES_WILLSDEN,
CITY_STATUE,
COBRA_NEVADA,
COBRA, // India
CROCODILE_UNDERSEA,
DIVER_UNDERSEA,
DOG_SCOTLAND_WILLSDEN,
Expand Down
Loading