Package nallar.tickthreading.minecraft.tickregion

Examples of nallar.tickthreading.minecraft.tickregion.TileEntityTickRegion.dump()


  public TableFormatter writeRegionDetails(final TableFormatter tf, final int hashCode) {
    int x = 0;
    int z = 0;
    TileEntityTickRegion tileEntityTickRegion = getTileEntityRegion(hashCode);
    if (tileEntityTickRegion != null) {
      tileEntityTickRegion.dump(tf);
      x = tileEntityTickRegion.regionX;
      z = tileEntityTickRegion.regionZ;
    }
    EntityTickRegion entityTickRegion = getEntityRegion(hashCode);
    if (entityTickRegion != null) {
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.