Fixed select new injuryToAdd always selects first

It should not always take the first injury in the list. That would with the current configuration almost always be the same injury as in `highestSpot`.

This might need to be expanded with something that prefers higher damage types.
This commit is contained in:
Glowbal 2015-06-13 12:37:41 +02:00
parent 86d7143890
commit d448c9e7c0

View File

@ -96,7 +96,8 @@ namespace ace {
}
else
{
injuryToAdd = information.at(0);
int indexNewInjuryToAdd = rand() % information.size();
injuryToAdd = information.at(indexNewInjuryToAdd);
}
int bodyPartID = selection;