mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Removed debug output
This commit is contained in:
parent
1a4736e663
commit
1e08244f21
@ -36,10 +36,7 @@ _unit setvariable [QGVAR(bodyPartStatus), _damageBodyParts, true];
|
|||||||
|
|
||||||
_typeOfDamage = [_typeOfProjectile] call FUNC(getTypeOfDamage);
|
_typeOfDamage = [_typeOfProjectile] call FUNC(getTypeOfDamage);
|
||||||
|
|
||||||
|
[_unit, _selectionName, _newDamage, _typeOfProjectile, _typeOfDamage] call FUNC(handleDamage_assignWounds);
|
||||||
systemChat format["ASSIGNING INJURIES: %1", _unit];
|
|
||||||
|
|
||||||
[_unit, _selectionName, _newDamage, _typeOfProjectile, _typeOfDamage] call FUNC(handleDamage_wounds); //FUNC(handleDamage_assignWounds);
|
|
||||||
|
|
||||||
// TODO Disabled until implemented fully
|
// TODO Disabled until implemented fully
|
||||||
//if (GVAR(enableAirway)) then {
|
//if (GVAR(enableAirway)) then {
|
||||||
|
@ -20,15 +20,11 @@
|
|||||||
private ["_bodyPartn", "_injuryTypeInfo", "_allInjuriesForDamageType", "_allPossibleInjuries", "_highestPossibleDamage", "_highestPossibleSpot", "_minDamage", "_openWounds", "_woundID", "_toAddInjury", "_painToAdd", "_bloodLoss", "_bodyPartNToAdd", "_classType", "_damageLevels", "_foundIndex", "_i", "_injury", "_maxDamage", "_pain", "_painLevel", "_selections", "_toAddClassID", "_woundsCreated"];
|
private ["_bodyPartn", "_injuryTypeInfo", "_allInjuriesForDamageType", "_allPossibleInjuries", "_highestPossibleDamage", "_highestPossibleSpot", "_minDamage", "_openWounds", "_woundID", "_toAddInjury", "_painToAdd", "_bloodLoss", "_bodyPartNToAdd", "_classType", "_damageLevels", "_foundIndex", "_i", "_injury", "_maxDamage", "_pain", "_painLevel", "_selections", "_toAddClassID", "_woundsCreated"];
|
||||||
params ["_unit", "_selectionName", "_damage", "_typeOfProjectile", "_typeOfDamage"];
|
params ["_unit", "_selectionName", "_damage", "_typeOfProjectile", "_typeOfDamage"];
|
||||||
|
|
||||||
systemChat format["input: %1", _this];
|
|
||||||
diag_log format["input: %1", _this];
|
|
||||||
|
|
||||||
// Administration for open wounds and ids
|
// Administration for open wounds and ids
|
||||||
_openWounds = _unit getvariable[QGVAR(openWounds), []];
|
_openWounds = _unit getvariable[QGVAR(openWounds), []];
|
||||||
_woundID = _unit getvariable[QGVAR(lastUniqueWoundID), 1];
|
_woundID = _unit getvariable[QGVAR(lastUniqueWoundID), 1];
|
||||||
|
|
||||||
_extensionOutput = "ace_medical" callExtension format ["HandleDamageWounds,%1,%2,%3,%4", _selectionName, _damage, _typeOfDamage, _woundID];
|
_extensionOutput = "ace_medical" callExtension format ["HandleDamageWounds,%1,%2,%3,%4", _selectionName, _damage, _typeOfDamage, _woundID];
|
||||||
systemChat format["EXTENSION OUTPUT: %1", _extensionOutput];
|
|
||||||
|
|
||||||
_painToAdd = 0;
|
_painToAdd = 0;
|
||||||
_woundsCreated = [];
|
_woundsCreated = [];
|
||||||
|
Loading…
Reference in New Issue
Block a user