I'm trying to create a mod with more variety of black hole sizes. In the StrategicIconTypes.xsd file I've added some enumeration lines to add the black hole categories. So:
BEFORE:
<xs:enumeration value="MicroBlackHole"/>
<xs:enumeration value="StellarBlackHole"/>
AFTER
<xs:enumeration value="MicroBlackHole"/>
<xs:enumeration value="StellarBlackHole"/>
<xs:enumeration value="SuperBlackHole1"/>
<xs:enumeration value="SuperBlackHole2"/>
<xs:enumeration value="SuperBlackHole3"/>
I've double checked everything for typos and all the code is correct, however, the game now crashes on startup. Is it possible to add these new categories? All I want to do is to show strategic icons when you zoom out and then the mod is done...