Medical - Fix adv wound not stacking (#4353)

This commit is contained in:
PabstMirror 2016-09-07 13:54:54 -05:00 committed by Glowbal
parent 13df3efce2
commit 1caea46d60

View File

@ -38,7 +38,7 @@ call compile _extensionOutput;
{
_x params ["", "_compareId", "_comparyBodyPartN"];
// Check if we have an id of the given class on the given bodypart already
if (_compareId == _toAddClassID && {_comparyBodyPartN2 == _bodyPartNToAdd}) exitWith {
if (_compareId == _toAddClassID && {_comparyBodyPartN == _bodyPartNToAdd}) exitWith {
_foundIndex = _forEachIndex;
};
} forEach _openWounds;