Move config files into own dir
This commit is contained in:
parent
ee05dd5cb5
commit
82043cadc4
2 changed files with 7 additions and 6 deletions
|
@ -70,12 +70,13 @@ public class Core {
|
|||
FMLCommonHandler.instance().bus().register(this);
|
||||
MinecraftForge.EVENT_BUS.register(this);
|
||||
|
||||
String path = event.getSuggestedConfigurationFile().getAbsolutePath().replace(ModInfo.MOD_ID, "TechReborn");
|
||||
|
||||
config = ConfigTechReborn.initialize(new File(path));
|
||||
configDir = event.getModConfigurationDirectory();
|
||||
configDir = new File(event.getModConfigurationDirectory(), "techreborn");
|
||||
if(!configDir.exists()){
|
||||
configDir.mkdir();
|
||||
}
|
||||
config = ConfigTechReborn.initialize(new File(configDir, "main.cfg"));
|
||||
worldGen = new TechRebornWorldGen();
|
||||
worldGen.configFile = (new File(event.getModConfigurationDirectory(), "techrebornOres.json"));
|
||||
worldGen.configFile = (new File(configDir, "ores.json"));
|
||||
|
||||
recipeCompact = new RecipeCompact();
|
||||
TechRebornAPI.recipeCompact = recipeCompact;
|
||||
|
|
|
@ -83,7 +83,7 @@ public class RecipeCompact implements IRecipeCompact {
|
|||
}
|
||||
|
||||
public void saveMissingItems(File mcDir) throws IOException {
|
||||
File missingItemsFile = new File(mcDir, "TechRebornMissingItems.txt");
|
||||
File missingItemsFile = new File(mcDir, "missingItems.txt");
|
||||
if(missingItemsFile.exists()){
|
||||
missingItemsFile.delete();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue