Package nallar.tickthreading.minecraft.tickregion

Examples of nallar.tickthreading.minecraft.tickregion.TickRegion.onRemove()


    while ((tickRegion = removalQueue.poll()) != null) {
      if (tickRegion.isEmpty()) {
        synchronized (tickRegions) {
          if ((tickRegion instanceof EntityTickRegion ? entityCallables.remove(tickRegion.hashCode) : tileEntityCallables.remove(tickRegion.hashCode)) == tickRegion) {
            tickRegions.remove(tickRegion);
            tickRegion.onRemove();
          }
        }
      }
    }
  }
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.