diff --git a/CHANGELOG.md b/CHANGELOG.md index ce24e091..4f402344 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/TRDataControl/Data/Remastered/TR3RDataCache.cs b/TRDataControl/Data/Remastered/TR3RDataCache.cs index 73d301cc..6e66082d 100644 --- a/TRDataControl/Data/Remastered/TR3RDataCache.cs +++ b/TRDataControl/Data/Remastered/TR3RDataCache.cs @@ -140,5 +140,6 @@ public override TR3RAlias GetAlias(TR3Type key) [TR3Type.DogLondon] = TR3RAlias.DOG_SEWER, [TR3Type.CobraNevada] = TR3RAlias.COBRA_NEVADA, + [TR3Type.CobraIndia] = TR3RAlias.COBRA, }; } diff --git a/TRLevelControl/Model/TR3/Enums/TR3RAlias.cs b/TRLevelControl/Model/TR3/Enums/TR3RAlias.cs index db5d6331..8730f7f9 100644 --- a/TRLevelControl/Model/TR3/Enums/TR3RAlias.cs +++ b/TRLevelControl/Model/TR3/Enums/TR3RAlias.cs @@ -68,6 +68,7 @@ public enum TR3RAlias CEILING_SPIKES_WILLSDEN, CITY_STATUE, COBRA_NEVADA, + COBRA, // India CROCODILE_UNDERSEA, DIVER_UNDERSEA, DOG_SCOTLAND_WILLSDEN,