Quote Originally Posted by Empedocles
How can I remove it?
In RTW\EB\data there is a file called export_descr_character_traits.txt. Make a backup and then open it with notepad.

Find the following code,

Code:
;Trigger: general_becomes_battleweary_01

Trigger general_becomes_battleweary_01
    WhenToTest PostBattle

    Condition IsGeneral
          and Trait CommandExperience > 3
          and Trait Temperament < 3
          and Trait EnergyRating < 3
          and Trait Selflessness > 2
          and PercentageOfArmyKilled > 25

    Affects BattleWeary  1  Chance  90

;Mod: EBMod539 - 05/20 : general BattleWeary of war and death
which is the trigger for battle weary and add ; in front of each of these lines(or you could delete the entire code, I prefer disabling it, makes it easier to adapt):

Code:
;Trigger: general_becomes_battleweary_01
; o <BattleWeary>  1: 90%

;Trigger general_becomes_battleweary_01
;   WhenToTest PostBattle

;    Condition IsGeneral
;          and Trait CommandExperience > 3
;          and Trait Temperament < 3
;          and Trait EnergyRating < 3
;          and Trait Selflessness > 2
;          and PercentageOfArmyKilled > 25

;    Affects BattleWeary  1  Chance  90

;Mod: EBMod539 - 05/20 : general BattleWeary of war and death
save and exit, no generals will get this trait from now on.

if you have a general that you like with this trait and want it removed, try adding this, this might work, but I am not 100% sure.:

Code:
;Trigger: remove_battleweary_fromgeneral01
; o <BattleWeary>  1: 90%

Trigger general_becomes_battleweary_01
    WhenToTest CharacterTurnEnd
    Condition IsGeneral
          and Trait BattleWeary > 0

    Affects BattleWeary  -1  Chance  90