I am wondering if the following code would do what I think it should. by changing all iron deposits to have either 1 or 4 iron in them instead of 2 or 6
Code:
<Update>
<Where ResourceType="RESOURCE_IRON" Quantity="6"/>
<!-- The quantity for major iron deposits -->
<Set Value="4"/>
<!-- "6" -->
</Update>
<Update>
<Where ResourceType="RESOURCE_IRON" Quantity="2"/>
<!-- The quantity for minor iron deposits -->
<Set Value="1"/>
<!-- "2" -->
</Update>