File diff r15612:c4c9adbab3f3 → r15613:193c12018337
src/network/network_server.cpp
Show inline comments
 
@@ -1770,13 +1770,13 @@ void NetworkServerUpdateCompanyPassworde
 

	
 
/**
 
 * Handle the tid-bits of moving a client from one company to another.
 
 * @param client_id id of the client we want to move.
 
 * @param company_id id of the company we want to move the client to.
 
 * @return void
 
 **/
 
 */
 
void NetworkServerDoMove(ClientID client_id, CompanyID company_id)
 
{
 
	/* Only allow non-dedicated servers and normal clients to be moved */
 
	if (client_id == CLIENT_ID_SERVER && _network_dedicated) return;
 

	
 
	NetworkClientInfo *ci = NetworkFindClientInfoFromClientID(client_id);