fixed Error Missing ;

This commit is contained in:
[VB]AWOL
2014-07-02 23:06:30 -05:00
parent 3036b31bbb
commit 5585633c5f

View File

@@ -42,7 +42,7 @@ if (!isDedicated) then {
private ["_unit","_detail","_PUID"]; private ["_unit","_detail","_PUID"];
_unit = _this select 0; _unit = _this select 0;
_detail = _this select 1; _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 { if(_unit == _PUID) then {
player setVariable["publish",_detail]; player setVariable["publish",_detail];
}; };