Package org.spoutcraft.client

Examples of org.spoutcraft.client.TileEntityComparator


      // Spout Start
      int max = tileEntities.size();
      int threshold = (int) Math.min(1000, (Math.max(100, (SpoutWorth.getInstance().getAverageFPS() * 8))));
      if (tileEntities.size() > threshold) {
        Collections.sort((List<TileEntity>)tileEntities, new TileEntityComparator());
        max = threshold / 2;
      }
      Iterator var8 = this.tileEntities.iterator();

      int i = 0;
View Full Code Here

TOP

Related Classes of org.spoutcraft.client.TileEntityComparator

Copyright © 2018 www.massapicom. 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.