Jump to content

[SOLVED] [1.15.2] Saving and Loading data per world


Roxane

Recommended Posts

Hi there,

 

For my mod I want an inventory like an Ender Chest that is shared between all players. Whereever anyone is accessing this inventory it is the same.

In previous versions I did this by saving a "per world inventory" NBT to the world save file. Aditionally I want to save all positions of these "chests", so I always know where they are.

 

With saving the data I have some Issues:

1) My onWorldLoaded and onWorldSaved events do not get called, even though I registered them in my mod's constructor. (The onClientSetupEvent gets called, so I assume the basic setup is ok).

2) How do I store my NBT data to the world save file? In previous versions I used a class extending WorldSavedData. I looked at https://mcforge.readthedocs.io/en/latest/datastorage/worldsaveddata/. But I can't figure out why

MapStorage storage = world.getMapStorage();

does not work. It seems neither MapStorage nor getMapStorage() exist...

3) May be related to Problem 1): The WorldEvent.Load::getWorld only returns an IWorld. My old MySavedData::forWorld required a World. Is that a problem at all? If yes, where do I get my World from?

 

This is my main mod class (For demonstration purposes I stripped all unnecessary stuff like Blocks and Items, they are working fine):

package de.tetopia.question;

import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent;
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.world.World;
import net.minecraftforge.event.world.WorldEvent;
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

// The value here should match an entry in the META-INF/mods.toml file
@Mod(ModQuestion.MODID)
public class ModQuestion
{
    public static final String MODID = "questionmod";
	private static final Logger LOGGER = LogManager.getLogger();

    public ModQuestion() 
    {
    	FMLJavaModLoadingContext.get().getModEventBus().addListener(this::onClientSetupEvent);
    	FMLJavaModLoadingContext.get().getModEventBus().addListener(this::onWorldLoaded);
    	FMLJavaModLoadingContext.get().getModEventBus().addListener(this::onWorldSaved);
    }
    
    private void onClientSetupEvent(final FMLClientSetupEvent event) 
    {
    	LOGGER.debug("Hello from the Client Setup!");
    }
    
	public void onWorldLoaded(WorldEvent.Load event)
	{
		LOGGER.debug("Hello from World Loading!");
		
		World world = null; //Where do I get my world from? event.getWorld() returns an IWorld
		if (!world.isRemote()) 
		{
			//Get the data from the world save file
			CompoundNBT tag = new CompoundNBT();
			
			CompoundNBT tagCompound = new CompoundNBT();
			MySavedData saver = MySavedData.forWorld(world);
			tag = saver.data;
			
			if(tagCompound.contains("MyTagName"))
			{
				//Do Stuff with the data
			}
		}
	}
	
	public void onWorldSaved(WorldEvent.Save event)
	{
		LOGGER.debug("Hello from World Saving!");
		
		World world = null; //Where do I get my world from? event.getWorld() returns an IWorld
		
		if (!world.isRemote())
		{
			CompoundNBT dataToSave = new CompoundNBT();
			
			//Store some data in dataToSave
			//dataToSave.put("MyTagName", ...);
					
			MySavedData saver = MySavedData.forWorld(world);
			saver.data = dataToSave;
			saver.markDirty();
		}
	}
}

 

And this is my custom WorldSavedData class:

package de.tetopia.question;

import net.minecraft.nbt.CompoundNBT;
import net.minecraft.world.World;
import net.minecraft.world.storage.WorldSavedData;

public class MySavedData extends WorldSavedData
{
	public CompoundNBT data = new CompoundNBT();
	
	public MySavedData()
	{
		super(ModQuestion.MODID);
	}
	
	public MySavedData(String name)
	{
		super(name);
	}

	@Override
	public void read(CompoundNBT nbt)
	{
		data = nbt.getCompound("MyTagName");
	}

	@Override
	public CompoundNBT write(CompoundNBT nbt)
	{
		nbt.put("MyTagName", data);
		return nbt;
	}
	
	public static MySavedData forWorld(World world)
	{
		MapStorage storage = world.getMapStorage(); //PROBLEM: What is the 1.15 way of doing this?
		MySavedData saver = (MySavedData) storage.getOrLoadData(MySavedData.class, ModQuestion.MODID);

		if (saver == null) 
		{
			saver = new MySavedData();
			storage.setData(ModQuestion.MODID, saver);
		}
		return saver;
	}
}

 

Edited by Roxane
Solved Issue
Link to comment
Share on other sites

7 minutes ago, Roxane said:

FMLJavaModLoadingContext.get().getModEventBus().addListener(this::onWorldLoaded); FMLJavaModLoadingContext.get().getModEventBus().addListener(this::onWorldSaved);

The WorldEvent.Load and WorldEvent.Save do not fire on the mod event bus. They instead fire on the MinecraftForge.EVENT_BUS. The mod event bus is only for life-cycle events such as FMLCommonSetupEvent.

 

10 minutes ago, Roxane said:

But I can't figure out why

It seems to have been renamed to World::getMapData or ServerWorld::getSavedData()::getOrCreate

 

At the moment I'm not fully aware of how the WorldSavedData system has changed, however you can use a Capability that is attached to the World.

13 minutes ago, Roxane said:

If yes, where do I get my World from?

instanceof and cast.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

21 minutes ago, Animefan8888 said:

The WorldEvent.Load and WorldEvent.Save do not fire on the mod event bus. They instead fire on the MinecraftForge.EVENT_BUS. The mod event bus is only for life-cycle events such as FMLCommonSetupEvent.

Thanks! Calling "MinecraftForge.EVENT_BUS.addListener(this::onWorldLoaded);" did the trick ?

 

21 minutes ago, Animefan8888 said:

It seems to have been renamed to World::getMapData or ServerWorld::getSavedData()::getOrCreate

Hmm... I can't find the World::getMapData. And ServerWorld::getSavedData()::getOrCreate want's a Supplier <T> as parameter. Where do I get that from?

 

21 minutes ago, Animefan8888 said:

however you can use a Capability that is attached to the World.

Thanks for that tip, I'll look into that direction.

 

 

 

Edited by Roxane
Link to comment
Share on other sites

2 minutes ago, Roxane said:

Where do I get that from?

You create one. A Supplier is just a functional interface that returns an instance of type T. In this case I believe it would be an instance of your WorldSavedData class.

 

3 minutes ago, Roxane said:

Is it only the Capability you mentioned? Or is there something else?

It's the only forge provided way of doing it yes. There's three ways to do this. WorldSavedData(which has apparently changed a little bit), Capabilities(which to my knowledge are still the same as when they were first introduced), and of course you can write the file to disk yourself(not really the best option because the first two already exist).

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

Thank you very much! With your Information I could get it to work ?

 

For anybody interested, this is my code now.

Mod class:

import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent;
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.world.server.ServerWorld;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.world.WorldEvent;
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

// The value here should match an entry in the META-INF/mods.toml file
@Mod(ModQuestion.MODID)
public class ModQuestion
{
    public static final String MODID = "questionmod";
	private static final Logger LOGGER = LogManager.getLogger();

    public ModQuestion() 
    {
    	FMLJavaModLoadingContext.get().getModEventBus().addListener(this::onClientSetupEvent);
    	MinecraftForge.EVENT_BUS.addListener(this::onWorldLoaded);
    	MinecraftForge.EVENT_BUS.addListener(this::onWorldSaved);
    }
    
    private void onClientSetupEvent(final FMLClientSetupEvent event) 
    {
    	//LOGGER.debug("Hello from the Client Setup!");
    }
    
	public void onWorldLoaded(WorldEvent.Load event)
	{
		if (!event.getWorld().isRemote() && event.getWorld() instanceof ServerWorld)
		{
			MySavedData saver = MySavedData.forWorld((ServerWorld) event.getWorld());
   			
			if(saver.data.contains("MyData"))
			{
				LOGGER.debug("Found my data: " + saver.data.get("MyData"));
				//Do whatever you want to do with the data
			}
		}
	}
	
	public void onWorldSaved(WorldEvent.Save event)
	{
		if (!event.getWorld().isRemote() && event.getWorld() instanceof ServerWorld)
		{
			MySavedData saver = MySavedData.forWorld((ServerWorld) event.getWorld());
			CompoundNBT myData = new CompoundNBT();
			myData.putInt("MyData", 0); //Put in whatever you want with myData.put
			saver.data = myData;
			saver.markDirty();
			LOGGER.debug("Put my data in!");
		}
	}
}

 

WorldSaverData class:

import java.util.function.Supplier;

import net.minecraft.nbt.CompoundNBT;
import net.minecraft.world.server.ServerWorld;
import net.minecraft.world.storage.DimensionSavedDataManager;
import net.minecraft.world.storage.WorldSavedData;

public class MySavedData extends WorldSavedData implements Supplier
{
	public CompoundNBT data = new CompoundNBT();
	
	public MySavedData()
	{
		super(ModQuestion.MODID);
	}
	
