Nerfing overpowered Herbalism double drops for melons and netherwart.

This commit is contained in:
Glitchfinder
2012-11-12 19:10:14 -08:00
parent a56f805787
commit 4a52135a0b
2 changed files with 3 additions and 6 deletions

View File

@ -217,7 +217,7 @@ public class Misc {
* @param is The item to drop
* @param chance The percentage chance for the item to drop
*/
public static void randomDropItem(Location location, ItemStack is, double chance) {
public static void randomDropItem(Location location, ItemStack is, int chance) {
if (random.nextInt(100) < chance) {
dropItem(location, is);
}