From 38c4fb1670d4c28de7708d731bc3fe16560979de Mon Sep 17 00:00:00 2001 From: zaCade Date: Fri, 18 Jul 2025 11:53:03 +0200 Subject: [PATCH] Correct native use, PM_IsPlayerSteam errors on fake clients. --- RaceTimer/scripting/unloze_racetimer_redux.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RaceTimer/scripting/unloze_racetimer_redux.sp b/RaceTimer/scripting/unloze_racetimer_redux.sp index 5231233..63ab0d2 100755 --- a/RaceTimer/scripting/unloze_racetimer_redux.sp +++ b/RaceTimer/scripting/unloze_racetimer_redux.sp @@ -733,7 +733,7 @@ public void unloze_zoneLeave(int client, char[] zone) { if ((StrContains(zone, "ZONE_PREFIX_START") > -1) || StrEqual(zone, g_cSpecialMapStart)) { - if (!PM_IsPlayerSteam(client)) + if (!IsFakeClient(client) && !PM_IsPlayerSteam(client)) { PrintToChat(client, "Not starting timer due to being listed as nosteamer"); return;