src/console_cmds.cpp
branchnoai
changeset 9629 66dde6412125
parent 9628 b5c2449616b5
child 9694 e72987579514
equal deleted inserted replaced
9628:b5c2449616b5 9629:66dde6412125
  1246 		if (!p->is_active) continue;
  1246 		if (!p->is_active) continue;
  1247 
  1247 
  1248 		const NetworkPlayerInfo *npi = &_network_player_info[p->index];
  1248 		const NetworkPlayerInfo *npi = &_network_player_info[p->index];
  1249 
  1249 
  1250 		GetString(buffer, STR_00D1_DARK_BLUE + _player_colors[p->index], lastof(buffer));
  1250 		GetString(buffer, STR_00D1_DARK_BLUE + _player_colors[p->index], lastof(buffer));
  1251 		IConsolePrintF(8, "#:%d(%s) Company Name: '%s'  Year Founded: %d  Money: %d  Loan: %d  Value: %" OTTD_PRINTF64 "d  (T:%d, R:%d, P:%d, S:%d) %sprotected",
  1251 		IConsolePrintF(8, "#:%d(%s) Company Name: '%s'  Year Founded: %d  Money: %" OTTD_PRINTF64 "d  Loan: %" OTTD_PRINTF64 "d  Value: %" OTTD_PRINTF64 "d  (T:%d, R:%d, P:%d, S:%d) %sprotected",
  1252 			p->index + 1, buffer, npi->company_name, p->inaugurated_year, p->player_money, p->current_loan, CalculateCompanyValue(p),
  1252 			p->index + 1, buffer, npi->company_name, p->inaugurated_year, p->player_money, p->current_loan, CalculateCompanyValue(p),
  1253 			/* trains      */ npi->num_vehicle[0],
  1253 			/* trains      */ npi->num_vehicle[0],
  1254 			/* lorry + bus */ npi->num_vehicle[1] + npi->num_vehicle[2],
  1254 			/* lorry + bus */ npi->num_vehicle[1] + npi->num_vehicle[2],
  1255 			/* planes      */ npi->num_vehicle[3],
  1255 			/* planes      */ npi->num_vehicle[3],
  1256 			/* ships       */ npi->num_vehicle[4],
  1256 			/* ships       */ npi->num_vehicle[4],