How do I mod settlement's buildable tile limit?
I want to mod the settlement's buildable tiles to increase with settlement level, as well as the pop limit when the settlement levels up.
The 2 files I tried to mod are ..\Elemental\data\English\Core Improvements\F_CityHubs and ..\Elemental\data\English\Core Improvements\K_CityHubs
<BuildableTiles>100</BuildableTiles>
..
<!--! Holds 15 population-->
<GameModifier InternalName="Storage_Population">
<ModType>ResourceStorage</ModType>
<Attribute>Population</Attribute>
<Value>15.0</Value>
<Cumulative>true</Cumulative>
</GameModifier>
<!-- Level-up Cap -->
<GameModifier InternalName="LevelOne_LevelCap">
<ModType>LevelBarrier</ModType>
<Attribute>Population</Attribute>
<Value>20.0</Value>
<CityUpgrade>F_Village</CityUpgrade>
</GameModifier>
But it seems modding the values have no effect on the game. anyone know if there are other places I need to mod to change this?