Package org.spout.vanilla.event.entity.network

Examples of org.spout.vanilla.event.entity.network.EntityRemoveEffectEvent


    if (!contains(type)) {
      return;
    }

    // send the update
    player.getNetwork().callProtocolEvent(new EntityRemoveEffectEvent(player, type));

    // look up the effect with this type and remove it
    Iterator<EntityEffect> i = effects.iterator();
    while (i.hasNext()) {
      if (i.next().getType() == type) {
View Full Code Here

TOP

Related Classes of org.spout.vanilla.event.entity.network.EntityRemoveEffectEvent

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.