Worldbuilder Bug: Jungles only on Grassland

Dark_Jedi06

"Deus ex Machina."
Joined
Jul 19, 2006
Messages
1,451
I've been doing some custom map work with the Worldbuilder recently, and I went to go place some jungles. Much to my dismay, they can only be placed on grassland, despite that fact that the games XML/map scripts will only place it on plains.

I did some research and found a couple of threads mentioning the bug from several months ago, but none that provided a solution or a workaround.

How can this be fixed? It kind of kills my ability to make functional maps that are conducive to the games default rules.
 
Creating a mod with the following XML code should fix it (AFAIK you only need to have the mod enabled when editing the map, it's not needed when playing it).

Code:
<GameData>
	<Feature_TerrainBooleans>
		<Row>
			<FeatureType>FEATURE_JUNGLE</FeatureType>
			<TerrainType>TERRAIN_PLAINS</TerrainType>
		</Row>
	</Feature_TerrainBooleans>
</GameData>
 
Back
Top Bottom