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 carrying out soldier multiple times (#557) #558

Closed
wants to merge 1 commit into from
Closed
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 @@ -171,6 +171,7 @@ All notable changes to Vanilla 'War Of The Chosen' Behaviour will be documented
their damage with psi flyovers (Psi Bomb, mod abilities) (#326)
- Fix `X2AbilityToHitCalc_StandardAim` discarding unfavorable (for XCOM) changes
to hit results from effects (#426)
- Allow soldiers to be carried out from multiple missions in a campaign (#557)


## Miscellaneous
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2292,6 +2292,14 @@ function OnBeginTacticalPlay(XComGameState NewGameState)
}

bRequiresVisibilityUpdate = true;

// Start Issue #557
//
// Reset the body recovered flag. A unit that was previously carried to evac while KO'd/bleeding
// out will have this flag set, and this flag prevents units from being carried. If this unit
// gets KO'd again, they won't be able to be picked up if this flag is still set.
bBodyRecovered = false;
// End Issue #557
}

function ApplyFirstTimeStatModifiers()
Expand Down