fixing safezone check

This commit is contained in:
sethduda 2016-03-20 23:05:58 -04:00
parent 10607cc2a6
commit 5fd51c6e78

View File

@ -367,7 +367,7 @@ SA_Can_Attach_Tow_Ropes = {
};
if(!missionNamespace getVariable ["SA_TOW_IN_EXILE_SAFEZONE_ENABLED",false]) then {
if(!isNil "ExilePlayerInSafezone") then {
_canBeTowed = _canBeTowed && ExilePlayerInSafezone;
_canBeTowed = _canBeTowed && !ExilePlayerInSafezone;
};
};
_canBeTowed;