Examples of informStatusApplied()


Examples of org.pokenet.server.battle.mechanics.statuses.StatusListener.informStatusApplied()

      for (int i = 0; i < size; ++i) {
        StatusEffect j = m_statuses.get(i);
        if (j.isActive() && (j instanceof StatusListener)) {
          StatusListener k = (StatusListener) j;
          if (applied) {
            k.informStatusApplied(source, this, eff);
          } else {
            k.informStatusRemoved(this, eff);
          }
        }
      }
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.