From 9d042f1de59c2a0c714c2d001b231b5e945d8d69 Mon Sep 17 00:00:00 2001 From: Skaronator Date: Sat, 22 Mar 2014 11:52:02 +0100 Subject: [PATCH] Done #1176 --- SQF/dayz_code/system/player_spawn_2.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQF/dayz_code/system/player_spawn_2.sqf b/SQF/dayz_code/system/player_spawn_2.sqf index 5f41bf740..5835a9204 100644 --- a/SQF/dayz_code/system/player_spawn_2.sqf +++ b/SQF/dayz_code/system/player_spawn_2.sqf @@ -38,7 +38,7 @@ while {true} do { _outsideMap = ((dayz_myPosition select 0) < dayz_minpos OR (dayz_myPosition select 1) < dayz_minpos OR (dayz_myPosition select 0) > dayz_maxpos OR (dayz_myPosition select 1) > dayz_maxpos); - if(_outsideMap OR DZE_Quarantine) then { + if((_outsideMap || DZE_Quarantine) && !r_player_dead && !isNull (findDisplay 46)) then { DZE_InRadiationZone = true; };