Examples of FixedDrop


Examples of org.spout.vanilla.data.drops.type.FixedDrop

  public RandomDrop add(Material dropMaterial, int... amount) {
    return add(new RandomDrop(dropMaterial, amount));
  }

  public FixedDrop add(Material dropMaterial) {
    return add(new FixedDrop(dropMaterial, 1));
  }
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.