Cacti & Sugar Cane are an exception, because the bottom block is

normally player-placed but the top two are grown naturally.
This commit is contained in:
GJ 2013-03-08 08:53:54 -05:00
parent 4bddbbf56e
commit e31b7d5c48

View File

@ -113,11 +113,12 @@ public class HerbalismManager extends SkillManager {
* @param blockState The {@link BlockState} to check ability activation for * @param blockState The {@link BlockState} to check ability activation for
*/ */
public void herbalismBlockCheck(BlockState blockState) { public void herbalismBlockCheck(BlockState blockState) {
if (mcMMO.placeStore.isTrue(blockState)) { Material material = blockState.getType();
if (mcMMO.placeStore.isTrue(blockState) && (material != Material.CACTUS || material != Material.SUGAR_CANE_BLOCK)) {
return; return;
} }
Material material = blockState.getType();
HerbalismBlock herbalismBlock = HerbalismBlock.getHerbalismBlock(material); HerbalismBlock herbalismBlock = HerbalismBlock.getHerbalismBlock(material);
ItemStack drop = null; ItemStack drop = null;
int amount = 1; int amount = 1;