Silent Gear

Silent Gear

19M Downloads

double_crimson_iron_ore configuredfeature isn't registered

TelepathicGrunt opened this issue ยท 0 comments

commented

Hello! I found with my mod Blame that there is a crimson iron ore configuredfeature in silent gear that isn't registered https://hatebin.com/fqqjehthvi

I took a quick look and it seems it's this configuredfeature. Just slap it into registerConfiguredFeatures method below and problem solved. Nothing too crazy lol

public static final Lazy<ConfiguredFeature<?, ?>> DOUBLE_CRIMSON_IRON_ORE_VEINS = Lazy.of(() -> Feature.ORE
.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.BASE_STONE_NETHER, ModBlocks.CRIMSON_IRON_ORE.asBlockState(), 8))
.withPlacement(Placement.RANGE.configure(topSolidRange(24, 120)))
.square()
.func_242731_b(2 * Config.Common.crimsonIronCount.get()));