Ore Stages Reborn
This mod is an updated version of the original development, created because the authors of the initial project did not release a compatible port that was needed by the community.
The modification provides functionality for hiding certain blocks, such as ores, and gradually revealing them as game stages progress.
Usage Examples
Here's how to set up stages for blocks:
import mods.orestages.OreStages;
OreStages.addOreStage("test", <blockstate:minecraft:grass_block:snowy=false>);
OreStages.addOreStage("test", <blockstate:minecraft:grass_block:snowy=false>, <blockstate:minecraft:diamond_block>);
Available Methods
Use the following functions to work with the mod:
import mods.orestages.OreStages;
OreStages.addOreStage(String stage, BlockState block)
OreStages.addOreStage(String stage, BlockState blockState, BlockState replaceBlock)
OreStages.addOreStage(String stage, BlockState block, boolean explosion)
OreStages.addOreStage(String stage, BlockState block, BlockState replaceBlock, boolean explosion)