Package us.deathmarine.diablodrops.events

Examples of us.deathmarine.diablodrops.events.EntitySpawnWithItemEvent


        }
        if (ci != null) {
          items.add(ci);
        }
      }
      EntitySpawnWithItemEvent eswi = new EntitySpawnWithItemEvent(
          entity, items);
      plugin.getServer().getPluginManager().callEvent(eswi);
      if (eswi.isCancelled())
        return;

      for (ItemStack cis : eswi.getItems()) {
        if (cis != null) {
          float dropChance = 2.0F;
          if (true) {
            Tier tier = plugin.getDropAPI().getTier(cis);
            if (tier != null)
View Full Code Here

TOP

Related Classes of us.deathmarine.diablodrops.events.EntitySpawnWithItemEvent

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.