mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
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:
parent
86d7143890
commit
d448c9e7c0
@ -96,7 +96,8 @@ namespace ace {
|
||||
}
|
||||
else
|
||||
{
|
||||
injuryToAdd = information.at(0);
|
||||
int indexNewInjuryToAdd = rand() % information.size();
|
||||
injuryToAdd = information.at(indexNewInjuryToAdd);
|
||||
}
|
||||
|
||||
int bodyPartID = selection;
|
||||
|
Loading…
x
Reference in New Issue
Block a user