Probably a simple problem but I can't see what I'm doing wrong here. Basically I'm changing the "must_set_up" promotion, which only siege weapons have, to add +1 range and +50% city attack. I've tried this in xml:
<GameData>
<UnitPromotions>
<Row>
<Type>PROMOTION_MUST_SET_UP</Type>
<RangeChange>1</RangeChange>
<CityAttack>50</CityAttack>
</Row>
</UnitPromotions>
</GameData>
That didn't work so I tried this in sql:
UPDATE UnitPromotions SET 'RangeChange' = 1 WHERE Type IN ("MUST_SET_UP");
UPDATE UnitPromotions SET 'CityAttack' = 50 WHERE Type IN ("MUST_SET_UP");
Which didn't work either
<GameData>
<UnitPromotions>
<Row>
<Type>PROMOTION_MUST_SET_UP</Type>
<RangeChange>1</RangeChange>
<CityAttack>50</CityAttack>
</Row>
</UnitPromotions>
</GameData>
That didn't work so I tried this in sql:
UPDATE UnitPromotions SET 'RangeChange' = 1 WHERE Type IN ("MUST_SET_UP");
UPDATE UnitPromotions SET 'CityAttack' = 50 WHERE Type IN ("MUST_SET_UP");
Which didn't work either
