diff --git a/CHANGELOG.md b/CHANGELOG.md index f72be8b23..e5e082214 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -86,6 +86,8 @@ All notable changes to Vanilla 'War Of The Chosen' Behaviour will be documented than a generic label. (#52) - Check a soldiers 'NeedsSecondaryWeapon' in UIArmory_Loadout, rather than hardcoding based on Rookie Rank (#55) +- Change UIUtilities_Colors.GetColorForFaction to use Faction template color as + a backup (#72) ### Fixes - Fix Chosen Assassin receiving weaknesses that are exclusive to the @@ -94,3 +96,5 @@ All notable changes to Vanilla 'War Of The Chosen' Behaviour will be documented into account (#51) - Enable ForceCountry in CharacterPoolManager - was ignored despite being an argument in the CreateCharacter function (#70) +- Fixes game terminating SoundCue narrative moments after three seconds because + it assumes they didn't play at all. (#66) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 5aa4bf2c1..724863f68 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -8,3 +8,5 @@ Brood aka zamster - development shiremct - development bountygiver - development .vhs - ModPreview thumbnail +TNychka - development +PixalVortex - development diff --git a/X2WOTCCommunityHighlander/Src/XComGame/Classes/CHXComGameVersionTemplate.uc b/X2WOTCCommunityHighlander/Src/XComGame/Classes/CHXComGameVersionTemplate.uc index e2ce87e56..7784113bd 100644 --- a/X2WOTCCommunityHighlander/Src/XComGame/Classes/CHXComGameVersionTemplate.uc +++ b/X2WOTCCommunityHighlander/Src/XComGame/Classes/CHXComGameVersionTemplate.uc @@ -57,7 +57,7 @@ function int GetVersionNumber() defaultproperties { MajorVersion = 1; - MinorVersion = 2; - PatchVersion = 1; + MinorVersion = 3; + PatchVersion = 0; }