/** Adds the server info, including from theWorldServer, to the crash report. */
  public CrashReport addServerInfoToCrashReport(CrashReport par1CrashReport) {
    par1CrashReport
        .func_85056_g()
        .addCrashSectionCallable("Profiler Position", new CallableIsServerModded(this));

    if (this.worldServers != null && this.worldServers.length > 0 && this.worldServers[0] != null) {
      par1CrashReport
          .func_85056_g()
          .addCrashSectionCallable("Vec3 Pool Size", new CallableServerProfiler(this));
    }

    if (this.serverConfigManager != null) {
      par1CrashReport
          .func_85056_g()
          .addCrashSectionCallable("Player Count", new CallableServerMemoryStats(this));
    }

    return par1CrashReport;
  }