fix missing param

as seen here

a9dc9f044b/Sources/epoch_server/compile/epoch_player/EPOCH_fnc_updatePlayerStats.sqf (L15)

second param is _killer (object)
This commit is contained in:
RZSenfo 2018-06-23 09:34:29 +02:00 committed by GitHub
parent 6d36f5dcd3
commit 42acfb372c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,5 +41,5 @@ private _newStat = _currentStat + _adjust;
missionNameSpace setVariable[_statVarName,_newStat];
if(_toServer)then{
[player, _statType, _adjust, false, Epoch_personalToken] remoteExec ["EPOCH_fnc_updatePlayerStats",2];
};
[player, objNull, _statType, _adjust, false, Epoch_personalToken] remoteExec ["EPOCH_fnc_updatePlayerStats",2];
};