Added additional abort condition.

This commit is contained in:
ulteq 2015-06-02 20:06:56 +02:00
parent 4580168080
commit c2be6ffef6

View File

@ -5,4 +5,11 @@ GVAR(sandBag) = objNull;
GVAR(deployPFH) = -1;
GVAR(deployDirection) = 0;
// Cancel deploy sandbag if interact menu opened
["interactMenuOpened", {
if (GVAR(deployPFH) != -1 && {!isNull (GVAR(sandBag))}) then {
call FUNC(deployCancel);
};
}] call EFUNC(common,addEventHandler);
[{_this call DFUNC(handleScrollWheel)}] call EFUNC(common,addScrollWheelEventHandler);