JosEPh_II
TBS WarLord
The Super Fort segment had more than just what you are showing there.\\It didn't really provide any information one cannot glean by looking at the define name itself.
<!-- Super Forts begin -->
<Define>
<DefineName>SUPER_FORTS_DURATION_BEFORE_REVOLT</DefineName></Define>
<iDefineIntVal>5</iDefineIntVal>
<!-- Super Forts end -->
It is these 2 segments:
SVN 11232
Code:
<!-- Super Forts begin -->
<Define>
<DefineName>AI_WORKER_MAX_DISTANCE_FROM_CITY_OUT_BORDERS</DefineName>
<iDefineIntVal>5</iDefineIntVal>
</Define>
<Define>
<DefineName>SUPER_FORTS_DURATION_BEFORE_REVOLT</DefineName>
<iDefineIntVal>5</iDefineIntVal>
</Define>
Code:
<Define>
<DefineName>AI_WORKER_MAX_DISTANCE_FROM_CITY_OUT_BORDERS</DefineName>
<iDefineIntVal>5</iDefineIntVal>
</Define>
<Define>
<DefineName>SUPER_FORTS_DURATION_BEFORE_REVOLT</DefineName>
<iDefineIntVal>5</iDefineIntVal>
By losing the comment <!-- Super Forts begin --> above the AI_WORKER_MAX you lose what this segment refers to.
Perhaps this is a nit pick to you. But to thers that do not frequent the GlobalDefines as much it makes working with the Defines sections harder.