forward is now invoked later after having applied the extra group flags

This commit is contained in:
jenz 2026-06-24 22:05:36 +02:00
parent 2812dbce8c
commit 5dedfe10cb

View File

@ -571,10 +571,6 @@ public void SetPlayerTier(int client)
g_iPlayerTier[client] = 0;
}
Call_StartForward(g_hForwardPlayerTier);
Call_PushCell(client);
Call_PushCell(g_iPlayerTier[client]);
Call_Finish();
if (g_iPlayerTimeServer[client] < next_hours)
{
g_iPlayerNextTierHours[client] = next_hours - g_iPlayerTimeServer[client];
@ -972,6 +968,11 @@ public void OnClientConnected(int client)
public void OnClientPostAdminFilter(int client)
{
SetTierRewards(client);
Call_StartForward(g_hForwardPlayerTier);
Call_PushCell(client);
Call_PushCell(g_iPlayerTier[client]);
Call_Finish();
}
public void OnRebuildAdminCache(AdminCachePart part)