We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76a9cf0 commit 3473002Copy full SHA for 3473002
1 file changed
src/main/java/com/sk89q/craftbook/mechanics/ic/gates/world/blocks/CombineHarvester.java
@@ -86,6 +86,8 @@ public boolean harvestable(Block block) {
86
case COCOA:
87
Ageable ageable = (Ageable) block.getBlockData();
88
return ageable.getAge() == ageable.getMaximumAge();
89
+ case CACTUS_FLOWER:
90
+ return below == Material.CACTUS;
91
case CACTUS:
92
return below == Material.CACTUS && above != Material.CACTUS;
93
case SUGAR_CANE:
0 commit comments