Applied patch for bug at18341 (jtp10181)

This commit is contained in:
David Anderson 2005-09-02 02:46:42 +00:00
parent 8c17be27dd
commit 6bcb72952c

View File

@ -454,3 +454,10 @@ public ackSignal(id) {
public client_authorized(id)
return get_cvar_num( "amx_mode" ) ? accessUser( id ) : PLUGIN_CONTINUE
public client_putinserver(id)
{
if (!is_dedicated_server() && id == 1)
return get_cvar_num("amx_mode") ? accessUser(id) : PLUGIN_CONTINUE
return PLUGIN_CONTINUE
}