mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Medical Treatement - Don't allow conscious patients to be buried (#9448)
Don't allow conscious patients to be buried
This commit is contained in:
parent
6cebdd8fef
commit
dbf288851e
@ -20,4 +20,4 @@ params ["_medic", "_patient"];
|
||||
|
||||
if !(["ace_trenches"] call EFUNC(common,isModLoaded)) exitWith {false};
|
||||
|
||||
(GVAR(allowGraveDigging) > 0) && {_patient call EFUNC(common,canDig)} && {_medic call EFUNC(trenches,hasEntrenchingTool)}
|
||||
(GVAR(allowGraveDigging) > 0) && {!(_patient call EFUNC(common,isAwake))} && {_patient call EFUNC(common,canDig)} && {_medic call EFUNC(trenches,hasEntrenchingTool)}
|
||||
|
Loading…
Reference in New Issue
Block a user