Biosphere manipulator bug

unable to build more than one.

Title pretty much says it all.  The description for the building / tech says upgrade multiple low quality tiles, but in game it only lets you upgrade one tile.

11,576 views 5 replies
Reply #1 Top

On higher quality planets this can happen. Its not a bug as its due to the way the system figures out what can and cannot be upgraded. See if it does this on lower quality planets (aka Mars or something similar).

Reply #2 Top

I've never gotten it to do more than one tile on ANY planet.

Reply #3 Top

this has been an ongoing issue since early beta unless they fixed it the 2 top tier terraforming improvements were switched the one that said multiple low level tiles was doing 1 any tile and the one that said 1 any tile was doing multiple low level tiles 

Reply #4 Top

There is a mistake in the ImprovementDefs.xml. The biosphere Manipulator is tagged as a colony unique improvement, which it should not be (according to the text).

<Improvement>
<InternalName>BiosphereManipulator</InternalName>
<DisplayName>BiosphereManipulator_Name</DisplayName>
<ShortDescription>BiosphereManipulator_ShortDec</ShortDescription>
<Description>BiosphereManipulator_Dec</Description>
<Icon>BiosphereManipulator.png</Icon>
<BuildIcon>BiosphereManipulator_Build.png</BuildIcon>
<ListIcon>BiosphereManipulator_Icon.png</ListIcon>
<ImprovementType>Terraforming</ImprovementType>
<PlacementType>Terraforming</PlacementType>
<IsColonyUnique>true</IsColonyUnique>

<LandPercentageMin>0.35</LandPercentageMin>

<!-- Stats -->
...
</Improvement>

To fix it comment the IsColonyUnique tag out, or remove the entire line.

<!-- IsColonyUnique>true</IsColonyUnique -->

 

Reply #5 Top

Thanks for reporting. :)