City state change

MPJB1974

Chieftain
Joined
Nov 22, 2022
Messages
15
Just trying to tweak values for some of the city states bonuses.

UPDATE ModifierArguments SET Value = 1 WHERE ModifierId = 'MINOR_CIV_CULTURAL_YIELD_FOR_CAPITAL';

Any ideas why this is not working?

It's having an effect of removing the bonus altogether, not reducing it to 1 ?

That said the info on the city state screen looks unchanged, so not sure.
 
There's two arguments for that particular modifier. The first defines the YieldType, the second the Amount. So you have to specify which one you're modifying.

SQL:
UPDATE ModifierArguments SET Value = 1 WHERE ModifierId = 'MINOR_CIV_CULTURAL_YIELD_FOR_CAPITAL' AND Name = 'Amount';
 
Back
Top Bottom