File Details
ContentCreator-1.3.92.jar
- R
- Dec 30, 2024
- 298.81 KB
- 74.4K
- 1.12.2+1
- Forge
File Name
ContentCreator-1.3.92.jar
Supported Versions
- 1.12.2
- 1.12
Curse Maven Snippet
Commissioned by xkforce/penteractgaming
Added Blocks:
-Pumpkin/Stem crops
-2-block tall crops
-Crops that require a certain block next to them
-Tall crops that require a certain block next to them
Constructors:
GenericBlock.createStem(String name, String cropBlockId, int cropBlockMeta).register();
GenericBlock.createCropRestrictedByBlock(String name, String cropId, String blockId, int cropMeta, int blockMeta, int cropMinDrop, int cropMaxDrop).register();
GenericBlock.createCropRestrictedByOreDictionary(String name, String cropId, String oreDict, int cropMeta, int cropMinDrop, int cropMaxDrop).register();
GenericBlock.createCropTall(String name, String cropId, int meta, int cropMinDrop, int cropMaxDrop).register();
GenericBlock.createCropTallRestrictedByBlock(String name, String cropId, String blockId, int cropMeta, int blockMeta, int cropMinDrop, int cropMaxDrop).register();
GenericBlock.createCropTallRestrictedByOreDictionary(String name, String cropId, String oreDict, int cropMeta, int cropMinDrop, int cropMaxDrop).register();

