mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Merge branch 'release' into revc65656a0
This commit is contained in:
commit
8ff4fb8851
@ -444,6 +444,11 @@ if (!isNil QGVAR(PreInit_playerChanged_PFHID)) then {
|
|||||||
// Add various canInteractWith conditions
|
// Add various canInteractWith conditions
|
||||||
//////////////////////////////////////////////////
|
//////////////////////////////////////////////////
|
||||||
|
|
||||||
|
["isNotDead", {
|
||||||
|
params ["_unit", "_target"];
|
||||||
|
alive _unit
|
||||||
|
}] call FUNC(addCanInteractWithCondition);
|
||||||
|
|
||||||
["notOnMap", {!visibleMap}] call FUNC(addCanInteractWithCondition);
|
["notOnMap", {!visibleMap}] call FUNC(addCanInteractWithCondition);
|
||||||
|
|
||||||
["isNotInside", {
|
["isNotInside", {
|
||||||
|
@ -45,6 +45,13 @@ GVAR(expanded) = false;
|
|||||||
|
|
||||||
GVAR(startHoverTime) = ACE_diagTime;
|
GVAR(startHoverTime) = ACE_diagTime;
|
||||||
GVAR(expandedTime) = ACE_diagTime;
|
GVAR(expandedTime) = ACE_diagTime;
|
||||||
|
|
||||||
|
// reset on mission load
|
||||||
|
addMissionEventHandler ["Loaded", {
|
||||||
|
GVAR(startHoverTime) = 0;
|
||||||
|
GVAR(expandedTime) = 0;
|
||||||
|
}];
|
||||||
|
|
||||||
GVAR(iconCtrls) = [];
|
GVAR(iconCtrls) = [];
|
||||||
GVAR(iconCount) = 0;
|
GVAR(iconCount) = 0;
|
||||||
|
|
||||||
|
@ -594,7 +594,7 @@ class CfgSettings {
|
|||||||
class Versioning {
|
class Versioning {
|
||||||
class ACE {
|
class ACE {
|
||||||
class dependencies {
|
class dependencies {
|
||||||
CBA[] = {"cba_main", REQUIRED_CBA_VERSION, "true"};
|
CBA[] = {"cba_main", REQUIRED_CBA_VERSION, "(true)"};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -1366,7 +1366,7 @@ class ACE_Medical_Advanced {
|
|||||||
timeInSystem = 900;
|
timeInSystem = 900;
|
||||||
maxDose = 4;
|
maxDose = 4;
|
||||||
inCompatableMedication[] = {};
|
inCompatableMedication[] = {};
|
||||||
viscosityChange = 10;
|
viscosityChange = -10;
|
||||||
};
|
};
|
||||||
class Epinephrine {
|
class Epinephrine {
|
||||||
painReduce = 0;
|
painReduce = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user