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

Add a config flag to disable civilian pre-move yell #1246

Merged
merged 2 commits into from
Aug 19, 2023
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
5 changes: 5 additions & 0 deletions X2WOTCCommunityHighlander/Config/XComGame.ini
Original file line number Diff line number Diff line change
Expand Up @@ -268,3 +268,8 @@ bEnableVersionDisplay=true
;;; HL-Docs: ref:EuroDateOverride
; Uncomment the following line to set European date style for INT localization
; bForceEuroDateStrings = true

;;; HL-Docs: ref:CiviliansPreMoveYell
; Uncomment the following line to disable the civilian pre-move yell mechanic
; bDisableCivilianPreMoveYell = true

3 changes: 3 additions & 0 deletions X2WOTCCommunityHighlander/Src/XComGame/Classes/CHHelpers.uc
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,9 @@ var config float ProjectileParticleSystemExpirationDefaultOverride;
// Variable for Issue #817 - put the string here, as UIOptionsPCScreen is native and cannot have new variables.
var localized string m_strFramerateSmoothingDisabledReason;

// Variable added Issue #717 - allow disabling the civilian pre-move yell
var config bool bDisableCivilianPreMoveYell;

// Start Issue #885
enum EHLDelegateReturn
{
Expand Down
Loading
Loading