Examples of onDetached()


Examples of com.bergerkiller.bukkit.common.controller.EntityNetworkController.onDetached()

    if (storedEntry instanceof NMSEntityTrackerEntry) {
      final EntityNetworkController oldController = ((NMSEntityTrackerEntry) storedEntry).getController();
      if (oldController == controller) {
        return;
      } else if (oldController != null) {
        oldController.onDetached();
      }
    }

    // Take care of null controllers - stop tracking
    if (controller == 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.