Track these IF they're somehow full-grown when placed.

This commit is contained in:
GJ 2013-04-04 08:02:45 -04:00
parent 9463e210b8
commit 6772f4f169

View File

@ -56,6 +56,17 @@ public final class BlockUtils {
case EMERALD_ORE:
return true;
case CARROT:
case CROPS:
case POTATO:
return blockState.getRawData() == CropState.RIPE.getData();
case NETHER_WARTS:
return blockState.getRawData() == (byte) 0x3;
case COCOA:
return ((CocoaPlant) blockState.getData()).getSize() == CocoaPlantSize.LARGE;
default:
return ModUtils.getCustomBlock(blockState) != null;
}