From 141b25e204d529886c432ab85d3d27ca4ec18633 Mon Sep 17 00:00:00 2001 From: oiad Date: Sat, 30 Dec 2017 23:07:36 +1300 Subject: [PATCH] Update DZE_SafeZonePosCheck with missing operator I possibly just need a little more sleep and a little less epoch time --- SQF/dayz_code/init/compiles.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQF/dayz_code/init/compiles.sqf b/SQF/dayz_code/init/compiles.sqf index f064ad629..f265e5325 100644 --- a/SQF/dayz_code/init/compiles.sqf +++ b/SQF/dayz_code/init/compiles.sqf @@ -853,7 +853,7 @@ DZE_SafeZonePosCheck = { _position = _this select 0; _skipPos = false; - if (DZE_SafeZoneZombieLoot || count _this > 1) then { + if (!DZE_SafeZoneZombieLoot || count _this > 1) then { { if ((_position distance (_x select 0)) < (if (count _this > 1) then {_this select 1} else {_x select 1})) exitWith {_skipPos = true;}; } forEach DZE_SafeZonePosArray;