mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Missing semicolon
This commit is contained in:
parent
15afb8846a
commit
68626f54fc
@ -66,7 +66,7 @@ _woundsCreated = [];
|
||||
for "_i" from 0 to (1+ floor(random(_x select 1)-1)) /* step +1 */ do {
|
||||
_toAddInjury = _allPossibleInjuries select (floor(random (count _allPossibleInjuries)));
|
||||
// ID, classname, bodypart, percentage treated, bloodloss rate
|
||||
_injury = [_woundID, _toAddInjury select 0, if (_injuryTypeInfo select 1) then {_bodyPartn} else {floor(random(6))}, 1, _toAddInjury select 2]
|
||||
_injury = [_woundID, _toAddInjury select 0, if (_injuryTypeInfo select 1) then {_bodyPartn} else {floor(random(6))}, 1, _toAddInjury select 2];
|
||||
_openWounds pushback _injury;
|
||||
_woundsCreated pushback _injury;
|
||||
_woundID = _woundID + 1;
|
||||
|
Loading…
Reference in New Issue
Block a user