Loading

Paste #pjhkz0ndn

  1.             /* Multiplayer buttons. */
  2.             if (!_networking) {
  3.                 if (_settings_client.gui.start_spectator || _local_company == COMPANY_SPECTATOR) {
  4.                     if (_local_company == COMPANY_SPECTATOR) {
  5.                         plane = CWP_MP_C_JOIN;
  6.                     } else {
  7.                         plane = (int)SZSP_NONE;
  8.                     }
  9.                 } else {
  10.                     plane = (int)SZSP_NONE;
  11.                 }
  12.             } else {
  13.                 if (local) {
  14.                     plane = CWP_MP_C_PWD;
  15.                 } else {
  16.                     plane = CWP_MP_C_JOIN;
  17.                 }
  18.             }
  19. //          plane = ((!_networking) ? (_settings_client.gui.start_spectator || _local_company == COMPANY_SPECTATOR) ? (_local_company == COMPANY_SPECTATOR) ? CWP_MP_C_JOIN : (int)SZSP_NONE : (int)SZSP_NONE : (int)(local ? CWP_MP_C_PWD : CWP_MP_C_JOIN));

Comments