[NFP] [1.0.9.9] [Dramatic Ages] Loyalty from Solidarity dissappear

Nerevatar

Warlord
Joined
Mar 17, 2019
Messages
192
The golden age card Solidarity from Dramatic Ages will loose it's loyalty pressure from governers if the governor is moved after the card is slotted. This is also tested with a modded version of the modifer, with the same behavior being observed.

Edit: After a bit of tinkering, adding these parameters to the modifier will fix the problem:
<RunOnce>0</RunOnce>
<Permanent>1</Permanent>
 
Last edited:
Do you have any save file for the situation?
I'd like to do some test.

(EDIT)
Edit: After a bit of tinkering, adding these parameters to the modifier will fix the problem:
<RunOnce>0</RunOnce>
<Permanent>1</Permanent>

It works!! Thanks!!
RunOnce is default zero.
I turned on Permanant only.

Code:
UPDATE Modifiers SET Permanent = '1'
WHERE ModifierId='POLICY_SOLIDARITY_GOVERNOR_LOYALTY' AND Permanent = '0';
 
Last edited:
Top Bottom