*** empty log message ***

This commit is contained in:
Matthew Randall 2002-09-29 04:49:07 +00:00
parent 53cf799578
commit f4fb6546ff
3 changed files with 26 additions and 11 deletions

View file

@ -81,18 +81,26 @@ void cHTMLTemplate::Process( void )
// Get all Network Connections
Network->PushConn();
cSocket *tSock = NULL;
CChar *tChar = NULL;
for( tSock = Network->FirstSocket(); !Network->FinishedSockets(); tSock = Network->NextSocket() )
{
CChar *tChar = tSock->CurrcharObj();
if( tChar == NULL )
continue;
if( tChar->IsGM() )
gm++;
else if( tChar->IsCounselor() )
cns++;
else
ccount++;
tChar = tSock->CurrcharObj();
try
{
if( tChar == NULL )
continue;
if( tChar->IsGM() )
gm++;
else if( tChar->IsCounselor() )
cns++;
else
ccount++;
}
catch(...)
{
continue;
}
}
Network->PopConn();