One of my subscribers mentioned a mod incompatibility to me which I am looking in to.
The other person's mod which isn't compatible has one single .sql which contains:
UPDATE Units
SET Moves = '3'
WHERE Type = 'UNIT_EXPLORER';
Which looks a like easier to do than what I did to update the same unit's combat strength in an XML (other units excluded):
<GameData>
<Units>
<Update>
<Where Type="UNIT_EXPLORER"/>
<Set>
<Combat>5</Combat>
</Set>
</Update>
</Units>
</GameData>
They both affect the same unit but are different values, I was under the impression that it didn't matter if they didn't try to change the same variable. I had a feeling my could be done with fewer commands, but it does work as is I know that much.
The other person's mod which isn't compatible has one single .sql which contains:
UPDATE Units
SET Moves = '3'
WHERE Type = 'UNIT_EXPLORER';
Which looks a like easier to do than what I did to update the same unit's combat strength in an XML (other units excluded):
<GameData>
<Units>
<Update>
<Where Type="UNIT_EXPLORER"/>
<Set>
<Combat>5</Combat>
</Set>
</Update>
</Units>
</GameData>
They both affect the same unit but are different values, I was under the impression that it didn't matter if they didn't try to change the same variable. I had a feeling my could be done with fewer commands, but it does work as is I know that much.