[wpdev-commits] wolfpack/network uosocket.cpp,1.286,1.287
Brought to you by:
rip,
thiagocorrea
|
From: <dar...@us...> - 2003-09-13 13:08:45
|
Update of /cvsroot/wpdev/wolfpack/network In directory sc8-pr-cvs1:/tmp/cvs-serv24411/network Modified Files: uosocket.cpp Log Message: Fixed a release inlining and shutdown bug. Index: uosocket.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/network/uosocket.cpp,v retrieving revision 1.286 retrieving revision 1.287 diff -C2 -d -r1.286 -r1.287 *** uosocket.cpp 11 Sep 2003 16:19:50 -0000 1.286 --- uosocket.cpp 13 Sep 2003 13:08:41 -0000 1.287 *************** *** 1295,1301 **** // of the speech is = then it's always a command if( ( _player->bodyID() == 0x3DB ) && speech.startsWith( SrvParams->commandPrefix() ) ) ! cCommands::instance()->process( this, speech.right( speech.length()-1 ) ); else if( speech.startsWith( SrvParams->commandPrefix() ) ) ! cCommands::instance()->process( this, speech.right( speech.length()-1 ) ); else Speech->talking( _player, packet->language(), speech, keywords, color, font, type ); --- 1295,1301 ---- // of the speech is = then it's always a command if( ( _player->bodyID() == 0x3DB ) && speech.startsWith( SrvParams->commandPrefix() ) ) ! Commands::instance()->process( this, speech.right( speech.length()-1 ) ); else if( speech.startsWith( SrvParams->commandPrefix() ) ) ! Commands::instance()->process( this, speech.right( speech.length()-1 ) ); else Speech->talking( _player, packet->language(), speech, keywords, color, font, type ); |