From b21d02cc30a1baea795e0c2f39717c304520b049 Mon Sep 17 00:00:00 2001 From: worldwidesorrow Date: Thu, 9 Jan 2020 16:38:06 -0600 Subject: [PATCH] Delete sched_buildingBubble.sqf This file is no longer needed. --- .../system/scheduler/sched_buildingBubble.sqf | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 SQF/dayz_code/system/scheduler/sched_buildingBubble.sqf diff --git a/SQF/dayz_code/system/scheduler/sched_buildingBubble.sqf b/SQF/dayz_code/system/scheduler/sched_buildingBubble.sqf deleted file mode 100644 index 28e5bcba2..000000000 --- a/SQF/dayz_code/system/scheduler/sched_buildingBubble.sqf +++ /dev/null @@ -1,21 +0,0 @@ -sched_buildingBubble = { - private "_dis"; - - { - _dis = _x distance player; - if ((player distance _x) > 400) then { - if (_x in dayz_buildingBubbleMonitor) then { - dayz_buildingBubbleMonitor = dayz_buildingBubbleMonitor - [_x]; - }; - //Clear Loot vars - if (!(isNil {player getVariable "looted"})) then { - _x setVariable ["looted",nil]; //SpawnCheck - }; - if (!(isNil {player getVariable "zombieSpawn"})) then { - _x setVariable ["zombieSpawn",nil]; //SpawnCheck - }; - }; - } count dayz_buildingBubbleMonitor; - - objNull -};