From e81760ab60c2fe7a10ed465ffd4e4b7dc00adb74 Mon Sep 17 00:00:00 2001 From: "[VB]AWOL" Date: Fri, 14 Feb 2014 12:01:20 -0600 Subject: [PATCH] same as last --- SQF/dayz_code/compile/local_lights_init.sqf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SQF/dayz_code/compile/local_lights_init.sqf b/SQF/dayz_code/compile/local_lights_init.sqf index 38f0a9853..65abbf758 100644 --- a/SQF/dayz_code/compile/local_lights_init.sqf +++ b/SQF/dayz_code/compile/local_lights_init.sqf @@ -26,9 +26,9 @@ if(!isDedicated)then{ _houseNum = 0;//Monitor house numbers in range.. Pass around and reduce range if too many and/or client lag (NOT server / client lag) _lightTrig = vehicle player;//Central point around which to run the lights _plyPos = [0,0,0]; - call compile preprocessFileLineNumbers "z\addons\dayz_code\compile\fn_lightFunctions.sqf"; - axeTowerLights = compile preprocessFileLineNumbers "z\addons\dayz_code\compile\local_lights_tower.sqf"; - axeHouseLights = compile preprocessFileLineNumbers "z\addons\dayz_code\compile\local_lights_house.sqf"; + call compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\fn_lightFunctions.sqf"; + axeTowerLights = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\local_lights_tower.sqf"; + axeHouseLights = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\local_lights_house.sqf"; waitUntil {getPos Player select 0 > 0};