Examples of finishTable()


Examples of nallar.tickthreading.util.TableFormatter.finishTable()

        .row(statsHolder.entities)
        .row(statsHolder.tileEntities)
        .row(statsHolder.chunks)
        .row(MinecraftServer.getServerConfigurationManager(MinecraftServer.getServer()).getCurrentPlayerCount())
        .row(TableFormatter.formatDoubleWithPrecision((MinecraftServer.getTickTime() * 100) / MinecraftServer.getTargetTickTime(), 2) + '%');
    tf.finishTable();
    tf.sb.append('\n').append(getTPSString(commandSender instanceof EntityPlayer));
    sendChat(commandSender, tf.toString());
  }

  private static final int tpsWidth = 40;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.