Skip to content

Commit

Permalink
Update proxysnort.sma
Browse files Browse the repository at this point in the history
Line 133. Mods outside of HL like DOD need to be set to connected instead of alive.
krisztian2 discovered. Profile:https://forums.alliedmods.net/member.php?u=290611
  • Loading branch information
djearthquake committed Nov 25, 2021
1 parent c4e8c9b commit b9b2dd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripting/valve/proxysnort.sma
Expand Up @@ -130,7 +130,7 @@ public client_putinserver(id)
if(is_user_bot(id) || is_user_hltv(id))
return PLUGIN_HANDLED_MAIN

if(is_user_alive(id) && !is_user_bot(id) && id > 0 && !is_user_connecting(id))
if(is_user_connected(id) && !is_user_bot(id) && id > 0 && !is_user_connecting(id))
{
g_has_been_checked[id] = false
get_user_ip( id, ip, charsmax( ip ), WITHOUT_PORT );
Expand Down

0 comments on commit b9b2dd1

Please sign in to comment.