@Grey Roger, do you know what happened here?
Especially that if-section at the end of that comment?
Shouldn't that 'iNation == PIRATE' be used somewhere in there?
Otherwise, wouldn't the Pirates give out land rewards too?
That's not supposed to be...
Code:
// bool NoLandGiven = ProfessionalNavyNation() != UNKNOWN_NATION && curRank < 7;
bool NoLandGiven = curRank < 7; // GR: no land for navy OR privateers until you are landed gentry if(NoLandGiven || iNation == PIRATE)
Shouldn't that 'iNation == PIRATE' be used somewhere in there?
Otherwise, wouldn't the Pirates give out land rewards too?
That's not supposed to be...