Fix wrong distance in relocate diag_log

My mistake from 9c2f151
This commit is contained in:
ebaydayz
2016-09-17 18:15:16 -04:00
parent 3d0c5b13cf
commit d0e7b26121

View File

@@ -172,7 +172,7 @@ if (count _this > 4) then { //calling from player_onDisconnect
_newPos = [_charPos, 80, (_maxDist + 800), 10, 1, 0, 0, [], [_charPos,_charPos]] call BIS_fnc_findSafePos;
};
_charPos = _newPos;
diag_log format["%1(%2) logged out in air vehicle. Relocated to safePos %3m from logout position.",_name,_playerUID,_charPos distance _newPos];
diag_log format["%1(%2) logged out in air vehicle. Relocated to safePos.",_name,_playerUID];
};
};
};