*** chat.cpp	2012-08-19 23:11:18.000000000 +0300
--- newchat.cpp	2013-06-15 21:17:03.222546098 +0300
***************
*** 799,804 ****
--- 799,822 ----
  		chat_SendMessage( CHATMODE_TEAM, ChatString.GetChars( ));
  	}
  }
+ //*****************************************************************************
+ //
+ 
+ CCMD(say_log)
+ {
+ 	ULONG		ulIdx;
+ 	FString		ChatString;
+ 
+ 	if (!argv.argc() < 2)
+ 	{
+ 		for ( ulIdx = 1; ulIdx <static_cast<unsigned int>(argv.argc( )); ulIdx++ )
+ 			ChatString.AppendFormat( "%s ", argv[ulIdx] );
+ 
+ 		// Send the server's chat string out to clients, and print it in the console.
+ 		if ( NETWORK_GetState() == NETSTATE_SERVER)
+ 			SERVER_Printf(PRINT_HIGH, "%s\\c-\n", ChatString.GetChars());
+ 	}
+ }
  
//*****************************************************************************
//