Examples of BleedingMobs


Examples of me.snowleo.bleedingmobs.BleedingMobs

    availableFilters.add(new BlacklistFilter("BleedingMobs") {
      @Override
      @SuppressWarnings("deprecation")
      public boolean isFiltered(Entity element) {
        if (element instanceof Item) {
          BleedingMobs bm = (BleedingMobs) this.getPlugin();
          if (bm.isSpawning() || (bm.isWorldEnabled(element.getWorld()) && bm.isParticleItem(element.getUniqueId()))) {
            return true;
          }
        }
        return false;
      }
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.