@@ -47,7 +47,7 @@ public class OreSpawn
4747 public static final String NAME ="Ore Spawn" ;
4848 /** Version number, in Major.Minor.Build format. The minor number is increased whenever a change
4949 * is made that has the potential to break compatibility with other mods that depend on this one. */
50- public static final String VERSION = "1.0.1 " ;
50+ public static final String VERSION = "1.0.2 " ;
5151
5252 /** All ore-spawn files discovered in the ore-spawn folder */
5353 public static final List <Path > oreSpawnConfigFiles = new LinkedList <>();
@@ -60,7 +60,7 @@ public class OreSpawn
6060 /** Ignores other mods telling this mod not to generate ore */
6161 public static boolean forceOreGen = false ;
6262 /** Ignore non-existant blocks instead of erroring */
63- public static boolean ignoreNonExistant = false ;
63+ public static boolean ignoreNonExistant = true ;
6464 /** location of ore-spawn files */
6565 public static Path oreSpawnFolder = null ;
6666
@@ -78,10 +78,10 @@ public void preInit(FMLPreInitializationEvent event)
7878 "If true, then default Minecraft ore generation will be handled exclusively by orespawn .json files \n "
7979 + "(vanilla ore generation will be disabled)" );
8080
81- forceOreGen = config .getBoolean ("force_ore_generation" , "options" , forceOreGen ,
81+ forceOreGen = config .getBoolean ("force_ore_generation" , "options" , forceOreGen ,
8282 "If true, then ore generation cannot be disabled by other mods." );
8383
84- forceOreGen = config .getBoolean ("ignore_nonexistant_blocks " , "options" , forceOreGen ,
84+ ignoreNonExistant = config .getBoolean ("ignore_missing_blocks " , "options" , ignoreNonExistant ,
8585 "If true, then references to non-existant blocks in the .json files will be ingored without causing an error." );
8686
8787
0 commit comments