Jump to content

CONFIGS!!


Nexus-Dino

Recommended Posts

My Config values are always null for some reason. Here's the screenshot.

public class OresConfig {
	@Nonnull
	public static ForgeConfigSpec.IntValue GARMET_OVERWORLD_VEINSIZE;
	@Nonnull
	public static ForgeConfigSpec.IntValue GARMET_DEEPSLATE_VEINSIZE;

	public static void registerOreConfig(ForgeConfigSpec.Builder builder) {
		builder.comment("Configuration for Ores").push("ores");

		GARMET_OVERWORLD_VEINSIZE = builder.comment("Max Vein Size for Garmet Ore").defineInRange("maxVeinSize",
				() -> 5, 2, 50);
		GARMET_DEEPSLATE_VEINSIZE = builder.comment("Max Vein Size for Garmet Ore").defineInRange("maxVeinSize",
				() -> 9, 2, 30);
		
		builder.build();
	}
}

 

Link to comment
Share on other sites

public final class ModConfiguredFeatures {

	public static final List<OreConfiguration.TargetBlockState> ORE_GARMET_TARGET_LIST = ImmutableList.of(
			OreConfiguration.target(OreFeatures.STONE_ORE_REPLACEABLES, BlockInit.GARMET_ORE.get().defaultBlockState()),
			OreConfiguration.target(OreFeatures.DEEPSLATE_ORE_REPLACEABLES,
					BlockInit.DEEPSLATE_GARMET_ORE.get().defaultBlockState()));

	public static final Holder<ConfiguredFeature<OreConfiguration, ?>> ORE_GARMET = FeatureUtils.register("ore_garmet",
			Feature.ORE, new OreConfiguration(ORE_GARMET_TARGET_LIST, OresConfig.GARMET_OVERWORLD_VEINSIZE.get()));

	private ModConfiguredFeatures() {
	}
}

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.