	public MySavedData(String name)
	{
		super(name);
	}

	@Override
	public void read(CompoundNBT nbt)
	{
		data = nbt.getCompound("MyCompound");
	}

	@Override
	public CompoundNBT write(CompoundNBT nbt)
	{
		nbt.put("MyCompound", data);
		return nbt;
	}
	
	public static MySavedData forWorld(ServerWorld world)
	{
		DimensionSavedDataManager storage = world.getSavedData();
		Supplier<MySavedData> sup = new MySavedData();
		MySavedData saver = (MySavedData) storage.getOrCreate(sup, ModQuestion.MODID);

		if (saver == null) 
		{
			saver = new MySavedData();
			storage.set(saver);
		}
		return saver;
	}
	
	@Override
	public Object get()
	{
		return this;
	}
}

 

  • Like 1
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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Corrected item registration code: (for the ModItems class) public static final RegistryObject<Item> LEMON_JUICE_BOTTLE = ITEMS.register("lemon_juice_bottle", () -> new HoneyBottleItem(new Item.Properties().stacksTo(1) .food((new FoodProperties.Builder()).nutrition(3).saturationMod(0.25F) .effect(() -> new MobEffectInstance(MobEffects.DAMAGE_RESISTANCE, 1500), 0.5f).build())));
    • Apologies for the late reply. You'll need to register the item in ModItems; if you're following those tutorials, that's the only place you should ever register items. Otherwise, the mod will fail to register them properly and you'll get all sorts of interesting errors. Looking back at the code snipped I posted, I think that actually has some errors. I'm adding a lemon juice bottle to my mod just to ensure that it works correctly, and I will reply when I have solved the problems.
    • I might have an idea why your original method was causing so much trouble. See this while loop? You're only incrementing the number of blocks you've corrupted if you find one that you can corrupt. What happens if you can't find any? The while loop will run forever (a long time). This could happen if, for instance, the feature generates inside a vein of blocks that aren't marked as STONE_ABERRANTABLE. There are two alternate strategies I'd recommend to fix this.  First, you could simply increment numBlockCorrupted regardless of whether you've actually corrupted the block. This is the simplest and quickest way, and it should ensure that the loop runs no more than numBlocksToCorrupt times.  Alternatively, you could add a "kill switch" that keeps track of how many times the loop runs, and then ends it after a certain limit of your choosing. That could look something like this:  // Keeps track of how many blocks have been checked so far. int numBlocksChecked = 0; // Check up to twice as many blocks as you actually want to corrupt. // This is a good compromise between speed and actually getting the number of blocks // that you want to corrupt. int numBlocksToCheck = numBlocksToCorrupt * 2; // Modified the while loop condition to end after a certain number of blocks are checked. while (numBlocksCorrupted < numBlocksToCorrupt && numBlocksChecked < numBlocksToCheck) {                 // Generate a random position within the area, using the offset origin                 BlockPos randomPos = offsetOrigin.offset(                         ctx.random().nextInt(2 * areaSizeX + 1) - areaSizeX, // between -areaSize and areaSize                         ctx.random().nextInt(2 * areaSizeY + 1) - areaSizeY,                         ctx.random().nextInt(2 * areaSizeZ + 1) - areaSizeZ                 );                 // If the block at the random position is in the IS_ORE_ABERRANTABLE tag, replace it                 if (world.getBlockState(randomPos).is(ModBlockTags.STONE_ABERRANTABLE)) {                     world.setBlock(randomPos, surroundingBlockState, 2);                     numBlocksCorrupted++;                 } // Increment the number of blocks that you've checked. numBlocksChecked++;             } Let me know if you're still running into lag problems or are confused by my explanation.
    • So I have been trying to open modded 1.12.2 minecraft but it crashes when it opens and it says Exit Code-1 Can somebody please help me. Here is the crash report:   --- Minecraft Crash Report ---- WARNING: coremods are present:   IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)   LibrarianLib Plugin (librarianlib-1.12.2-4.22.jar)   MixinLoader (viaforge-mc1122-3.6.0.jar)   McLib core mod (mclib-2.4.2-1.12.2.jar)   EFFLL (LiteLoader ObjectHolder fix) (ExtraFoamForLiteLoader-1.0.0.jar)   MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)   LogisticsPipesCoreLoader (logisticspipes-0.10.3.114.jar)   AppleCore (AppleCore-mc1.12.2-3.4.0.jar)   BiomeTweakerCore (BiomeTweakerCore-1.12.2-1.0.39.jar)   ObfuscatePlugin (obfuscate-0.4.2-1.12.2.jar)   Regeneration (Regeneration-3.0.3.jar)   UniDictCoreMod (UniDict-1.12.2-3.0.10.jar)   ReflectorsPlugin (EnderStorage-1.12.2-2.5.0.jar)   EntityCullingEarlyLoader (entityculling-1.12.2-1.6.3.jar)   Controllable (controllable-0.11.2-1.12.2.jar)   craftfallessentials (CraftfallEssentials-1.12.2-1.2.6.jar)   SecurityCraftLoadingPlugin ([1.12.2] SecurityCraft v1.9.9.jar)   LoadingPlugin (ResourceLoader-MC1.12.1-1.5.3.jar)   MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar)   pymtech (PymTech-1.12.2-1.0.2.jar)   IvToolkit (IvToolkit-1.3.3-1.12.jar)   JeiUtilitiesLoadingPlugin (JEI-Utilities-1.12.2-0.2.12.jar)   LoadingPlugin (RandomThings-MC1.12.2-4.2.7.4.jar)   SSLoadingPlugin (SereneSeasons-1.12.2-1.2.18-universal.jar)   Do not report to Forge! (If you haven't disabled the FoamFix coremod, try disabling it in the config! Note that this bit of text will still appear.) (foamfix-0.10.15-1.12.2.jar)   FTBUltimineASM (ftb-ultimine-1202.3.5.jar)   ForgelinPlugin (Forgelin-1.8.4.jar)   Backpacked (backpacked-1.4.3-1.12.2.jar)   ForgelinPlugin (Forgelin-Continuous-1.9.23.0.jar)   HCASM (HammerLib-1.12.2-12.2.50.jar)   LucraftCoreExtendedID (LucraftCoreIDExtender.jar)   NWRTweak (redstonepaste-mc1.12-1.7.5.jar)   CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   LucraftCoreCoreMod (LucraftCore-1.12.2-2.4.17.jar)   EnderCorePlugin (EnderCore-1.12.2-0.5.78-core.jar)   TransformerLoader (OpenComputers-MC1.12.2-1.8.5+179e1c3.jar)   llibrary (llibrary-core-1.0.11-1.12.2.jar)   ShetiPhian-ASM (ShetiPhian-ASM-1.12.0.jar)   PhosphorFMLLoadingPlugin (phosphor-1.12.2-0.2.6+build50.jar)   MekanismTweaks (mekanismtweaks-1.1.jar)   ShutdownPatcher (mcef-1.12.2-1.11-coremod.jar)   TNTUtilities Core (tnt_utilities-mc1.12-1.2.3.jar) Contact their authors BEFORE contacting forge // Shall we play a game? Time: 5/9/24 7:21 PM Description: Initializing game java.lang.NullPointerException: Initializing game     at net.minecraft.client.gui.GuiMainMenu.handler$zca000$hookViaForgeButton(GuiMainMenu.java:686)     at net.minecraft.client.gui.GuiMainMenu.func_73866_w_(GuiMainMenu.java:218)     at net.minecraft.client.gui.GuiScreen.func_146280_a(GuiScreen.java:478)     at net.minecraft.client.Minecraft.func_147108_a(Minecraft.java:1018)     at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:545)     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378)     at net.minecraft.client.main.Main.main(SourceFile:123)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at gg.essential.loader.stage2.relaunch.Relaunch.relaunch(Relaunch.java:124)     at gg.essential.loader.stage2.EssentialLoader.preloadEssential(EssentialLoader.java:328)     at gg.essential.loader.stage2.EssentialLoader.loadPlatform(EssentialLoader.java:116)     at gg.essential.loader.stage2.EssentialLoaderBase.load(EssentialLoaderBase.java:148)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at gg.essential.loader.stage1.EssentialLoaderBase.load(EssentialLoaderBase.java:293)     at gg.essential.loader.stage1.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:44)     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)     at java.lang.reflect.Constructor.newInstance(Constructor.java:422)     at gg.essential.loader.stage0.EssentialSetupTweaker.loadStage1(EssentialSetupTweaker.java:53)     at gg.essential.loader.stage0.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:26)     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)     at java.lang.reflect.Constructor.newInstance(Constructor.java:422)     at java.lang.Class.newInstance(Class.java:442)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:98)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Client thread Stacktrace:     at net.minecraft.client.gui.GuiMainMenu.handler$zca000$hookViaForgeButton(GuiMainMenu.java:686)     at net.minecraft.client.gui.GuiMainMenu.func_73866_w_(GuiMainMenu.java:218)     at net.minecraft.client.gui.GuiScreen.func_146280_a(GuiScreen.java:478)     at net.minecraft.client.Minecraft.func_147108_a(Minecraft.java:1018)     at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:545) -- Initialization -- Details: Stacktrace:     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378)     at net.minecraft.client.main.Main.main(SourceFile:123)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at gg.essential.loader.stage2.relaunch.Relaunch.relaunch(Relaunch.java:124)     at gg.essential.loader.stage2.EssentialLoader.preloadEssential(EssentialLoader.java:328)     at gg.essential.loader.stage2.EssentialLoader.loadPlatform(EssentialLoader.java:116)     at gg.essential.loader.stage2.EssentialLoaderBase.load(EssentialLoaderBase.java:148)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at gg.essential.loader.stage1.EssentialLoaderBase.load(EssentialLoaderBase.java:293)     at gg.essential.loader.stage1.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:44)     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)     at java.lang.reflect.Constructor.newInstance(Constructor.java:422)     at gg.essential.loader.stage0.EssentialSetupTweaker.loadStage1(EssentialSetupTweaker.java:53)     at gg.essential.loader.stage0.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:26)     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)     at java.lang.reflect.Constructor.newInstance(Constructor.java:422)     at java.lang.Class.newInstance(Class.java:442)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:98)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28) -- System Details -- Details:     Minecraft Version: 1.12.2     Operating System: Windows 10 (amd64) version 10.0     Java Version: 1.8.0_51, Oracle Corporation     Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation     Memory: 912338720 bytes (870 MB) / 3868721152 bytes (3689 MB) up to 11542724608 bytes (11008 MB)     JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx12384m -Xms256m     IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0     FML: MCP 9.42 Powered by Forge 14.23.5.2860 380 mods loaded, 0 mods active     States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored     | State | ID                                | Version                         | Source                                             | Signature                                |     |:----- |:--------------------------------- |:------------------------------- |:-------------------------------------------------- |:---------------------------------------- |     |       | minecraft                         | 1.12.2                          | minecraft.jar                                      | None                                     |     |       | mcp                               | 9.42                            | minecraft.jar                                      | None                                     |     |       | FML                               | 8.0.99.99                       | forge-1.12.2-14.23.5.2860.jar                      | e3c3d50c7c986df74c645c0ac54639741c90a557 |     |       | forge                             | 14.23.5.2860                    | forge-1.12.2-14.23.5.2860.jar                      | e3c3d50c7c986df74c645c0ac54639741c90a557 |     |       | ivtoolkit                         | 1.3.3-1.12                      | minecraft.jar                                      | None                                     |     |       | controllable                      | 0.11.2                          | controllable-0.11.2-1.12.2.jar                     | None                                     |     |       | mclib_core                        | 2.4.2                           | minecraft.jar                                      | None                                     |     |       | backpacked                        | 1.4.2                           | backpacked-1.4.3-1.12.2.jar                        | None                                     |     |       | biometweakercore                  | 1.0.39                          | minecraft.jar                                      | None                                     |     |       | foamfixcore                       | 7.7.4                           | minecraft.jar                                      | None                                     |     |       | obfuscate                         | 0.4.2                           | minecraft.jar                                      | None                                     |     |       | opencomputers|core                | 1.8.5                           | minecraft.jar                                      | None                                     |     |       | tnt_utilities_core                | 1.2.3                           | minecraft.jar                                      | None                                     |     |       | essential                         | 1.0.0                           | Essential (forge_1.12.2).processed.jar             | None                                     |     |       | skinlayers3d                      | 1.2.0                           | 3dSkinLayers-forge-mc1.12.2-1.2.0.jar              | None                                     |     |       | servercountryflags                | 1.8.1                           | servercountryflags-1.8.1-1.12.2-FORGE.jar          | None                                     |     |       | securitycraft                     | v1.9.9                          | [1.12.2] SecurityCraft v1.9.9.jar                  | None                                     |     |       | acheads                           | 2.1.1                           | AbyssalCraft Heads-1.12.2-2.1.1.jar                | None                                     |     |       | acintegration                     | 1.11.3                          | AbyssalCraft Integration-1.12.2-1.11.3.jar         | None                                     |     |       | abyssalcraft                      | 1.10.5                          | AbyssalCraft-1.12.2-1.10.5.jar                     | None                                     |     |       | actuallyadditions                 | 1.12.2-r152                     | ActuallyAdditions-1.12.2-r152.jar                  | None                                     |     |       | actuallycomputers                 | @Version@                       | actuallycomputers-2.2.0.jar                        | None                                     |     |       | additionalpipes                   | 6.0.0.8                         | additionalpipes-6.0.0.8.jar                        | None                                     |     |       | advancementbook                   | 1.0.3                           | Advancement_Book-1.12-1.0.3.jar                    | None                                     |     |       | aether_legacy_addon               | 1.12.2-v1.3.0                   | Aether Continuation v1.3.0.jar                     | None                                     |     |       | aether_legacy                     | 1.5.3.2                         | aether-1.12.2-v1.5.4.0.jar                         | None                                     |     |       | aether                            | 0.3.0                           | aether_ii-1.12.2-0.3.0+build411-universal.jar      | None                                     |     |       | flyringbaublemod                  | 0.3.1_1.12-d4e654e              | angelRingToBauble-1.12-0.3.1.50+d4e654e.jar        | None                                     |     |       | applecore                         | 3.4.0                           | AppleCore-mc1.12.2-3.4.0.jar                       | None                                     |     |       | appleskin                         | 1.0.14                          | AppleSkin-mc1.12-1.0.14.jar                        | None                                     |     |       | appliedenergistics2               | rv6-stable-7                    | appliedenergistics2-rv6-stable-7.jar               | None                                     |     |       | ate                               | 1.0.0                           | ATE-1.5.jar                                        | None                                     |     |       | autopackager                      | 1.12                            | autopackager-1.12.jar                              | None                                     |     |       | autoreglib                        | 1.3-32                          | AutoRegLib-1.3-32.jar                              | None                                     |     |       | avaritia                          | 3.3.0                           | Avaritia-1.12.2-3.3.0.37-universal.jar             | None                                     |     |       | avaritiaddons                     | 1.12.2-1.9                      | Avaritiaddons-1.12.2-1.9.jar                       | None                                     |     |       | avaritiaio                        | @VERSION@                       | avaritiaio-1.4.jar                                 | None                                     |     |       | avaritiarecipemaker               | 1.0.0                           | avaritiarecipemaker-1.0.0.jar                      | None                                     |     |       | avaritiatweaks                    | 1.12.2-1.3.1                    | AvaritiaTweaks-1.12.2-1.3.1.jar                    | None                                     |     |       | avatarmod                         | 1.6.2                           | avatarmod-1.6.2.jar                                | None                                     |     |       | gorecore                          | 1.12.2-0.4.5                    | avatarmod-1.6.2.jar                                | None                                     |     |       | base                              | 3.14.0                          | base-1.12.2-3.14.0.jar                             | None                                     |     |       | baubles                           | 1.5.2                           | Baubles-1.12-1.5.2.jar                             | None                                     |     |       | bdlib                             | 1.14.4.1                        | bdlib-1.14.4.1-mc1.12.2.jar                        | None                                     |     |       | bedbugs                           | @VERSION@                       | BedBugs-1.12-1.0.1.jar                             | None                                     |     |       | betterbuilderswands               | 0.11.1                          | BetterBuildersWands-1.12-0.11.1.245+69d0d70.jar    | None                                     |     |       | betterquesting                    | 3.5.329                         | BetterQuesting-3.5.329.jar                         | None                                     |     |       | betterthanbunnies                 | 1.12.1-1.1.0                    | BetterThanBunnies-1.12.1-1.1.0.jar                 | None                                     |     |       | bibliocraft                       | 2.4.6                           | BiblioCraft[v2.4.6][MC1.12.2].jar                  | None                                     |     |       | bibliotheca                       | 1.3.6-1.12.2                    | bibliotheca-1.3.6-1.12.2.jar                       | None                                     |     |       | balancedorespawnores              | 1.0.0                           | Bifröst(V9).jar                                    | None                                     |     |       | biolib                            | 1.1.3                           | biolib-1.1.3.jar                                   | None                                     |     |       | biometweaker                      | 3.2.369                         | BiomeTweaker-1.12.2-3.2.369.jar                    | None                                     |     |       | blockdrops                        | 1.4.0                           | blockdrops-1.12.2-1.4.0.jar                        | None                                     |     |       | bloodmagic                        | 1.12.2-2.4.3-105                | BloodMagic-1.12.2-2.4.3-105.jar                    | None                                     |     |       | bookshelf                         | 2.3.590                         | Bookshelf-1.12.2-2.3.590.jar                       | None                                     |     |       | bookworm                          | 1.12.2-2.5.2.1                  | bookworm-1.12.2-2.5.2.1.jar                        | None                                     |     |       | botania                           | r1.10-364                       | Botania r1.10-364.4.jar                            | None                                     |     |       | brandonscore                      | 2.4.20                          | BrandonsCore-1.12.2-2.4.20.162-universal.jar       | None                                     |     |       | buildcraftcompat                  | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftbuilders                | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftcore                    | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftenergy                  | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftfactory                 | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftlib                     | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftrobotics                | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftsilicon                 | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcrafttransport               | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | btg                               | 1.1.1                           | By The Gods-1.12.2-1.1.1.jar                       | None                                     |     |       | camera                            | 1.0.10                          | camera-1.0.10.jar                                  | None                                     |     |       | cctweaked                         | 1.89.2                          | cc-tweaked-1.12.2-1.89.2.jar                       | None                                     |     |       | computercraft                     | 1.89.2                          | cc-tweaked-1.12.2-1.89.2.jar                       | None                                     |     |       | ceramics                          | 1.12-1.3.7b                     | Ceramics-1.12-1.3.7b.jar                           | None                                     |     |       | chameleon                         | 1.12-4.1.3                      | Chameleon-1.12-4.1.3.jar                           | None                                     |     |       | chameleon_morph                   | 1.2.2                           | chameleon-1.2.2.jar                                | None                                     |     |       | chancecubes                       | 1.12.2-5.0.2.385                | ChanceCubes-1.12.2-5.0.2.385.jar                   | None                                     |     |       | charset                           | 0.5.6.6                         | Charset-Lib-0.5.6.6.jar                            | None                                     |     |       | chesttransporter                  | 2.8.8                           | ChestTransporter-1.12.2-2.8.8.jar                  | None                                     |     |       | chickenchunks                     | 2.4.2.74                        | ChickenChunks-1.12.2-2.4.2.74-universal.jar        | None                                     |     |       | chickens                          | 6.0.4                           | chickens-6.0.4.jar                                 | None                                     |     |       | chisel                            | MC1.12.2-1.0.2.45               | Chisel-MC1.12.2-1.0.2.45.jar                       | None                                     |     |       | chiseled_me                       | 1.12-3.0.0.0-git-e5ce416        | chiseled-me-1.12-3.0.0.0-git-e5ce416.jar           | None                                     |     |       | chiseledadditions                 | @Version@                       | ChiseledAdditions-1.0.0.jar                        | None                                     |     |       | chiselsandbits                    | 14.33                           | chiselsandbits-14.33.jar                           | None                                     |     |       | cjcm                              | 1.0                             | cjcm-1.0.jar                                       | None                                     |     |       | clienttweaks                      | 3.1.11                          | ClientTweaks_1.12.2-3.1.11.jar                     | None                                     |     |       | clipboard                         | @VERSION@                       | Clipboard-1.12-1.3.0.jar                           | None                                     |     |       | clumps                            | 3.1.2                           | Clumps-3.1.2.jar                                   | None                                     |     |       | codechickenlib                    | 3.2.3.358                       | CodeChickenLib-1.12.2-3.2.3.358-universal.jar      | None                                     |     |       | colossalchests                    | 1.7.3                           | ColossalChests-1.12.2-1.7.3.jar                    | None                                     |     |       | comforts                          | 1.4.1.3                         | comforts-1.12.2-1.4.1.3.jar                        | None                                     |     |       | commoncapabilities                | 2.4.8                           | CommonCapabilities-1.12.2-2.4.8.jar                | None                                     |     |       | controlling                       | 3.0.10                          | Controlling-3.0.12.3.jar                           | None                                     |     |       | cookingforblockheads              | 6.5.0                           | CookingForBlockheads_1.12.2-6.5.0.jar              | None                                     |     |       | craftfallessentials               | 1.2.6                           | CraftfallEssentials-1.12.2-1.2.6.jar               | None                                     |     |       | ctgui                             | 1.0.0                           | CraftTweaker2-1.12-4.1.20.698.jar                  | None                                     |     |       | crafttweaker                      | 4.1.20                          | CraftTweaker2-1.12-4.1.20.698.jar                  | None                                     |     |       | crafttweakerjei                   | 2.0.3                           | CraftTweaker2-1.12-4.1.20.698.jar                  | None                                     |     |       | ctm                               | MC1.12.2-1.0.2.31               | CTM-MC1.12.2-1.0.2.31.jar                          | None                                     |     |       | cucumber                          | 1.1.3                           | Cucumber-1.12.2-1.1.3.jar                          | None                                     |     |       | custommainmenu                    | 2.0.9.1                         | CustomMainMenu-MC1.12.2-2.0.9.1.jar                | None                                     |     |       | cyclopscore                       | 1.6.7                           | CyclopsCore-1.12.2-1.6.7.jar                       | None                                     |     |       | darknesslib                       | 1.1.2                           | DarknessLib-1.12.2-1.1.2.jar                       | None                                     |     |       | darkutils                         | 1.8.230                         | DarkUtils-1.12.2-1.8.230.jar                       | None                                     |     |       | props                             | 2.6.3.7                         | Decocraft-2.6.3.7_1.12.2.jar                       | None                                     |     |       | deepresonance                     | 1.8.0                           | deepresonance-1.12-1.8.0.jar                       | None                                     |     |       | defaultoptions                    | 9.2.8                           | DefaultOptions_1.12.2-9.2.8.jar                    | None                                     |     |       | draconicadditions                 | 1.17.0                          | Draconic-Additions-1.12.2-1.17.0.45-universal.jar  | None                                     |     |       | draconicevolution                 | 2.3.28                          | Draconic-Evolution-1.12.2-2.3.28.354-universal.jar | None                                     |     |       | draconicalchemy                   | 0.2                             | draconicalchemy-0.2.jar                            | None                                     |     |       | maia_draconic_edition             | 1.0.0                           | DraconicEvolution_MAIA_1.0.0.jar                   | None                                     |     |       | eleccoreloader                    | 1.9.453                         | ElecCore-1.12.2-1.9.453.jar                        | None                                     |     |       | eleccore                          | 1.9.453                         | ElecCore-1.12.2-1.9.453.jar                        | None                                     |     |       | ebwizardry                        | 4.3.13                          | ElectroblobsWizardry-4.3.13.jar                    | None                                     |     |       | endercore                         | 1.12.2-0.5.78                   | EnderCore-1.12.2-0.5.78.jar                        | None                                     |     |       | enderio                           | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiobase                       | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioconduitsappliedenergistics | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioconduitsopencomputers      | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioconduitsrefinedstorage     | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioconduits                   | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiointegrationforestry        | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiointegrationtic             | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiointegrationticlate         | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioinvpanel                   | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiomachines                   | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiopowertools                 | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | gasconduits                       | 5.3.72                          | EnderIO-conduits-mekanism-1.12.2-5.3.72.jar        | None                                     |     |       | enderioendergy                    | 5.3.72                          | EnderIO-endergy-1.12.2-5.3.72.jar                  | None                                     |     |       | enderiozoo                        | 5.3.72                          | EnderIO-zoo-1.12.2-5.3.72.jar                      | None                                     |     |       | endermail                         | 1.1.3                           | EnderMail-1.12.2-1.1.3.jar                         | None                                     |     |       | enderstorage                      | 2.4.6.137                       | EnderStorage-1.12.2-2.4.6.137-universal.jar        | None                                     |     |       | enderstorage                      | 2.5.0                           | EnderStorage-1.12.2-2.5.0.jar                      | None                                     |     |       | endertweaker                      | 1.2.3                           | EnderTweaker-1.12.2-1.2.3.jar                      | None                                     |     |       | energyconverters                  | 1.3.7.30                        | energyconverters_1.12.2-1.3.7.30.jar               | None                                     |     |       | engineersworkshop                 | 1.4.0-1.12.2                    | EngineersWorkshop-1.4.0-1.12.2.jar                 | None                                     |     |       | entityculling                     | @VER@                           | entityculling-1.12.2-1.6.3.jar                     | None                                     |     |       | environmentaltech                 | 1.12.2-2.0.20.1                 | environmentaltech-1.12.2-2.0.20.1.jar              | None                                     |     |       | etlunar                           | 1.12.2-2.0.20.1                 | etlunar-1.12.2-2.0.20.1.jar                        | None                                     |     |       | motnt                             | 1.0.1                           | EvenMoreTNT-1.0.1.jar                              | None                                     |     |       | excompressum                      | 3.0.32                          | ExCompressum_1.12.2-3.0.32.jar                     | None                                     |     |       | exnihilocreatio                   | 1.12.2-0.4.7.2                  | exnihilocreatio-1.12.2-0.4.7.2.jar                 | None                                     |     |       | exnihiloomnia                     | 1.0                             | exnihiloomnia_1.12.2-0.0.2.jar                     | None                                     |     |       | expandableinventory               | 1.4.0                           | ExpandableInventory-1.12.2-1.4.0.jar               | None                                     |     |       | extrabitmanipulation              | 1.12.2-3.4.1                    | ExtraBitManipulation-1.12.2-3.4.1.jar              | None                                     |     |       | extra_spells                      | 1.2.0                           | ExtraSpells-1.12.2-1.2.0.jar                       | None                                     |     |       | extrautils2                       | 1.0                             | extrautils2-1.12-1.9.9.jar                         | None                                     |     |       | bigreactors                       | 1.12.2-0.4.5.68                 | ExtremeReactors-1.12.2-0.4.5.68.jar                | None                                     |     |       | fairylights                       | 2.1.10                          | fairylights-2.2.0-1.12.2.jar                       | None                                     |     |       | farmingforblockheads              | 3.1.28                          | FarmingForBlockheads_1.12.2-3.1.28.jar             | None                                     |     |       | fenceoverhaul                     | 1.3.4                           | FenceOverhaul-1.3.4.jar                            | None                                     |     |       | examplemod                        | 1.0                             | flatcolorblock-hexfinder.jar                       | None                                     |     |       | flatcoloredblocks                 | mc1.12-6.8                      | flatcoloredblocks-mc1.12-6.8.jar                   | None                                     |     |       | fluxnetworks                      | 4.1.0                           | FluxNetworks-1.12.2-4.1.1.34.jar                   | None                                     |     |       | foamfix                           | @VERSION@                       | foamfix-0.10.15-1.12.2.jar                         | None                                     |     |       | forestry                          | 5.8.2.387                       | forestry_1.12.2-5.8.2.387.jar                      | None                                     |     |       | forgelin                          | 1.8.4                           | Forgelin-1.8.4.jar                                 | None                                     |     |       | forgelin_continuous               | 1.9.23.0                        | Forgelin-Continuous-1.9.23.0.jar                   | None                                     |     |       | microblockcbe                     | 2.6.2.83                        | ForgeMultipart-1.12.2-2.6.2.83-universal.jar       | None                                     |     |       | forgemultipartcbe                 | 2.6.2.83                        | ForgeMultipart-1.12.2-2.6.2.83-universal.jar       | None                                     |     |       | minecraftmultipartcbe             | 2.6.2.83                        | ForgeMultipart-1.12.2-2.6.2.83-universal.jar       | None                                     |     |       | ftbultimine                       | 1202.3.5                        | ftb-ultimine-1202.3.5.jar                          | None                                     |     |       | ftbbackups                        | 1.1.0.1                         | FTBBackups-1.1.0.1.jar                             | None                                     |     |       | ftblib                            | 5.4.7.2                         | FTBLib-5.4.7.2.jar                                 | None                                     |     |       | ftbmoney                          | 1.2.0.47                        | FTBMoney-1.2.0.47.jar                              | None                                     |     |       | ftbquests                         | 1202.9.0.15                     | FTBQuests-1202.9.0.15.jar                          | None                                     |     |       | ftbutilities                      | 5.4.1.131                       | FTBUtilities-5.4.1.131.jar                         | None                                     |     |       | fw                                | 1.6.0                           | FullscreenWindowed-1.12-1.6.0.jar                  | None                                     |     |       | funtnt                            | 1.12.2.0                        | funtnt-1.12.2.0.jar                                | None                                     |     |       | cfm                               | 6.3.0                           | furniture-6.3.2-1.12.2.jar                         | None                                     |     |       | gardenofglass                     | sqrt(-1)                        | GardenOfGlass.jar                                  | None                                     |     |       | geckolib3                         | 3.0.30                          | geckolib-forge-1.12.2-3.0.31.jar                   | None                                     |     |       | advgenerators                     | 0.9.20.12                       | generators-0.9.20.12-mc1.12.2.jar                  | None                                     |     |       | googlyeyes                        | 7.1.1                           | GooglyEyes-1.12.2-7.1.1.jar                        | None                                     |     |       | grapplemod                        | 1.12.2-v13                      | grappling_hook_mod-1.12.2-v13.jar                  | None                                     |     |       | gravestone                        | 1.10.3                          | gravestone-1.10.3.jar                              | None                                     |     |       | gravitygun                        | 7.1.0                           | GravityGun-1.12.2-7.1.0.jar                        | None                                     |     |       | grue                              | 1.8.1                           | Grue-1.12.2-1.8.1.jar                              | None                                     |     |       | guideapi                          | 1.12-2.1.8-63                   | Guide-API-1.12-2.1.8-63.jar                        | None                                     |     |       | gunpowderlib                      | 1.12.2-1.1                      | GunpowderLib-1.12.2-1.1.jar                        | None                                     |     |       | cgm                               | 0.15.3                          | guns-0.15.3-1.12.2.jar                             | None                                     |     |       | gyth                              | 2.1.38                          | Gyth-1.12.2-2.1.38.jar                             | None                                     |     |       | hammercore                        | 12.2.50                         | HammerLib-1.12.2-12.2.50.jar                       | None                                     |     |       | harvest                           | 1.12-1.2.8-25                   | Harvest-1.12-1.2.8-25.jar                          | None                                     |     |       | hatchery                          | 2.2.2                           | hatchery-1.12.2-2.2.2.jar                          | None                                     |     |       | headcrumbs                        | 2.0.4                           | Headcrumbs-1.12.2-2.0.5.17.jar                     | None                                     |     |       | heroesexpansion                   | 1.12.2-1.3.5                    | HeroesExpansion-1.12.2-1.3.5.jar                   | None                                     |     |       | hopperducts                       | 1.5                             | hopperducts-mc1.12-1.5.jar                         | None                                     |     |       | waila                             | 1.8.26                          | Hwyla-1.8.26-B41_1.12.2.jar                        | None                                     |     |       | hydrogel                          | 1.1.0                           | HydroGel-1.12.2-1.1.0.jar                          | None                                     |     |       | icbmclassic                       | 6.0.0                           | ICBM-classic-1.12.2-6.0.0-preview.1.jar            | None                                     |     |       | icbmcc                            | 1.0.2                           | ICBM-classic-cc-addon-1.12.2-1.0.2.jar             | None                                     |     |       | ichunutil                         | 7.2.2                           | iChunUtil-1.12.2-7.2.2.jar                         | None                                     |     |       | igi|bloodmagicintegration         | 1.2                             | IGI-BloodMagic-1.2.jar                             | None                                     |     |       | igi|deepresonanceintegration      | 1.1                             | IGI-DeepResonance-1.1.jar                          | None                                     |     |       | igi|rftoolsintegration            | 1.2                             | IGI-RFTools-1.2.jar                                | None                                     |     |       | igi|thaumcraft                    | 1.0a                            | IGI-Thaumcraft-1.0a.jar                            | None                                     |     |       | igisereneseasons                  | 1.0.0.1                         | igisereneseasons-1.0.0.1.jar                       | None                                     |     |       | immersivepetroleum                | 1.1.10                          | immersivepetroleum-1.12.2-1.1.10.jar               | None                                     |     |       | industrialupgrade                 | 3.1.3                           | IndustrialUpgrade-1.12.2-3.1.3.jar                 | None                                     |     |       | ingameinfoxml                     | 2.8.2.94                        | InGameInfoXML-1.12.2-2.8.2.94-universal.jar        | None                                     |     |       | initialinventory                  | 2.0.2                           | InitialInventory-3.0.0.jar                         | None                                     |     |       | integrateddynamics                | 1.1.11                          | IntegratedDynamics-1.12.2-1.1.11.jar               | None                                     |     |       | integrateddynamicscompat          | 1.0.0                           | IntegratedDynamics-1.12.2-1.1.11.jar               | None                                     |     |       | integratedtunnels                 | 1.6.14                          | IntegratedTunnels-1.12.2-1.6.14.jar                | None                                     |     |       | integratedtunnelscompat           | 1.0.0                           | IntegratedTunnels-1.12.2-1.6.14.jar                | None                                     |     |       | inventorypets                     | 2.0.15                          | inventorypets-1.12-2.0.15.jar                      | None                                     |     |       | inventorysorter                   | 1.13.3+57                       | inventorysorter-1.12.2-1.13.3+57.jar               | None                                     |     |       | ironchest                         | 1.12.2-7.0.67.844               | ironchest-1.12.2-7.0.72.847.jar                    | None                                     |     |       | ironjetpacks                      | 1.1.0                           | IronJetpacks-1.12-2-1.1.0.jar                      | None                                     |     |       | ironman                           | Beta-1.12.2-1.2.6               | IronMan-1.12.2-Beta-1.12.2-1.2.6.jar               | None                                     |     |       | itemfilters                       | 1.0.4.2                         | ItemFilters-1.0.4.2.jar                            | None                                     |     |       | jeiutilities                      | 0.2.12                          | JEI-Utilities-1.12.2-0.2.12.jar                    | None                                     |     |       | jei                               | 4.16.1.301                      | jei_1.12.2-4.16.1.301.jar                          | None                                     |     |       | jeiintegration                    | 1.6.0                           | jeiintegration_1.12.2-1.6.0.jar                    | None                                     |     |       | journeymap                        | 1.12.2-5.7.1p2                  | journeymap-1.12.2-5.7.1p2.jar                      | None                                     |     |       | kleeslabs                         | 5.4.12                          | KleeSlabs_1.12.2-5.4.12.jar                        | None                                     |     |       | librarianliblate                  | 4.22                            | librarianlib-1.12.2-4.22.jar                       | None                                     |     |       | librarianlib                      | 4.22                            | librarianlib-1.12.2-4.22.jar                       | None                                     |     |       | literalascension                  | 1.12.2-1.0.2.2                  | literalascension-1.12.2-2.0.0.0.jar                | None                                     |     |       | logisticspipes                    | 0.10.3.114                      | logisticspipes-0.10.3.114.jar                      | None                                     |     |       | longfallboots                     | 1.2.1a                          | longfallboots-1.2.1b.jar                           | None                                     |     |       | lootbags                          | 2.5.8.5                         | LootBags-1.12.2-2.5.8.5.jar                        | None                                     |     |       | lost_aether                       | 1.0.2                           | lost-aether-content-1.12.2-1.0.2.jar               | None                                     |     |       | lostinfinity                      | 1.15.4                          | lostinfinity-1.16.0.jar                            | None                                     |     |       | luckynuke                         | 1.0.0                           | Lucky (1).jar                                      | None                                     |     |       | lucraftcore                       | 1.12.2-2.4.16                   | LucraftCore-1.12.2-2.4.17.jar                      | None                                     |     |       | lucraftcoreidextender             | 1.0.1                           | LucraftCoreIDExtender.jar                          | None                                     |     |       | lunatriuscore                     | 1.2.0.42                        | LunatriusCore-1.12.2-1.2.0.42-universal.jar        | None                                     |     |       | magiccraftadventure               | v1.10                           | MagicCraftAdventure v1.10.jar                      | None                                     |     |       | malisiscore                       | 1.12.2-6.5.1-SNAPSHOT           | malisiscore-1.12.2-6.5.1.jar                       | None                                     |     |       | malisisdoors                      | 1.12.2-7.3.0                    | malisisdoors-1.12.2-7.3.0.jar                      | None                                     |     |       | mantle                            | 1.12-1.3.3.55                   | Mantle-1.12-1.3.3.55.jar                           | None                                     |     |       | matc                              | 1.0.1-hotfix                    | matc-1.0.1-hotfix.jar                              | None                                     |     |       | mcef                              | 1.11                            | mcef-1.12.2-1.11.jar                               | None                                     |     |       | mcjtylib_ng                       | 3.5.4                           | mcjtylib-1.12-3.5.4.jar                            | None                                     |     |       | mclib                             | 2.4.2                           | mclib-2.4.2-1.12.2.jar                             | None                                     |     |       | mcmultipart                       | 2.5.3                           | MCMultiPart-2.5.3.jar                              | None                                     |     |       | mekanism                          | 1.12.2-9.8.3.390                | Mekanism-1.12.2-9.8.3.390.jar                      | None                                     |     |       | mekanismgenerators                | 1.12.2-9.8.3.390                | MekanismGenerators-1.12.2-9.8.3.390.jar            | None                                     |     |       | mekanismtools                     | 1.12.2-9.8.3.390                | MekanismTools-1.12.2-9.8.3.390.jar                 | None                                     |     |       | mercurius                         | 1.0.6                           | Mercurius-1.12.2.jar                               | None                                     |     |       | metamorph                         | 1.3.1                           | metamorph-1.3.1-1.12.2.jar                         | None                                     |     |       | metamorphmax                      | 0.13 - MC 1.12.2                | metamorphmax-0.13.jar                              | None                                     |     |       | minemenu                          | 1.6.11                          | MineMenu-1.12.2-1.6.11-universal.jar               | None                                     |     |       | minicoal                          | 1.0                             | minicoal-1.12.2-1.0.jar                            | None                                     |     |       | missing_pieces                    | 4.3.0                           | missing_pieces-1.12.2-4.3.0.jar                    | None                                     |     |       | moarsigns                         | 6.0.0.11                        | MoarSigns-1.12.2-6.0.0.11.jar                      | None                                     |     |       | moartinkers                       | 0.6.0                           | moartinkers-0.6.0.jar                              | None                                     |     |       | mob_grinding_utils                | 0.3.13                          | MobGrindingUtils-0.3.13.jar                        | None                                     |     |       | modnametooltip                    | 1.10.1                          | modnametooltip_1.12.2-1.10.1.jar                   | None                                     |     |       | modtweaker                        | 4.0.19                          | modtweaker-4.0.20.11.jar                           | None                                     |     |       | moreavaritia                      | 3.5                             | moreavaritia-mc1.12.2-v1.5.jar                     | None                                     |     |       | morechickens                      | 3.1.0                           | morechickens-1.12.2-3.1.0.jar                      | None                                     |     |       | shear                             | 1.1.2                           | MoreShearables1.3.1-1.12.2.jar                     | None                                     |     |       | morpheus                          | 1.12.2-3.5.106                  | Morpheus-1.12.2-3.5.106.jar                        | None                                     |     |       | mousetweaks                       | 2.10                            | MouseTweaks-2.10-mc1.12.2.jar                      | None                                     |     |       | mowziesmobs                       | 1.5.8                           | mowziesmobs-1.5.8.jar                              | None                                     |     |       | mpbasic                           | 1.4.7                           | mpbasic-1.12.2-1.4.11.jar                          | None                                     |     |       | mputils                           | 1.5.6                           | MPUtils-1.12.2-1.5.7.jar                           | None                                     |     |       | mtlib                             | 3.0.7                           | MTLib-3.0.7.jar                                    | None                                     |     |       | mysticalagradditions              | 1.3.2                           | MysticalAgradditions-1.12.2-1.3.2.jar              | None                                     |     |       | mysticalagriculture               | 1.7.5                           | MysticalAgriculture-1.12.2-1.7.5.jar               | None                                     |     |       | mysticallib                       | 1.12.2-1.13.0                   | mysticallib-1.12.2-1.13.0.jar                      | None                                     |     |       | natura                            | 1.12.2-4.3.2.69                 | natura-1.12.2-4.3.2.69.jar                         | None                                     |     |       | neat                              | 1.4-17                          | Neat 1.4-17.jar                                    | None                                     |     |       | nice                              | 0.4.0                           | nice-1.12-0.4.0.jar                                | None                                     |     |       | nei                               | 2.4.3                           | NotEnoughItems-1.12.2-2.4.3.245-universal.jar      | None                                     |     |       | notenoughwands                    | 1.8.1                           | notenoughwands-1.12-1.8.1.jar                      | None                                     |     |       | hbm                               | NTM-Extended-1.12.2-2.0.2       | NTM-Extended-1.12.2-2.0.2.jar                      | None                                     |     |       | openablewindows                   | 0.0.1                           | openablewindows-1.0.jar                            | None                                     |     |       | opencomputers                     | 1.8.5                           | OpenComputers-MC1.12.2-1.8.5+179e1c3.jar           | None                                     |     |       | eternalsoap.icbm.opencomputers    | 1.0                             | OpenComputersICBMAddon-1.3.jar                     | None                                     |     |       | oreexcavation                     | 1.4.150                         | OreExcavation-1.4.150.jar                          | None                                     |     |       | orespawn                          | 3.3.1                           | OreSpawn-1.12-3.3.1.179.jar                        | None                                     |     |       | packingtape                       | 0.7.6                           | PackingTape-1.12.2-0.7.6.jar                       | None                                     |     |       | harvestcraft                      | 1.12.2zb                        | Pam's HarvestCraft 1.12.2zg.jar                    | None                                     |     |       | pamsimpleharvest                  | 2.0.0                           | pamsimpleharvest-2.0.0.jar                         | None                                     |     |       | patchouli                         | 1.0-23.6                        | Patchouli-1.0-23.6.jar                             | None                                     |     |       | placebo                           | 1.6.0                           | Placebo-1.12.2-1.6.1.jar                           | None                                     |     |       | platforms                         | 1.4.6                           | platforms-1.12.0-1.4.6.jar                         | None                                     |     |       | portalgun                         | 7.1.0                           | PortalGun-1.12.2-7.1.0.jar                         | None                                     |     |       | powerutils                        | 1.5.3                           | Power+Utilities.jar                                | None                                     |     |       | projecte                          | 1.12.2-PE1.4.1                  | ProjectE-1.12.2-PE1.4.1.jar                        | None                                     |     |       | projectex                         | 1.2.0.40                        | ProjectEX-1.2.0.40.jar                             | None                                     |     |       | projectintelligence               | 1.0.9                           | ProjectIntelligence-1.12.2-1.0.9.28-universal.jar  | None                                     |     |       | psi                               | r1.1-78                         | Psi-r1.1-78.2.jar                                  | None                                     |     |       | ptrmodellib                       | 1.0.5                           | PTRLib-1.0.5.jar                                   | None                                     |     |       | pymtech                           | 1.12.2-1.0.2                    | PymTech-1.12.2-1.0.2.jar                           | None                                     |     |       | quantum_generators                | 1.3.1                           | Quantum_Generators.jar                             | None                                     |     |       | quantumflux                       | 2.0.18                          | quantumflux-1.12.2-2.0.18.jar                      | None                                     |     |       | quantumstorage                    | 4.7.0                           | QuantumStorage-1.12-4.7.0.jar                      | None                                     |     |       | questbook                         | 3.1.1-1.12                      | questbook-3.1.1-1.12.jar                           | None                                     |     |       | randomthings                      | 4.2.7.4                         | RandomThings-MC1.12.2-4.2.7.4.jar                  | None                                     |     |       | rangedpumps                       | 0.5                             | rangedpumps-0.5.jar                                | None                                     |     |       | reborncore                        | 3.19.5                          | RebornCore-1.12.2-3.19.5-universal.jar             | None                                     |     |       | rebornstorage                     | 1.0.0                           | RebornStorage-1.12.2-3.3.4.1.jar                   | None                                     |     |       | reccomplex                        | 1.4.8.5                         | RecurrentComplex-1.4.8.5.jar                       | None                                     |     |       | redstoneflux                      | 2.1.1                           | RedstoneFlux-1.12-2.1.1.1-universal.jar            | None                                     |     |       | redstonepaste                     | 1.7.5                           | redstonepaste-mc1.12-1.7.5.jar                     | None                                     |     |       | refined_avaritia                  | 2.6                             | refined_avaritia-1.12.2-2.6.jar                    | None                                     |     |       | refinedstorage                    | 1.6.16                          | refinedstorage-1.6.16.jar                          | None                                     |     |       | refinedstorageaddons              | 0.4.5                           | refinedstorageaddons-0.4.5.jar                     | None                                     |     |       | refinedstoragerequestify          | ${version}                      | refinedstoragerequestify-1.12.2-1.0.2-3.jar        | None                                     |     |       | regeneration                      | 3.0.3                           | Regeneration-3.0.3.jar                             | None                                     |     |       | resourceloader                    | 1.5.3                           | ResourceLoader-MC1.12.1-1.5.3.jar                  | None                                     |     |       | rftdimtweak                       | 1.1                             | RFTDimTweak-1.12.2-1.1.jar                         | None                                     |     |       | rftools                           | 7.73                            | rftools-1.12-7.73.jar                              | None                                     |     |       | rftoolscontrol                    | 2.0.2                           | rftoolsctrl-1.12-2.0.2.jar                         | None                                     |     |       | rftoolsdim                        | 5.71                            | rftoolsdim-1.12-5.71.jar                           | None                                     |     |       | rftoolspower                      | 1.2.0                           | rftoolspower-1.12-1.2.0.jar                        | None                                     |     |       | rftpwroc                          | 0.1                             | rftpwr_oc-0.2.jar                                  | None                                     |     |       | roots                             | 1.12.2-3.1.9.2                  | Roots-1.12.2-3.1.9.2.jar                           | None                                     |     |       | rslargepatterns                   | 1.12.2-1.0.0.0                  | RSLargePatterns-1.12.2-1.0.0.1.jar                 | None                                     |     |       | woodenshears                      | @MAJOR@.@MINOR@.@REVIS@.@BUILD@ | SBM-WoodenShears-1.12-0.0.1b8.jar                  | None                                     |     |       | scanner                           | 1.6.12                          | scanner-1.6.12.jar                                 | None                                     |     |       | secureenderstorage                | 1.12.2-1.2.0                    | SecureEnderStorage-1.12.2-1.2.0.jar                | None                                     |     |       | sereneseasons                     | 1.2.18                          | SereneSeasons-1.12.2-1.2.18-universal.jar          | None                                     |     |       | shadowmc                          | 3.8.0                           | ShadowMC-1.12-3.8.0.jar                            | None                                     |     |       | shearmadness                      | 1.12.2                          | shearmadness-1.12.2-1.7.2.4.jar                    | None                                     |     |       | simple-rpc                        | 1.0                             | simple-rpc-1.12.2-3.1.1.jar                        | None                                     |     |       | simplecorn                        | 2.5.12                          | SimpleCorn1.12-2.5.12.jar                          | None                                     |     |       | simplegenerators                  | 1.12.2-2.0.20.2                 | simplegenerators-1.12.2-2.0.20.2.jar               | None                                     |     |       | simplyquarries                    | 1.6.2                           | Simply+Quarries.jar                                | None                                     |     |       | simplyjetpacks                    | 1.12.2-2.2.20.0                 | SimplyJetpacks2-1.12.2-2.2.20.0.jar                | None                                     |     |       | snad                              | 1.12.1-1.7.09.16a               | Snad-1.12.1-1.7.09.16a.jar                         | None                                     |     |       | solarflux                         | 12.4.11                         | SolarFluxReborn-1.12.2-12.4.11.jar                 | None                                     |     |       | sonarcore                         | 5.0.19                          | sonarcore-1.12.2-5.0.19-20.jar                     | None                                     |     |       | speedsterheroes                   | 1.12.2-2.2.1                    | SpeedsterHeroes-1.12.2-2.2.1.jar                   | None                                     |     |       | statues                           | 0.8.10                          | statues-1.12.2-0.8.11.jar                          | None                                     |     |       | stellarfluidconduits              | 1.12.2-1.0.0                    | stellarfluidconduit-1.12.2-1.0.3.jar               | None                                     |     |       | stevescarts                       | 2.4.32.137                      | StevesCarts-1.12.2-2.4.32.137.jar                  | None                                     |     |       | storagedrawers                    | 5.5.0                           | StorageDrawers-1.12.2-5.5.0.jar                    | None                                     |     |       | tabula                            | 7.1.0                           | Tabula-1.12.2-7.1.0.jar                            | None                                     |     |       | taiga                             | 1.12.2-1.3.3                    | taiga-1.12.2-1.3.4.jar                             | None                                     |     |       | tardis                            | 0.1.4A                          | tardis-0.1.4A.jar                                  | None                                     |     |       | tconstruct                        | 1.12.2-2.13.0.183               | TConstruct-1.12.2-2.13.0.183.jar                   | None                                     |     |       | thaumcraft                        | 6.1.BETA26                      | Thaumcraft-1.12.2-6.1.BETA26.jar                   | None                                     |     |       | thaumicjei                        | 1.6.0                           | ThaumicJEI-1.12.2-1.6.0-27.jar                     | None                                     |     |       | beneath                           | 1.7.1                           | The Beneath-1.12.2-1.7.1.jar                       | None                                     |     |       | the-fifth-world                   | 0.5                             | the-fifth-world-0.5.1.jar                          | None                                     |     |       | tabulathreecoreexporter           | 1.12.2-1.0.0                    | ThreeCoreModelExporter-1.12.2-1.0.0.jar            | None                                     |     |       | tinkersaddons                     | 1.0.7                           | Tinkers' Addons-1.12.1-1.0.7.jar                   | None                                     |     |       | tinkers_reforged                  | 1.5.6                           | tinkers_reforged-1.5.6.jar                         | None                                     |     |       | tinkers_reforged_preload          | 1.5.6                           | tinkers_reforged-1.5.6.jar                         | None                                     |     |       | tinkersaether                     | 1.4.1                           | tinkersaether-1.4.1.jar                            | None                                     |     |       | tcomplement                       | 1.12.2-0.4.3                    | TinkersComplement-1.12.2-0.4.3.jar                 | None                                     |     |       | tinkersjei                        | 1.2                             | tinkersjei-1.2.jar                                 | None                                     |     |       | tinkersoc                         | 0.6                             | tinkersoc-0.6.jar                                  | None                                     |     |       | tinkertoolleveling                | 1.12.2-1.1.0.DEV.b23e769        | TinkerToolLeveling-1.12.2-1.1.0.jar                | None                                     |     |       | tp                                | 3.2.34                          | tinyprogressions-1.12.2-3.3.34-Release.jar         | None                                     |     |       | tnt_craft                         | 1.0.0                           | tnt-craft-1.12.2-V-1.1.0.jar                       | None                                     |     |       | tnt_utilities                     | 1.2.3                           | tnt_utilities-mc1.12-1.2.3.jar                     | None                                     |     |       | torchmaster                       | 1.8.5.0                         | torchmaster_1.12.2-1.8.5.0.jar                     | None                                     |     |       | translocators                     | 2.5.2.81                        | Translocators-1.12.2-2.5.2.81-universal.jar        | None                                     |     |       | ts2k16                            | 1.2.10                          | TS2K16-1.2.10.jar                                  | None                                     |     |       | twitchcrumbs                      | 3.0.4                           | Twitchcrumbs_1.12.2-3.0.4.jar                      | None                                     |     |       | unidict                           | 1.12.2-3.0.10                   | UniDict-1.12.2-3.0.10.jar                          | None                                     |     |       | universalmodifiers                | 1.12.2-1.0.16.1                 | valkyrielib-1.12.2-2.0.20.1.jar                    | None                                     |     |       | valkyrielib                       | 1.12.2-2.0.20.1                 | valkyrielib-1.12.2-2.0.20.1.jar                    | None                                     |     |       | vehicle                           | 0.44.1                          | vehicle-mod-0.44.1-1.12.2.jar                      | None                                     |     |       | viaforge                          | 3.6.0                           | viaforge-mc1122-3.6.0.jar                          | None                                     |     |       | voicechat                         | 1.12.2-2.5.13                   | voicechat-forge-1.12.2-2.5.13.jar                  | None                                     |     |       | waddles                           | 0.6.0                           | Waddles-1.12.2-0.6.0.jar                           | None                                     |     |       | wanionlib                         | 1.12.2-2.91                     | WanionLib-1.12.2-2.91.jar                          | None                                     |     |       | warpbook                          | 1.12.2-3.3.4                    | Warpbook-1.12.2-3.3.4.jar                          | None                                     |     |       | wawla                             | 2.6.275                         | Wawla-1.12.2-2.6.275.jar                           | None                                     |     |       | waystones                         | 4.1.0                           | Waystones_1.12.2-4.1.0.jar                         | None                                     |     |       | webdisplays                       | 1.1                             | webdisplaysremastered-1.12.2-1.2.jar               | None                                     |     |       | wintertagva                       | 1.12.2-1.0.0                    | WinterTAGVA-1.12.2-1.0.0.jar                       | None                                     |     |       | withercrumbs                      | @version@                       | witherCrumbs-1.12.2-0.11.jar                       | None                                     |     |       | zerocore                          | 1.12.2-0.1.2.9                  | zerocore-1.12.2-0.1.2.9.jar                        | None                                     |     |       | orbis-lib                         | 0.2.0                           | orbis-lib-1.12.2-0.2.0+build411.jar                | None                                     |     |       | phosphor-lighting                 | 1.12.2-0.2.6                    | phosphor-1.12.2-0.2.6+build50.jar                  | None                                     |     |       | immersiveengineering              | 0.12-98                         | ImmersiveEngineering-0.12-98.jar                   | None                                     |     |       | k9                                | 1.12.2-1.3.3.0                  | k9-1.12.2-1.3.3.0.jar                              | None                                     |     |       | llibrary                          | 1.7.20                          | llibrary-1.7.20-1.12.2.jar                         | None                                     |     |       | shetiphiancore                    | 3.5.9                           | shetiphiancore-1.12.0-3.5.9.jar                    | None                                     |     |       | structurize                       | 1.12.2-0.10.277-RELEASE         | structurize-1.12.2-0.10.277-RELEASE.jar            | None                                     |     |       | weeping-angels                    | 1.12.2-46                       | weeping-angels-46.jar                              | None                                     |     Loaded coremods (and transformers):  IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)   blusunrize.immersiveengineering.common.asm.IEClassTransformer LibrarianLib Plugin (librarianlib-1.12.2-4.22.jar)   com.teamwizardry.librarianlib.asm.LibLibTransformer MixinLoader (viaforge-mc1122-3.6.0.jar)    McLib core mod (mclib-2.4.2-1.12.2.jar)   mchorse.mclib.core.McLibCMClassTransformer EFFLL (LiteLoader ObjectHolder fix) (ExtraFoamForLiteLoader-1.0.0.jar)   pl.asie.extrafoamforliteloader.EFFLLTransformer MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)   mekanism.coremod.KeybindingMigrationHelper LogisticsPipesCoreLoader (logisticspipes-0.10.3.114.jar)   logisticspipes.asm.LogisticsClassTransformer AppleCore (AppleCore-mc1.12.2-3.4.0.jar)   squeek.applecore.asm.TransformerModuleHandler BiomeTweakerCore (BiomeTweakerCore-1.12.2-1.0.39.jar)   me.superckl.biometweakercore.BiomeTweakerASMTransformer ObfuscatePlugin (obfuscate-0.4.2-1.12.2.jar)   com.mrcrayfish.obfuscate.asm.ObfuscateTransformer Regeneration (Regeneration-3.0.3.jar)   me.suff.mc.regen.asm.RegenClassTransformer UniDictCoreMod (UniDict-1.12.2-3.0.10.jar)   wanion.unidict.core.UniDictCoreModTransformer ReflectorsPlugin (EnderStorage-1.12.2-2.5.0.jar)   codechicken.enderstorage.reflection.ReflectorsPlugin EntityCullingEarlyLoader (entityculling-1.12.2-1.6.3.jar)    Controllable (controllable-0.11.2-1.12.2.jar)    craftfallessentials (CraftfallEssentials-1.12.2-1.2.6.jar)   com.hydrosimp.craftfallessentials.core.CEClassTransformer SecurityCraftLoadingPlugin ([1.12.2] SecurityCraft v1.9.9.jar)    LoadingPlugin (ResourceLoader-MC1.12.1-1.5.3.jar)   lumien.resourceloader.asm.ClassTransformer MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar)    pymtech (PymTech-1.12.2-1.0.2.jar)   lucraft.mods.pymtech.core.PymTechClassTransformer IvToolkit (IvToolkit-1.3.3-1.12.jar)    JeiUtilitiesLoadingPlugin (JEI-Utilities-1.12.2-0.2.12.jar)   com.github.vfyjxf.jeiutilities.asm.JeiUtilitiesClassTransformer LoadingPlugin (RandomThings-MC1.12.2-4.2.7.4.jar)   lumien.randomthings.asm.ClassTransformer SSLoadingPlugin (SereneSeasons-1.12.2-1.2.18-universal.jar)   sereneseasons.asm.transformer.EntityRendererTransformer   sereneseasons.asm.transformer.WorldTransformer Do not report to Forge! (If you haven't disabled the FoamFix coremod, try disabling it in the config! Note that this bit of text will still appear.) (foamfix-0.10.15-1.12.2.jar)   pl.asie.foamfix.coremod.FoamFixTransformer FTBUltimineASM (ftb-ultimine-1202.3.5.jar)    ForgelinPlugin (Forgelin-1.8.4.jar)    Backpacked (backpacked-1.4.3-1.12.2.jar)   com.mrcrayfish.backpacked.asm.BackpackedTransformer ForgelinPlugin (Forgelin-Continuous-1.9.23.0.jar)    HCASM (HammerLib-1.12.2-12.2.50.jar)   com.zeitheron.hammercore.asm.HammerCoreTransformer LucraftCoreExtendedID (LucraftCoreIDExtender.jar)    NWRTweak (redstonepaste-mc1.12-1.7.5.jar)   net.fybertech.nwr.NWRTransformer CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   team.chisel.ctm.client.asm.CTMTransformer LucraftCoreCoreMod (LucraftCore-1.12.2-2.4.17.jar)   lucraft.mods.lucraftcore.core.LCTransformer EnderCorePlugin (EnderCore-1.12.2-0.5.78-core.jar)   com.enderio.core.common.transform.EnderCoreTransformer   com.enderio.core.common.transform.SimpleMixinPatcher TransformerLoader (OpenComputers-MC1.12.2-1.8.5+179e1c3.jar)   li.cil.oc.common.asm.ClassTransformer llibrary (llibrary-core-1.0.11-1.12.2.jar)   net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer   net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher ShetiPhian-ASM (ShetiPhian-ASM-1.12.0.jar)   shetiphian.asm.ClassTransformer PhosphorFMLLoadingPlugin (phosphor-1.12.2-0.2.6+build50.jar)    MekanismTweaks (mekanismtweaks-1.1.jar)    ShutdownPatcher (mcef-1.12.2-1.11-coremod.jar)   net.montoyo.mcef.coremod.ShutdownPatcher TNTUtilities Core (tnt_utilities-mc1.12-1.2.3.jar)   ljfa.tntutils.asm.ExplosionTransformer     GL info: ' Vendor: 'Intel' Version: '4.6.0 - Build 32.0.101.5428' Renderer: 'Intel(R) Iris(R) Xe Graphics'     Launched Version: forge-14.23.5.2860     LWJGL: 2.9.4     OpenGL: Intel(R) Iris(R) Xe Graphics GL version 4.6.0 - Build 32.0.101.5428, Intel     GL Caps: Using GL 1.3 multitexturing. Using GL 1.3 texture combiners. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Shaders are available because OpenGL 2.1 is supported. VBOs are available because OpenGL 1.5 is supported.     Using VBOs: Yes     Is Modded: Definitely; Client brand changed to 'fml,forge'     Type: Client (map_client.txt)     Resource Packs:      Current Language: English (US)     Profiler Position: N/A (disabled)     CPU: 8x 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz
    • Advice for the future: I made functions to create recipes more easily; they generate names for the recipes based on the ingredients and the result. 
  • Topics

×
×
  • Create New...

Important Information

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