From d448c9e7c0f2509c672e5aa7532e9a646df916b6 Mon Sep 17 00:00:00 2001 From: Glowbal Date: Sat, 13 Jun 2015 12:37:41 +0200 Subject: [PATCH] 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. --- extensions/medical/handleDamage.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extensions/medical/handleDamage.cpp b/extensions/medical/handleDamage.cpp index b388845ac5..e36d8994b0 100644 --- a/extensions/medical/handleDamage.cpp +++ b/extensions/medical/handleDamage.cpp @@ -96,7 +96,8 @@ namespace ace { } else { - injuryToAdd = information.at(0); + int indexNewInjuryToAdd = rand() % information.size(); + injuryToAdd = information.at(indexNewInjuryToAdd); } int bodyPartID = selection;