Skip to content

Commit 97c46c7

Browse files
committed
Fix STEAMID Selector #59
1 parent 0dc3248 commit 97c46c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addons/sourcemod/scripting/hextags.sp

+1-1
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,7 @@ bool CheckSelector(const char[] selector, int client)
852852
}
853853

854854
/* CHECK STEAMID */
855-
if(strlen(selector) > 11 && StrContains(selector, "STEAM_", true))
855+
if(strlen(selector) > 11 && StrContains(selector, "STEAM_", true) == 0)
856856
{
857857
char steamid[32];
858858
if (!GetClientAuthId(client, AuthId_Steam2, steamid, sizeof(steamid)))

0 commit comments

Comments
 (0)