VoiceOfUnreason
Deity
- Joined
- Dec 5, 2005
- Messages
- 3,663
Staring at the Great Person generation code in the SDK (documenting evidence for a post in Another Place), I was quite surprised to discover this little nugget.
What this says is that when one of your Permanent Allies generates a great person, your threshold increases too (by half as much as his goes up).
Code:
incrementGreatPeopleCreated();
changeGreatPeopleThresholdModifier(....);
for (int iI = 0; iI < MAX_PLAYERS; iI++)
{
if (GET_PLAYER((PlayerTypes)iI).getTeam() == getTeam())
{
GET_PLAYER((PlayerTypes)iI).changeGreatPeopleThresholdModifier(....);
}
}
What this says is that when one of your Permanent Allies generates a great person, your threshold increases too (by half as much as his goes up).