Integrity
I have verified my game files (on Steam)
YesI have disabled all mods
YesRequired
Summary
Incorrect calculation for Age of Caudillos journal entry progressDescription
The Age of Caudillos journal entry has a monthly progress calculation. One of the conditions in that calculation has incorrect triggers, which is counter to the tooltip for depleting the progress bar. This reduces the potential of depleting the progress bar.Steps to reproduce
Review file script ingame\common\scripted_effects\00_victoria_scripted_effects.txt
at calculate_caudillo_progress
. Specifically the trigger at lines 3774-3801. Observe that the interest group support checks are inverted for three of the four laws, which is opposite of what the tooltip states.The relevant part of the tooltip (
je_caudillo_special_tooltip_deplete
) is "We have a Politician who is loved, and belongs to any Powerful interest group that does not approve of Autocracy, Oligarchy, Technocracy, and Single-Party State"The actual trigger checks that the interest group does not approve of Autocracy (
value <= neutral
), the rest of the laws are checked for does not disapprove (value >= neutral
)