From 5585633c5f341f25fe34686f2d414649573881ef Mon Sep 17 00:00:00 2001 From: "[VB]AWOL" Date: Wed, 2 Jul 2014 23:06:30 -0500 Subject: [PATCH] fixed Error Missing ; --- 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 2eaf1bdab..b7950d631 100644 --- a/SQF/dayz_code/init/compiles.sqf +++ b/SQF/dayz_code/init/compiles.sqf @@ -42,7 +42,7 @@ if (!isDedicated) then { private ["_unit","_detail","_PUID"]; _unit = _this select 0; _detail = _this select 1; - _PUID = if (DayZ_UseSteamID) then {GetPlayerUID player;} else {GetPlayerUIDOld player;}; + _PUID = if (DayZ_UseSteamID) then {GetPlayerUID player} else {GetPlayerUIDOld player}; if(_unit == _PUID) then { player setVariable["publish",_detail]; };