Readd accidentally removed local player check in Achievement Auth
This commit is contained in:
parent
6346ae26c3
commit
e23ef7e2d3
@ -197,7 +197,7 @@ void ProcessAchievement(IGameEvent *ach)
|
|||||||
player_info_s info;
|
player_info_s info;
|
||||||
if (!g_IEngine->GetPlayerInfo(player_idx, &info))
|
if (!g_IEngine->GetPlayerInfo(player_idx, &info))
|
||||||
return;
|
return;
|
||||||
if (reply && *answerIdentify /* && player_idx != g_pLocalPlayer->entity_idx*/)
|
if (reply && *answerIdentify && player_idx != g_pLocalPlayer->entity_idx)
|
||||||
{
|
{
|
||||||
send_achievement_reply_timer.update();
|
send_achievement_reply_timer.update();
|
||||||
send_achievement_reply = true;
|
send_achievement_reply = true;
|
||||||
|
Reference in New Issue
Block a user