Underwater villages and forests

SavioursSamurai

Chieftain
Joined
Jun 16, 2013
Messages
44
Okay, so I started a game as Casin Loveless, and I noticed a couple of oddities (not related to Lanun in particular, it was just with them that I noticed this):

1. The event where you discover a hidden elfin village near your city can occur in water. Right now I have a booming village, soon-to-be town, in the coast adjacent to my city.

2. In this same game, I'm playing with End of Winter enabled, and the kelp forests are actual forests, which are slowly thawing back into kelp.
 
fixed in AoE Beta SVN Version.
for other version, look at the last part of end of winter game start python code in CvEventManager.py (can be found easily, it's the part starting by
Code:
if Option["Thaw"]:
).
and replace the last test about features :
Code:
elif (eFeature != FeatureTypes.NO_FEATURE):

by something like this to prevent changes on water plots:

Code:
elif (eFeature != FeatureTypes.NO_FEATURE and not pPlot.isWater()):
 
Top Bottom