Skip to content

Commit

Permalink
Bump version to 1.0 Patch 8
Browse files Browse the repository at this point in the history
  • Loading branch information
Xymanek committed May 6, 2022
1 parent f25e2e5 commit b6f791a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ struct CharacterGroupKillCount
var int ModVersion;
var int StrategyModVersion;

const CURRENT_MOD_VERSION = 10000007; // 1.0 patch 7
const CURRENT_MOD_VERSION = 10000008; // 1.0 patch 8

/////////////////////
/// Strategy vars ///
Expand Down Expand Up @@ -172,6 +172,7 @@ static function CreateInfo(optional XComGameState StartState)
{
Info = XComGameState_CovertInfiltrationInfo(StartState.CreateNewStateObject(class'XComGameState_CovertInfiltrationInfo'));
Info.ModVersion = CURRENT_MOD_VERSION;
Info.StrategyModVersion = CURRENT_MOD_VERSION;
return;
}

Expand All @@ -182,6 +183,7 @@ static function CreateInfo(optional XComGameState StartState)

Info = XComGameState_CovertInfiltrationInfo(NewGameState.CreateNewStateObject(class'XComGameState_CovertInfiltrationInfo'));
Info.ModVersion = CURRENT_MOD_VERSION;
Info.StrategyModVersion = CURRENT_MOD_VERSION;
Info.InitExistingCampaign();

`XCOMHISTORY.AddGameStateToHistory(NewGameState);
Expand Down

0 comments on commit b6f791a

Please sign in to comment.