mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-03 18:26:24 +02:00
Track these IF they're somehow full-grown when placed.
This commit is contained in:
parent
9463e210b8
commit
6772f4f169
@ -56,6 +56,17 @@ public final class BlockUtils {
|
|||||||
case EMERALD_ORE:
|
case EMERALD_ORE:
|
||||||
return true;
|
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:
|
default:
|
||||||
return ModUtils.getCustomBlock(blockState) != null;
|
return ModUtils.getCustomBlock(blockState) != null;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user