Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
Addendum: Merge shared configs options with EndMetals and move them to the central MMDLib config.

*Metals family wide bug-fixes and updates. No longer requires BaseMetals - only MMDLib and MMD OreSpawn.
8 changes: 0 additions & 8 deletions src/main/java/com/mcmoddev/nethermetals/util/NMeConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ public final class NMeConfig extends com.mcmoddev.lib.util.Config {
private static Configuration configuration;
private static final String CONFIG_FILE = "config/NetherMetals.cfg";
private static final String NETHERORE = "Nether Ores";
private static final String GENERAL = "General";

/**
*
Expand All @@ -42,18 +41,11 @@ public static void init() {
}

// General
Options.thingEnabled("enableFurnaceSmelting", configuration
.getBoolean("enableFurnaceSmelting", GENERAL, true, "Enable Furnace Smelting"));
Options.explosionChance(configuration.get("mean", "OreExplosionChance", 2,
"Explosion Percentage Chance\nSet to 0 to not explode").getInt());
Options.angerPigmenRange(configuration
.get("mean", "PigmenAngerRange", 20, "Anger Pigmen Range\nRequires PigmenAnger")
.getInt());
Options.thingEnabled("smeltToIngots", configuration.getBoolean("smeltToIngots", GENERAL,
false,
"By default nether ores smelt to 2 standard ores - with this option you get 2 ingots"));
Options.thingEnabled("makeDusts", configuration.getBoolean("makeDusts", GENERAL, false,
"Normally hitting a Nether Ore with a Crackhammer gives you 2 normal ores. With this option you get 4 dusts"));

// Nether Ores
Options.materialEnabled("enableCoalNetherOre", configuration
Expand Down