Merge pull request #279 from mcunha/fix-mossied-cobblestone

Don't award double drops to mossified cobblestone
This commit is contained in:
Grant 2012-10-29 10:25:07 -07:00
commit efc0edf3ef

View File

@ -62,6 +62,8 @@ public class Herbalism {
}
else if (Config.getInstance().getHerbalismGreenThumbCobbleToMossy() && type == Material.COBBLESTONE) {
block.setType(Material.MOSSY_COBBLESTONE);
// Don't award double drops to mossified cobblestone
mcMMO.placeStore.setTrue(block);
}
}
}