Jump to content

[1.7.10][Unsolved]TileEntity saving variables


Enginecrafter

Recommended Posts

I have a block, that have TileEntity. When I "re-log" to the world, all my Blocks-with-tileEntity are rotated to 0(South)

Can you help me with fixing it?

Sorry, if you find mistaches in my posts.

I am not EN.

And when I post anything on Modder support, it means, I can't help myself and I need your help. And when you decide to delete my topic, just PM me with the reason, please.

Link to comment
Share on other sites

Likely you need these two functions:

 

	@Override
    public void readFromNBT(NBTTagCompound tc) {
        super.readFromNBT(tc);
        //load your variables
    }

    @Override
    public void writeToNBT(NBTTagCompound tc) {
        super.writeToNBT(tc);
        //save your variables
    }

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Oh, sorry.

I forgot to place my code inside of my post.

 

Here is it:

 

 

package com.ec.tileentity;

import java.util.Random;

import com.ec.blocks.MyBlocks;
import com.ec.lib.MainLib;

import net.minecraft.block.Block;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.init.Blocks;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;

public class TileEntityExcavator extends TileEntity{

public int direction = 0;
public boolean active = false;

@Override
public void writeToNBT(NBTTagCompound tag)
{
	super.writeToNBT(tag);
	tag.setInteger("direction", direction);
	tag.setBoolean("active", active);
}

@Override
public void readFromNBT(NBTTagCompound tag)
{
	super.readFromNBT(tag);
	this.direction = tag.getInteger("direction");
	this.active = tag.getBoolean("active");
}

@Override
public void updateEntity()
{
	int[] BTD = new int[3];

	switch(this.direction)
	{
	case 0:
		//South
		BTD[0] = xCoord;
		BTD[1] = yCoord;
		BTD[2] = zCoord + 1;
		break;
	case 1:
		//West
		BTD[0] = xCoord - 1;
		BTD[1] = yCoord;
		BTD[2] = zCoord;
		break;
	case 2:
		//North
		BTD[0] = xCoord;
		BTD[1] = yCoord;
		BTD[2] = zCoord - 1;
		break;
	case 3:
		//East
		BTD[0] = xCoord + 1;
		BTD[1] = yCoord;
		BTD[2] = zCoord;
		break;
	}



	if(!worldObj.isRemote)
	{
		float[] floatLocation = MainLib.centerBlock(xCoord, yCoord, zCoord);
		double x = (double) floatLocation[0];
		double y = (double) floatLocation[1] + 1;
		double z = (double) floatLocation[2];

		Block destroyedBlock = worldObj.getBlock(BTD[0], BTD[1], BTD[2]);

		if(worldObj.getBlockPowerInput(xCoord, yCoord, zCoord) > 0)
		{
			if(destroyedBlock != Blocks.air)
			{
				worldObj.setBlockToAir(BTD[0], BTD[1], BTD[2]);
				worldObj.spawnEntityInWorld(new EntityItem(worldObj, x, y + 1, z, new ItemStack(Item.getItemFromBlock(destroyedBlock))));
			}
		}
	}
}
}

 

 

 

And, how can I notify this block of neighbour change (Make this block update or update its texture)?

Sorry, if you find mistaches in my posts.

I am not EN.

And when I post anything on Modder support, it means, I can't help myself and I need your help. And when you decide to delete my topic, just PM me with the reason, please.

Link to comment
Share on other sites

Oh, sorry.

I forgot to place my code inside of my post.

 

Here is it:

 

 

package com.ec.tileentity;

import java.util.Random;

import com.ec.blocks.MyBlocks;
import com.ec.lib.MainLib;

import net.minecraft.block.Block;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.init.Blocks;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;

public class TileEntityExcavator extends TileEntity{

public int direction = 0;
public boolean active = false;

@Override
public void writeToNBT(NBTTagCompound tag)
{
	super.writeToNBT(tag);
	tag.setInteger("direction", direction);
	tag.setBoolean("active", active);
}

@Override
public void readFromNBT(NBTTagCompound tag)
{
	super.readFromNBT(tag);
	this.direction = tag.getInteger("direction");
	this.active = tag.getBoolean("active");
}

@Override
public void updateEntity()
{
	int[] BTD = new int[3];

	switch(this.direction)
	{
	case 0:
		//South
		BTD[0] = xCoord;
		BTD[1] = yCoord;
		BTD[2] = zCoord + 1;
		break;
	case 1:
		//West
		BTD[0] = xCoord - 1;
		BTD[1] = yCoord;
		BTD[2] = zCoord;
		break;
	case 2:
		//North
		BTD[0] = xCoord;
		BTD[1] = yCoord;
		BTD[2] = zCoord - 1;
		break;
	case 3:
		//East
		BTD[0] = xCoord + 1;
		BTD[1] = yCoord;
		BTD[2] = zCoord;
		break;
	}



	if(!worldObj.isRemote)
	{
		float[] floatLocation = MainLib.centerBlock(xCoord, yCoord, zCoord);
		double x = (double) floatLocation[0];
		double y = (double) floatLocation[1] + 1;
		double z = (double) floatLocation[2];

		Block destroyedBlock = worldObj.getBlock(BTD[0], BTD[1], BTD[2]);

		if(worldObj.getBlockPowerInput(xCoord, yCoord, zCoord) > 0)
		{
			if(destroyedBlock != Blocks.air)
			{
				worldObj.setBlockToAir(BTD[0], BTD[1], BTD[2]);
				worldObj.spawnEntityInWorld(new EntityItem(worldObj, x, y + 1, z, new ItemStack(Item.getItemFromBlock(destroyedBlock))));
			}
		}
	}
}
}

 

 

 

And, how can I notify this block of neighbour change (Make this block update or update its texture)?

 

You need these two functions in your class:

public Packet getDescriptionPacket() {

NBTTagCompound tag = new NBTTagCompound();
writeToNBT(tag);
return new S35PacketUpdateTileEntity(this.xCoord, this.yCoord, this.zCoord, 1, tag);

}

public void onDataPacket(NetworkManager net, S35PacketUpdateTileEntity packet) {

readFromNBT(packet.func_148857_g());

}

 

This will send data updates to the client when the chunk with the TE is loaded. It will work on singleplayer and multiplayer.

Romejanic

 

Creator of Witch Hats, Explosive Chickens and Battlefield!

Link to comment
Share on other sites

I explain, why I think they are not saved. But I am not sure, because of this:

1. I place one block (from my mod:excavator) and when I placed it, it created tileentity and writes to it a INT direction. Then, is writed in code: every tick check if is powered by redstone. If true, set BOOLEAN active to true. This boolean is used only for texture. This block will check every tick, if behind it is any block, if true, then drops it on this(machine) block.

2. I leave(exit from) the world and again join (play) the world.

3. I looked at the blocks. All are rotated to the default direction-South(0).

When I place a block next to it's back texture side, and power it with redstone, nothing happens, but when I place a block at side, where back texture side was rototated before, it destroy the block and drop it.

And about the block update.

I made this block react to redstone-when I turn the power ON, the block must change it's texture. But nothing happens while I place or destroy block next to it. I wanted when is redstone on, update or notify block.

 

Sorry, if you find any mistakes, I am writing from mobile now and the keyboard is too small.

Sorry, if you find mistaches in my posts.

I am not EN.

And when I post anything on Modder support, it means, I can't help myself and I need your help. And when you decide to delete my topic, just PM me with the reason, please.

Link to comment
Share on other sites

OK, it worked. :D

And...

Can you explainme, what does this packet? Or how this packet work? It worked, but I don't understand it.

Sorry, if you find mistaches in my posts.

I am not EN.

And when I post anything on Modder support, it means, I can't help myself and I need your help. And when you decide to delete my topic, just PM me with the reason, please.

Link to comment
Share on other sites

On the server side, the

getDescriptionPacket

method is called, and that method returns a

S35PacketUpdateTileEntity

containing and

NBTTagCompound

containing the data you have written to it. Then it sends the packet to the client side and it calls the

onDataPacket

with the packet returned from the

getDescriptionPacket

, in which you read all the data from the

NBTTagCompound

in the packet.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

Well, I understood. :D

Sorry, I am going off topic...

Do you know about good tutorial for leanring TileEntities, that implement IInventory?

I never made them, but I want to learn how-to them.

Sorry, if you find mistaches in my posts.

I am not EN.

And when I post anything on Modder support, it means, I can't help myself and I need your help. And when you decide to delete my topic, just PM me with the reason, please.

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

    • Hey did those crashes happen in the nether by any chance or when you teleported to some far off location within the nether?
    • Ive encountered this issue before, however not to this scale. When i TP in the nether via Xaeros world Map my game sometimes just freezes, like i can still play however no blocks will drop, i cant hit mobs (they also wont move), my hunger and health stay the same even if im in lava or falling, and chunks wont load as if time itself just stopped. Previously after loading into my world id have a small interval where id be able to respawn or tp back to my base and avoid this crash, but now i don't, i just load into this frozen state, ive done everything, used NBTExplorer, tried to tp back, tried to use commands (don't even work), deleted config files, replaced config files, deleted JEI and all the other solutions I've seen people posting. The game would only crash if i force exited or spammed the save and quite button, where this error log appears:  https://paste.ee/p/QjcfN Theres more to the error report but i guess this should be enough to pin point my problem? if anyone knows how to fix this id be very thankful. 
    • ---- Minecraft Crash Report ---- WARNING: coremods are present:   IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)   EngineersDoorsLoadingPlugin (engineers_doors-1.12.2-0.9.1.jar)   XaeroMinimapPlugin (Xaeros-Minimap-Mod-1.12.2.jar)   RenderLibPlugin (RenderLib-1.12.2-1.3.3.jar)   ParticleCullingLoadingPlugin (particleculling-1.12.2-v1.4.1.jar)   DoubleSlabs Plugin (Double-Slabs-Mod-1.12.2.jar)   MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)   LoadingPlugin (AdChimneys-1.12.2-3.5.16.0-build.0654.jar)   MicdoodlePlugin (MicdoodleCore-1.12.2-4.0.2.280.jar)   Quark Plugin (Quark-r1.6-179.jar)   AppleCore (AppleCore-mc1.12.2-3.4.0.jar)   IILoadingPlugin (immersiveintelligence-core-0.2.1.jar)   TickCentral (TickCentral-3.2.jar)   UniDictCoreMod (UniDict-1.12.2-3.0.10.jar)   CXLibraryCore (CXLibrary-1.12.2.jar)   EntityCullingPlugin (EntityCulling-1.12.2-6.4.1.jar)   LoadingPlugin (Bloodmoon-MC1.12.2-1.5.3.jar)   XaeroWorldMapPlugin (World-Map-Mod-1.12.2.jar)   Inventory Tweaks Coremod (InventoryTweaks-1.63.jar)   PhosphorFMLLoadingPlugin (phosphor-1.12.2-0.2.6+build50-universal.jar)   Techguns Core (techguns-1.12.2-2.0.2.0_pre3.2.jar)   IvToolkit (IvToolkit-1.3.3-1.12.jar)   Transformer (harvestcrafttweaker-1.2c.jar)   TransformLoader (DynamicSurroundings-1.12.2-3.6.1.0.jar)   Born in a Barn (Born In A Barn 1.8-1.12-1.2.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)   ForgelinPlugin (Forgelin-1.8.4.jar)   LoadingPlugin (AdPother-1.12.2-1.2.12.0-build.0558.jar)   SteveKunGLibPlugin (SteveKunG's-Lib-1.12.2-1.2.0.jar)   NothiriumPlugin (Nothirium-1.12.2-0.3.4-beta.jar)   GenderLoadingPlugin (iPixelis-Gender-Mod-1.12.2.jar)   CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   FarseekCoreMod (Farseek-1.12-2.5.1.jar)   EnderCorePlugin (EnderCore-1.12.2-0.5.78-core.jar)   MixinBooter (!mixinbooter-4.2.jar)   Plugin (NotEnoughIDs-1.5.4.4.jar)   llibrary (llibrary-core-1.0.11-1.12.2.jar)   AstralCore (astralsorcery-1.12.2-1.10.27.jar)   CreativePatchingLoader (CreativeCore_v1.10.71_mc1.12.2.jar)   CorePlugin (ForgeEndertech-1.12.2-4.5.6.1-build.0648.jar)   TransformerLoader (OpenComputers-MC1.12.2-1.8.3+274990f.jar)   Better Biome Blend (betterbiomeblend-1.12.2-1.1.7-forge.jar) Contact their authors BEFORE contacting forge // Daisy, daisy... Time: 5/27/24 5:51 PM Description: Unexpected error java.lang.IndexOutOfBoundsException     at java.nio.Buffer.checkIndex(Buffer.java:540)     at java.nio.DirectByteBuffer.get(DirectByteBuffer.java:253)     at org.lwjgl.input.Keyboard.isKeyDown(Keyboard.java:407)     at com.github.ipixeli.gender.client.Client.onKey(Client.java:44)     at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_3344_Client_onKey_KeyInputEvent.invoke(.dynamic)     at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90)     at com.github.terminatornl.laggoggles.tickcentral.EventBusTransformer.redirectEvent(EventBusTransformer.java:67)     at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:182)     at net.minecraftforge.fml.common.FMLCommonHandler.fireKeyInput(FMLCommonHandler.java:565)     at net.minecraft.client.Minecraft.func_184118_az(Minecraft.java:2017)     at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1808)     at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:1098)     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:398)     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) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Client thread Stacktrace:     at java.nio.Buffer.checkIndex(Buffer.java:540)     at java.nio.DirectByteBuffer.get(DirectByteBuffer.java:253)     at org.lwjgl.input.Keyboard.isKeyDown(Keyboard.java:407)     at com.github.ipixeli.gender.client.Client.onKey(Client.java:44)     at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_3344_Client_onKey_KeyInputEvent.invoke(.dynamic)     at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90)     at com.github.terminatornl.laggoggles.tickcentral.EventBusTransformer.redirectEvent(EventBusTransformer.java:67)     at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:182)     at net.minecraftforge.fml.common.FMLCommonHandler.fireKeyInput(FMLCommonHandler.java:565)     at net.minecraft.client.Minecraft.func_184118_az(Minecraft.java:2017) -- Affected level -- Details:     Level name: MpServer     All players: 1 total; [GCEntityClientPlayerMP['xXBOOMERXxGaming'/89985, l='MpServer', x=283.58, y=63.00, z=-70.80]]     Chunk stats: MultiplayerChunkCache: 441, 441     Level seed: 0     Level generator: ID 06 - BIOMESOP, ver 0. Features enabled: false     Level generator options:      Level spawn location: World: (-116,64,252), Chunk: (at 12,4,12 in -8,15; contains blocks -128,0,240 to -113,255,255), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)     Level time: 1866857 game time, 1911230 day time     Level dimension: 0     Level storage version: 0x00000 - Unknown?     Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)     Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: false     Forced entities: 70 total; [MoCEntityAnchovy['Anchovy'/90248, l='MpServer', x=353.79, y=61.46, z=-82.67], MoCEntityAnchovy['Anchovy'/90383, l='MpServer', x=268.31, y=61.49, z=-144.29], MoCEntityStingRay['StingRay'/90257, l='MpServer', x=362.87, y=58.08, z=-132.22], EntityItem['item.item.exoticbirds.magpie_egg'/163990, l='MpServer', x=319.54, y=65.00, z=-68.58], MoCEntityFishy['Fishy'/90260, l='MpServer', x=359.40, y=61.48, z=-105.31], MoCEntitySnail['Snail'/90262, l='MpServer', x=252.78, y=71.00, z=9.08], MoCEntityShark['Shark'/90137, l='MpServer', x=307.71, y=60.05, z=-105.16], EntityItem['item.tile.flower2.poppy'/90139, l='MpServer', x=286.45, y=63.00, z=-75.93], EntityItem['item.tile.flower1.dandelion'/90138, l='MpServer', x=281.16, y=63.00, z=-74.54], MoCEntityLeopard['Leopard'/90141, l='MpServer', x=223.02, y=101.00, z=-116.91], MoCEntityBoar['Boar'/90143, l='MpServer', x=217.43, y=74.00, z=-23.61], MoCEntityLeopard['Leopard'/90142, l='MpServer', x=215.01, y=87.00, z=-89.97], MoCEntityGrizzlyBear['GrizzlyBear'/90145, l='MpServer', x=234.60, y=73.00, z=-95.98], MoCEntityCrab['Crab'/90144, l='MpServer', x=236.50, y=60.00, z=-111.15], EntityNautilus['Nautilus'/90147, l='MpServer', x=226.40, y=64.00, z=-40.30], EntitySturgeon['Sturgeon'/90146, l='MpServer', x=232.95, y=59.96, z=-52.95], MoCEntityCrab['Crab'/90149, l='MpServer', x=248.15, y=48.00, z=-120.50], MoCEntitySnail['Snail'/90148, l='MpServer', x=230.38, y=76.50, z=-10.62], MoCEntityCrab['Crab'/90151, l='MpServer', x=243.15, y=49.00, z=-116.50], MoCEntityCrab['Crab'/90150, l='MpServer', x=248.15, y=48.00, z=-119.50], MoCEntityCrab['Crab'/90153, l='MpServer', x=244.15, y=49.00, z=-109.50], MoCEntityCrab['Crab'/90152, l='MpServer', x=246.78, y=48.00, z=-125.48], MoCEntityAnchovy['Anchovy'/90155, l='MpServer', x=242.15, y=61.22, z=-86.21], MoCEntityBass['Bass'/90154, l='MpServer', x=242.30, y=61.00, z=-86.30], EntityHeron['Heron'/90157, l='MpServer', x=251.87, y=81.00, z=-53.62], GCEntityClientPlayerMP['xXBOOMERXxGaming'/89985, l='MpServer', x=283.58, y=63.00, z=-70.80], EntityItem['item.item.exoticbirds.heron_egg'/111788, l='MpServer', x=251.77, y=81.00, z=-52.76], EntitySeagull['Seagull'/90159, l='MpServer', x=250.44, y=85.00, z=-45.23], MoCEntitySnail['Snail'/90158, l='MpServer', x=250.35, y=80.00, z=-36.08], MoCEntityCrab['Crab'/90161, l='MpServer', x=247.50, y=57.00, z=-19.85], MoCEntityCrab['Crab'/90163, l='MpServer', x=265.77, y=48.00, z=-117.84], EntitySeagull['Seagull'/90162, l='MpServer', x=255.35, y=62.57, z=-25.35], MoCEntityAngelFish['AngelFish'/90165, l='MpServer', x=260.15, y=61.00, z=-28.47], MoCEntityAngelFish['AngelFish'/90164, l='MpServer', x=258.72, y=62.35, z=-26.22], MoCEntityAnchovy['Anchovy'/90167, l='MpServer', x=283.55, y=61.96, z=-143.30], MoCEntityAngler['Angler'/90166, l='MpServer', x=278.16, y=62.32, z=-138.45], MoCEntityManderin['Manderin'/90169, l='MpServer', x=275.56, y=61.69, z=-28.63], MoCEntityGrizzlyBear['GrizzlyBear'/90168, l='MpServer', x=281.99, y=64.00, z=-49.93], MoCEntityAngelFish['AngelFish'/90171, l='MpServer', x=273.36, y=62.00, z=-19.15], MoCEntityAngelFish['AngelFish'/90170, l='MpServer', x=280.85, y=61.14, z=-26.46], MoCEntityGrizzlyBear['GrizzlyBear'/90173, l='MpServer', x=289.24, y=62.62, z=-48.30], MoCEntityCrab['Crab'/90172, l='MpServer', x=298.85, y=57.40, z=-95.50], MoCEntitySnail['Snail'/90300, l='MpServer', x=328.76, y=69.00, z=7.49], MoCEntityCrab['Crab'/90175, l='MpServer', x=308.50, y=51.38, z=-110.15], MoCEntityAngelFish['AngelFish'/90174, l='MpServer', x=301.29, y=61.77, z=-40.78], MoCEntityAngelFish['AngelFish'/90177, l='MpServer', x=333.96, y=61.78, z=-137.79], MoCEntityStingRay['StingRay'/90179, l='MpServer', x=315.92, y=60.01, z=-116.83], MoCEntityAnchovy['Anchovy'/90178, l='MpServer', x=329.30, y=62.38, z=-114.27], EntityMagpie['Magpie'/90181, l='MpServer', x=320.23, y=65.00, z=-67.85], EntityBooby['Booby'/90180, l='MpServer', x=326.48, y=67.00, z=-72.85], MoCEntityFishy['Fishy'/90183, l='MpServer', x=327.58, y=61.95, z=-36.55], MoCEntityAngelFish['AngelFish'/90182, l='MpServer', x=322.81, y=61.85, z=-57.30], MoCEntityAnchovy['Anchovy'/90185, l='MpServer', x=336.36, y=61.75, z=-121.64], MoCEntityManderin['Manderin'/90184, l='MpServer', x=330.88, y=62.00, z=-5.85], MoCEntityAngler['Angler'/90187, l='MpServer', x=351.22, y=62.40, z=-99.80], MoCEntityAngler['Angler'/90186, l='MpServer', x=338.47, y=61.50, z=-119.37], EntityPeafowl['Peafowl'/90189, l='MpServer', x=339.11, y=76.00, z=-68.25], EntityHeron['Heron'/90188, l='MpServer', x=339.60, y=76.00, z=-66.99], EntityItem['item.item.exoticbirds.peafowl_egg'/90191, l='MpServer', x=339.65, y=76.00, z=-67.74], EntityDuck['Duck'/90193, l='MpServer', x=344.15, y=77.00, z=-51.54], EntityBuckAlpine['Alpine Buck'/90192, l='MpServer', x=346.80, y=75.00, z=-62.81], MoCEntityFishy['Fishy'/90195, l='MpServer', x=344.85, y=62.49, z=-35.98], MoCEntityBass['Bass'/90197, l='MpServer', x=336.82, y=60.41, z=-39.35], MoCEntityFishy['Fishy'/90196, l='MpServer', x=336.70, y=62.60, z=-35.26], MoCEntityAngelFish['AngelFish'/90204, l='MpServer', x=340.81, y=61.58, z=-144.99], MoCEntityMaggot['Maggot'/90219, l='MpServer', x=205.32, y=79.00, z=-8.76], MoCEntityMaggot['Maggot'/90218, l='MpServer', x=205.03, y=79.00, z=-8.29], MoCEntityAngler['Angler'/90221, l='MpServer', x=322.93, y=62.28, z=-147.10], MoCEntityPiranha['Piranha'/90220, l='MpServer', x=326.50, y=61.08, z=-149.50], EntityItem['item.item.exoticbirds.booby_egg'/101630, l='MpServer', x=326.55, y=67.00, z=-72.60]]     Retry entities: 0 total; []     Server brand: fml,forge     Server type: Integrated singleplayer server Stacktrace:     at net.minecraft.client.multiplayer.WorldClient.func_72914_a(WorldClient.java:420)     at net.minecraft.client.Minecraft.func_71396_d(Minecraft.java:2741)     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:427)     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) -- 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: 2046147824 bytes (1951 MB) / 6908018688 bytes (6588 MB) up to 6908018688 bytes (6588 MB)     JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx7008m -Xms256m     IntCache: cache: 0, tcache: 0, allocated: 4, tallocated: 105     FML: MCP 9.42 Powered by Forge 14.23.5.2860 265 mods loaded, 265 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                                |     |:------ |:--------------------------------- |:------------------------ |:---------------------------------------------------- |:---------------------------------------- |     | LCHIJA | minecraft                         | 1.12.2                   | minecraft.jar                                        | None                                     |     | LCHIJA | mcp                               | 9.42                     | minecraft.jar                                        | None                                     |     | LCHIJA | FML                               | 8.0.99.99                | forge-1.12.2-14.23.5.2860.jar                        | e3c3d50c7c986df74c645c0ac54639741c90a557 |     | LCHIJA | forge                             | 14.23.5.2860             | forge-1.12.2-14.23.5.2860.jar                        | e3c3d50c7c986df74c645c0ac54639741c90a557 |     | LCHIJA | creativecoredummy                 | 1.0.0                    | minecraft.jar                                        | None                                     |     | LCHIJA | ivtoolkit                         | 1.3.3-1.12               | minecraft.jar                                        | None                                     |     | LCHIJA | micdoodlecore                     |                          | minecraft.jar                                        | None                                     |     | LCHIJA | xaeroworldmap_core                | 1.12.2-1.0               | minecraft.jar                                        | None                                     |     | LCHIJA | xaerominimap_core                 | 1.12.2-1.0               | minecraft.jar                                        | None                                     |     | LCHIJA | mixinbooter                       | 4.2                      | minecraft.jar                                        | None                                     |     | LCHIJA | foamfixcore                       | 7.7.4                    | minecraft.jar                                        | None                                     |     | LCHIJA | opencomputers|core                | 1.8.3                    | minecraft.jar                                        | None                                     |     | LCHIJA | tickcentral                       | 3.2                      | TickCentral-3.2.jar                                  | None                                     |     | LCHIJA | techguns_core                     | 1.12.2-1.0               | minecraft.jar                                        | None                                     |     | LCHIJA | forgelin                          | 1.8.4                    | Forgelin-1.8.4.jar                                   | None                                     |     | LCHIJA | alib                              | 1.0.12                   | A-Lib-1.12.2.jar                                     | None                                     |     | LCHIJA | forgeendertech                    | 1.12.2-4.5.6.1           | ForgeEndertech-1.12.2-4.5.6.1-build.0648.jar         | None                                     |     | LCHIJA | adpother                          | 1.12.2-1.2.12.0          | AdPother-1.12.2-1.2.12.0-build.0558.jar              | None                                     |     | LCHIJA | ctm                               | MC1.12.2-1.0.2.31        | CTM-MC1.12.2-1.0.2.31.jar                            | None                                     |     | LCHIJA | appliedenergistics2               | rv6-stable-7             | appliedenergistics2-rv6-stable-7.jar                 | dfa4d3ac143316c6f32aa1a1beda1e34d42132e5 |     | LCHIJA | bdlib                             | 1.14.4.1                 | bdlib-1.14.4.1-mc1.12.2.jar                          | None                                     |     | LCHIJA | ae2stuff                          | 0.7.0.4                  | ae2stuff-0.7.0.4-mc1.12.2.jar                        | None                                     |     | LCHIJA | baubles                           | 1.5.2                    | Baubles-1.12-1.5.2.jar                               | None                                     |     | LCHIJA | endercore                         | 1.12.2-0.5.78            | EnderCore-1.12.2-0.5.78.jar                          | None                                     |     | LCHIJA | crafttweaker                      | 4.1.20                   | CraftTweaker2-1.12-4.1.20.694.jar                    | None                                     |     | LCHIJA | alchemistry                       | 1.0.36                   | Alchemistry-Mod-1.12.2.jar                           | None                                     |     | LCHIJA | endertweaker                      | 1.2.1                    | EnderTweaker-1.12.2-1.2.1.jar                        | None                                     |     | LCHIJA | mtlib                             | 3.0.7                    | MTLib-3.0.7.jar                                      | None                                     |     | LCHIJA | modtweaker                        | 4.0.19                   | modtweaker-4.0.20.11.jar                             | None                                     |     | LCHIJA | jei                               | 4.16.1.1003              | jei_1.12.2-4.16.1.1003.jar                           | None                                     |     | LCHIJA | biomesoplenty                     | 7.0.1.2445               | BiomesOPlenty-1.12.2-7.0.1.2445-universal.jar        | None                                     |     | LCHIJA | redstoneflux                      | 2.1.1                    | RedstoneFlux-1.12-2.1.1.1-universal.jar              | None                                     |     | LCHIJA | cofhcore                          | 4.6.6                    | CoFHCore-1.12.2-4.6.6.1-universal.jar                | None                                     |     | LCHIJA | craftstudioapi                    | 1.0.0                    | CraftStudioAPI-universal-1.0.1.95-mc1.12-alpha.jar   | None                                     |     | LCHIJA | harvestcraft                      | 1.12.2zb                 | Pam's HarvestCraft 1.12.2zg.jar                      | None                                     |     | LCHIJA | animania                          | 1.7.3                    | animania-1.12.2-1.7.3.jar                            | None                                     |     | LCHIJA | codechickenlib                    | 3.2.3.358                | CodeChickenLib-1.12.2-3.2.3.358-universal.jar        | f1850c39b2516232a2108a7bd84d1cb5df93b261 |     | LCHIJA | brandonscore                      | 2.4.20                   | BrandonsCore-1.12.2-2.4.20.162-universal.jar         | None                                     |     | LCHIJA | cofhworld                         | 1.4.0                    | CoFHWorld-1.12.2-1.4.0.1-universal.jar               | None                                     |     | LCHIJA | thermalfoundation                 | 2.6.7                    | ThermalFoundation-1.12.2-2.6.7.1-universal.jar       | None                                     |     | LCHIJA | draconicevolution                 | 2.3.28                   | Draconic-Evolution-1.12.2-2.3.28.354-universal.jar   | None                                     |     | LCHIJA | thermalexpansion                  | 5.5.7                    | ThermalExpansion-1.12.2-5.5.7.1-universal.jar        | None                                     |     | LCHIJA | enderio                           | 5.2.66                   | EnderIO-1.12.2-5.2.66.jar                            | None                                     |     | LCHIJA | mantle                            | 1.12-1.3.3.55            | Mantle-Mod-1.12.2.jar                                | None                                     |     | LCHIJA | projecte                          | 1.12.2-PE1.4.1           | ProjectE-1.12.2-PE1.4.1.jar                          | None                                     |     | LCHIJA | chisel                            | MC1.12.2-1.0.2.45        | Chisel-MC1.12.2-1.0.2.45.jar                         | None                                     |     | LCHIJA | enderiointegrationtic             | 5.2.66                   | EnderIO-1.12.2-5.2.66.jar                            | None                                     |     | LCHIJA | quark                             | r1.6-179                 | Quark-r1.6-179.jar                                   | None                                     |     | LCHIJA | tconstruct                        | 1.12.2-2.13.0.183        | Tinkers-Construct-Mod-1.12.2.jar                     | None                                     |     | LCHIJA | p455w0rdslib                      | 2.3.161                  | p455w0rdslib-1.12.2-2.3.161.jar                      | 186bc454cd122c9c2f1aa4f95611254bcc543363 |     | LCHIJA | ae2wtlib                          | 1.0.34                   | AE2WTLib-1.12.2-1.0.34.jar                           | 186bc454cd122c9c2f1aa4f95611254bcc543363 |     | LCHIJA | aiimprovements                    | 0.0.1.3                  | AIImprovements-1.12-0.0.1b3.jar                      | None                                     |     | LCHIJA | alcatrazcore                      | 1.0.4                    | alcatrazcore-1.0.4.jar                               | 3c2d6be715971d1ed58a028cdb3fae72987fc934 |     | LCHIJA | engineersdecor                    | 1.1.5                    | engineersdecor-1.12.2-1.1.5.jar                      | ed58ed655893ced6280650866985abcae2bf7559 |     | LCHIJA | railcraft                         | 12.0.0                   | railcraft-12.0.0.jar                                 | a0c255ac501b2749537d5824bb0f0588bf0320fa |     | LCHIJA | theoneprobe                       | 1.4.28                   | theoneprobe-1.12-1.4.28.jar                          | None                                     |     | LCHIJA | immersiveengineering              | 0.12-98                  | ImmersiveEngineering-0.12-98.jar                     | None                                     |     | LCHIJA | alternatingflux                   | 0.12.2-2                 | alternatingflux-0.12.2-2.jar                         | None                                     |     | LCHIJA | antiqueatlas                      | 4.6.3                    | antiqueatlas-1.12.2-4.6.3.jar                        | None                                     |     | LCHIJA | antiqueatlasoverlay               | 1.2                      | antiqueatlas-1.12.2-4.6.3.jar                        | None                                     |     | LCHIJA | applecore                         | 3.4.0                    | AppleCore-mc1.12.2-3.4.0.jar                         | None                                     |     | LCHIJA | appleskin                         | 1.0.14                   | AppleSkin-mc1.12-1.0.14.jar                          | None                                     |     | LCHIJA | architecturecraft                 | @VERSION@                | architecturecraft-1.12-3.108.jar                     | None                                     |     | LCHIJA | astralsorcery                     | 1.10.27                  | astralsorcery-1.12.2-1.10.27.jar                     | a0f0b759d895c15ceb3e3bcb5f3c2db7c582edf0 |     | LCHIJA | autoreglib                        | 1.3-32                   | AutoRegLib-1.3-32.jar                                | None                                     |     | LCHIJA | avaritia                          | 3.3.0                    | Avaritia-1.12.2-3.3.0.33-universal.jar               | None                                     |     | LCHIJA | base                              | 3.14.0                   | base-1.12.2-3.14.0.jar                               | None                                     |     | LCHIJA | betterbiomeblend                  | 1.12.2-1.1.7-forge       | betterbiomeblend-1.12.2-1.1.7-forge.jar              | None                                     |     | LCHIJA | betterboilers                     | 1.2                      | BetterBoilers-1.2.jar                                | None                                     |     | LCHIJA | betterquesting                    | 3.5.329                  | BetterQuesting-3.5.329.jar                           | None                                     |     | LCHIJA | bibliocraft                       | 2.4.6                    | BiblioCraft[v2.4.6][MC1.12.2].jar                    | None                                     |     | LCHIJA | blockcraftery                     | 1.12.2-1.3.1             | blockcraftery-1.12.2-1.3.1.jar                       | None                                     |     | LCHIJA | bloodmoon                         | 1.5.3                    | Bloodmoon-MC1.12.2-1.5.3.jar                         | d72e0dd57935b3e9476212aea0c0df352dd76291 |     | LCHIJA | bookshelf                         | 2.3.590                  | Bookshelf-1.12.2-2.3.590.jar                         | d476d1b22b218a10d845928d1665d45fce301b27 |     | LCHIJA | buildinggadgets                   | 2.8.4                    | BuildingGadgets-2.8.4.jar                            | None                                     |     | LCHIJA | capsule                           | 1.12.2-3.4.76            | Capsule-1.12.2-3.4.76.jar                            | None                                     |     | LCHIJA | gamestages                        | 2.0.123                  | GameStages-1.12.2-2.0.123.jar                        | d476d1b22b218a10d845928d1665d45fce301b27 |     | LCHIJA | carryon                           | 1.12.3                   | carryon-1.12.2-1.12.7.23.jar                         | None                                     |     | LCHIJA | castle_dungeons                   | 1.3                      | Castle-Dungeons-Mod-1.12.2.jar                       | None                                     |     | LCHIJA | chameleon                         | 1.12-4.1.3               | Chameleon-1.12-4.1.3.jar                             | None                                     |     | LCHIJA | chiselsandbits                    | 14.33                    | chiselsandbits-14.33.jar                             | None                                     |     | LCHIJA | chunkpregenerator                 | 2.5.0                    | Chunk Pregenerator-V1.12-2.5.7.jar                   | None                                     |     | LCHIJA | clumps                            | 3.1.2                    | Clumps-3.1.2.jar                                     | None                                     |     | LCHIJA | toughasnails                      | 3.1.0.141                | Tough-As-Nails-Mod-1.12.2.jar                        | None                                     |     | LCHIJA | comforts                          | 1.4.1.3                  | comforts-1.12.2-1.4.1.3.jar                          | 2484ef4d131fdc0dca0647aa21b7b944ddb935a1 |     | LCHIJA | storagedrawers                    | 5.5.0                    | StorageDrawers-1.12.2-5.5.0.jar                      | None                                     |     | LCHIJA | compactdrawers                    | 1.12.2-1.0.5.121         | Compact-Drawers-Mod-1.12.2.jar                       | None                                     |     | LCHIJA | contenttweaker                    | 1.12.2-4.10.0            | ContentTweaker-1.12.2-4.10.0.jar                     | None                                     |     | LCHIJA | conarm                            | 1.2.5.10                 | Constructs-Armory-Mod-1.12.2.jar                     | b33d2c8df492beff56d1bbbc92da49b8ab7345a1 |     | LCHIJA | controlling                       | 3.0.10                   | Controlling-3.0.12.2.jar                             | None                                     |     | LCHIJA | cookingforblockheads              | 6.5.0                    | CookingForBlockheads_1.12.2-6.5.0.jar                | None                                     |     | LCHIJA | extendedrenderer                  | v1.0                     | coroutil-1.12.1-1.2.37.jar                           | None                                     |     | LCHIJA | coroutil                          | 1.12.1-1.2.37            | coroutil-1.12.1-1.2.37.jar                           | None                                     |     | LCHIJA | configmod                         | v1.0                     | coroutil-1.12.1-1.2.37.jar                           | None                                     |     | LCHIJA | cosmeticarmorreworked             | 1.12.2-v5a               | CosmeticArmorReworked-1.12.2-v5a.jar                 | aaaf83332a11df02406e9f266b1b65c1306f0f76 |     | LCHIJA | craftablehorsearmour              | 1.3                      | CraftableHorseArmour-1.3.0-1.12.jar                  | None                                     |     | LCHIJA | ctgui                             | 1.0.0                    | CraftTweaker2-1.12-4.1.20.694.jar                    | None                                     |     | LCHIJA | crafttweakerjei                   | 2.0.3                    | CraftTweaker2-1.12-4.1.20.694.jar                    | None                                     |     | LCHIJA | creativecore                      | 1.10.0                   | CreativeCore_v1.10.71_mc1.12.2.jar                   | None                                     |     | LCHIJA | cucumber                          | 1.1.3                    | Cucumber-1.12.2-1.1.3.jar                            | None                                     |     | LCHIJA | customspawner                     | 3.11.4                   | Custom-Mob-Spawner-Mod-1.12.2.jar                    | None                                     |     | LCHIJA | cxlibrary                         | 1.6.1                    | CXLibrary-1.12.2.jar                                 | None                                     |     | LCHIJA | ptrmodellib                       | 1.0.5                    | PTRLib-1.0.5.jar                                     | None                                     |     | LCHIJA | props                             | 2.6.3.7                  | Decocraft-2.6.3.7_1.12.2.jar                         | None                                     |     | LCHIJA | desirepaths                       | 1.12.1-1.2.8             | desirepaths-1.12.1-1.2.8.jar                         | None                                     |     | LCHIJA | diethopper                        | 1.1                      | diethopper-1.1.jar                                   | None                                     |     | LCHIJA | dirt2path                         | 1.7.1                    | dirt2path-1.8.0.jar                                  | None                                     |     | LCHIJA | doubleslabs                       | 0.12.2                   | Double-Slabs-Mod-1.12.2.jar                          | None                                     |     | LCHIJA | reccomplex                        | 1.4.8.5                  | RecurrentComplex-1.4.8.5.jar                         | None                                     |     | LCHIJA | dynamictrees                      | 1.12.2-0.9.28            | DynamicTrees-1.12.2-0.9.28.jar                       | None                                     |     | LCHIJA | dynamictreesphc                   | 2.0.6                    | Dynamic-Trees-Pams-Harvestcraft-Mod-Forge-1.12.2.jar | None                                     |     | LCHIJA | dynamictreestconstruct            | 1.12.2-1.2.7             | Dynamic-Trees-Tinkers-Construct-Mod-Forge-1.12.2.jar | None                                     |     | LCHIJA | galacticraftcore                  | 4.0.2.280                | GalacticraftCore-1.12.2-4.0.2.280.jar                | None                                     |     | LCHIJA | sereneseasons                     | 1.2.18                   | SereneSeasons-1.12.2-1.2.18-universal.jar            | None                                     |     | LCHIJA | orelib                            | 3.6.0.1                  | OreLib-1.12.2-3.6.0.1.jar                            | 7a2128d395ad96ceb9d9030fbd41d035b435753a |     | LCHIJA | dsurround                         | 3.6.1.0                  | DynamicSurroundings-1.12.2-3.6.1.0.jar               | 7a2128d395ad96ceb9d9030fbd41d035b435753a |     | LCHIJA | dynamictreesbop                   | 1.12.2-1.5.1             | DynamicTreesBOP-1.12.2-1.5.1.jar                     | None                                     |     | LCHIJA | dynamictreesquark                 | 1.12.2-1.0.6             | DynamicTreesQuark-1.12.2-1.0.6.jar                   | None                                     |     | LCHIJA | elevatorid                        | 1.3.14                   | ElevatorMod-1.12.2-1.3.14.jar                        | None                                     |     | LCHIJA | csb_ench_table                    | 1.1.3                    | EnchantingTable-1.12-1.1.3.jar                       | None                                     |     | LCHIJA | enderiobase                       | 5.2.66                   | EnderIO-1.12.2-5.2.66.jar                            | None                                     |     | LCHIJA | enderioconduits                   | 5.2.66                   | EnderIO-1.12.2-5.2.66.jar                            | None                                     |     | LCHIJA | enderioconduitsappliedenergistics | 5.2.66                   | EnderIO-1.12.2-5.2.66.jar                            | None                                     |     | LCHIJA | opencomputers                     | 1.8.3                    | OpenComputers-MC1.12.2-1.8.3+274990f.jar             | None                                     |     | LCHIJA | enderioconduitsopencomputers      | 5.2.66                   | EnderIO-1.12.2-5.2.66.jar                            | None                                     |     | LCHIJA | enderioconduitsrefinedstorage     | 5.2.66                   | EnderIO-1.12.2-5.2.66.jar                            | None                                     |     | LCHIJA | enderiointegrationforestry        | 5.2.66                   | EnderIO-1.12.2-5.2.66.jar                            | None                                     |     | LCHIJA | enderiointegrationticlate         | 5.2.66                   | EnderIO-1.12.2-5.2.66.jar                            | None                                     |     | LCHIJA | enderioinvpanel                   | 5.2.66                   | EnderIO-1.12.2-5.2.66.jar                            | None                                     |     | LCHIJA | enderiomachines                   | 5.2.66                   | EnderIO-1.12.2-5.2.66.jar                            | None                                     |     | LCHIJA | enderiopowertools                 | 5.2.66                   | EnderIO-1.12.2-5.2.66.jar                            | None                                     |     | LCHIJA | enderstorage                      | 2.4.6.137                | EnderStorage-1.12.2-2.4.6.137-universal.jar          | f1850c39b2516232a2108a7bd84d1cb5df93b261 |     | LCHIJA | engineersdoors                    | 0.9.1                    | engineers_doors-1.12.2-0.9.1.jar                     | None                                     |     | LCHIJA | renderlib                         | 1.3.3                    | RenderLib-1.12.2-1.3.3.jar                           | None                                     |     | LCHIJA | entityculling                     | 6.4.1                    | EntityCulling-1.12.2-6.4.1.jar                       | None                                     |     | LCHIJA | valkyrielib                       | 1.12.2-2.0.20.1          | valkyrielib-1.12.2-2.0.20.1.jar                      | None                                     |     | LCHIJA | environmentaltech                 | 1.12.2-2.0.20.1          | environmentaltech-1.12.2-2.0.20.1.jar                | None                                     |     | LCHIJA | oreberries                        | 0.5.0                    | Oreberries-Mod-1.12.2.jar                            | None                                     |     | LCHIJA | exnihilocreatio                   | 1.12.2-0.4.7.2           | exnihilocreatio-1.12.2-0.4.7.2.jar                   | None                                     |     | LCHIJA | excompressum                      | 3.0.32                   | ExCompressum_1.12.2-3.0.32.jar                       | None                                     |     | LCHIJA | exoticbirds                       | 1.0                      | Exotic Birds 1.12.2-3.2.0.jar                        | None                                     |     | LCHIJA | extendedcrafting                  | 1.5.6                    | ExtendedCrafting-1.12.2-1.5.6.jar                    | None                                     |     | LCHIJA | lockyzextradimensionsmod          | V.2.4.0 Part 1           | Extra-Dimensions-Mod-1.12.2.jar                      | None                                     |     | LCHIJA | galacticraftplanets               | 4.0.2.280                | Galacticraft-Planets-1.12.2-4.0.2.280.jar            | None                                     |     | LCHIJA | mjrlegendslib                     | 1.12.2-1.2.1             | MJRLegendsLib-1.12.2-1.2.1.jar                       | b02331787272ec3515ebe63ecdeea0d746653468 |     | LCHIJA | extraplanets                      | 1.12.2-0.7.7             | ExtraPlanets-1.12.2-0.7.7.jar                        | b02331787272ec3515ebe63ecdeea0d746653468 |     | LCHIJA | farseek                           | 2.5.1                    | Farseek-1.12-2.5.1.jar                               | None                                     |     | LCHIJA | fastfurnace                       | 1.3.1                    | FastFurnace-1.12.2-1.3.1.jar                         | None                                     |     | LCHIJA | fastbench                         | 1.7.4                    | FastWorkbench-1.12.2-1.7.4.jar                       | None                                     |     | LCHIJA | flansmod                          | 5.10.0                   | Flan's Mod-1.12.2-5.10.0.jar                         | None                                     |     | LCHIJA | fluxnetworks                      | 4.1.0                    | FluxNetworks-1.12.2-4.1.1.34.jar                     | None                                     |     | LCHIJA | foamfix                           | @VERSION@                | foamfix-0.10.15-1.12.2.jar                           | None                                     |     | LCHIJA | llibrary                          | 1.7.20                   | LLibrary-1.12.2.jar                                  | b9f30a813bee3b9dd5652c460310cfcd54f6b7ec |     | LCHIJA | fossil                            | 8.0.5                    | Fossils-and-Archeology-Revival-Mod-1.12.2.jar        | None                                     |     | LCHIJA | fpsreducer                        | mc1.12.2-1.20            | FpsReducer-mc1.12.2-1.20.jar                         | None                                     |     | LCHIJA | freelook                          | 1.2.2                    | FreeLook-1.2.2.jar                                   | None                                     |     | LCHIJA | galacticrafttweaker               | 1.12.2-1.0.3             | GalacticraftTweaker-1.12.2-1.0.3.jar                 | b02331787272ec3515ebe63ecdeea0d746653468 |     | LCHIJA | gravestone                        | 1.10.3                   | gravestone-1.10.3.jar                                | None                                     |     | LCHIJA | hesm                              | 1.1                      | haloenergyswordsmod-1.1.jar                          | None                                     |     | LCHIJA | harvestcrafttweaker               | @VERSION@                | harvestcrafttweaker-1.2c.jar                         | None                                     |     | LCHIJA | hw_inv                            | 1.12.1-1.1.13            | hostileworlds_invasions-1.12.1-1.1.13.jar            | None                                     |     | LCHIJA | hungertweaker                     | 1.3.0                    | HungerTweaker-1.12.2-1.3.0.jar                       | None                                     |     | LCHIJA | waila                             | 1.8.26                   | Hwyla-1.8.26-B41_1.12.2.jar                          | None                                     |     | LCHIJA | icbmclassic                       | 1.12.2-4.0.1.75          | ICBM-classic-1.12.2-4.0.1b75.jar                     | None                                     |     | LCHIJA | immersive_energy                  | 0.5.5                    | Immersive-Energy-Mod-Forge-1.12.2.jar                | None                                     |     | LCHIJA | immersivepetroleum                | 1.1.10                   | immersivepetroleum-1.12.2-1.1.10.jar                 | None                                     |     | LCHIJA | immersiveposts                    | 0.2.1                    | ImmersivePosts-0.2.1.jar                             | 0ba8738eadcf158e7fe1452255a73a022fb15feb |     | LCHIJA | trackapi                          | 1.2                      | TrackAPI-1.2.jar                                     | None                                     |     | LCHIJA | universalmodcore                  | 1.1.4                    | UniversalModCore-1.12.2-forge-1.1.4-2b81e7.jar       | None                                     |     | LCHIJA | immersiverailroading              | 1.9.1                    | ImmersiveRailroading-1.12.2-forge-1.9.1.jar          | None                                     |     | LCHIJA | incontrol                         | 3.9.18                   | incontrol-1.12-3.9.18.jar                            | None                                     |     | LCHIJA | infilter                          | 2.0.0                    | infilter-2.0.0.jar                                   | None                                     |     | LCHIJA | instantunify                      | 1.1.2                    | instantunify-1.12.2-1.1.2.jar                        | None                                     |     | LCHIJA | inventorytweaks                   | 1.63+release.109.220f184 | InventoryTweaks-1.63.jar                             | 55d2cd4f5f0961410bf7b91ef6c6bf00a766dcbe |     | LCHIJA | gender                            | 1.2.9                    | iPixelis-Gender-Mod-1.12.2.jar                       | None                                     |     | LCHIJA | ironbackpacks                     | 1.12.2-3.0.8-12          | IronBackpacks-1.12.2-3.0.8-12.jar                    | None                                     |     | LCHIJA | ironchest                         | 1.12.2-7.0.67.844        | ironchest-1.12.2-7.0.72.847.jar                      | None                                     |     | LCHIJA | itemstages                        | 2.0.49                   | ItemStages-1.12.2-2.0.49.jar                         | d476d1b22b218a10d845928d1665d45fce301b27 |     | LCHIJA | jehc                              | 1.7.2                    | just-enough-harvestcraft-1.12.2-1.7.2.jar            | None                                     |     | LCHIJA | jee                               | 1.0.8                    | JustEnoughEnergistics-1.12.2-1.0.8.jar               | None                                     |     | LCHIJA | justenoughpetroleum               | 0.1                      | JustEnoughPetroleum-0.1.jar                          | None                                     |     | LCHIJA | jeresources                       | 0.9.2.60                 | JustEnoughResources-1.12.2-0.9.2.60.jar              | None                                     |     | LCHIJA | kleeslabs                         | 5.4.12                   | KleeSlabs_1.12.2-5.4.12.jar                          | None                                     |     | LCHIJA | laggoggles                        | 5                        | LagGoggles-1.12.2-5.9-140.jar                        | None                                     |     | LCHIJA | lootbags                          | 2.5.8.5                  | LootBags-Mod-1.12.2.jar                              | None                                     |     | LCHIJA | lunatriuscore                     | 1.2.0.42                 | LunatriusCore-1.12.2-1.2.0.42-universal.jar          | None                                     |     | LCHIJA | mcwbridges                        | 1.0.6                    | Macaws-Bridges-Mod-1.12.2.jar                        | None                                     |     | LCHIJA | immersivetech                     | 1.9.100                  | MCTImmersiveTechnology-1.12.2-1.9.100.jar            | None                                     |     | LCHIJA | mekanism                          | 1.12.2-9.8.3.390         | Mekanism-1.12.2-9.8.3.390.jar                        | None                                     |     | LCHIJA | minecraftboom                     | 1.4.3                    | Minecraft-Boom-Mod-Forge-1.12.2.jar                  | None                                     |     | LCHIJA | mocreatures                       | 12.0.5                   | Mo-Creatures-Mod-1.12.2.jar                          | None                                     |     | LCHIJA | moarsigns                         | 6.0.0.11                 | MoarSigns-1.12.2-6.0.0.11.jar                        | 5a57c7d1420cf4c58f53ea2a298ebef8215ede63 |     | LCHIJA | mob_grinding_utils                | 0.3.13                   | MobGrindingUtils-0.3.13.jar                          | None                                     |     | LCHIJA | mobstages                         | 2.0.8                    | MobStages-1.12.2-2.0.8.jar                           | d476d1b22b218a10d845928d1665d45fce301b27 |     | LCHIJA | modernweaponspack                 | 5.8.2                    | Modern Warfare-Content Pack-1.12.2-5.8.2.jar         | None                                     |     | LCHIJA | modularmachinery                  | 1.11.1                   | modularmachinery-1.12.2-1.11.1.jar                   | a0f0b759d895c15ceb3e3bcb5f3c2db7c582edf0 |     | LCHIJA | moreavaritia                      | 3.5                      | More-Avaritia-Mod-Forge-1.12.2.jar                   | None                                     |     | LCHIJA | stevekung's_lib                   | 1.2.0                    | SteveKunG's-Lib-1.12.2-1.2.0.jar                     | None                                     |     | LCHIJA | moreplanets                       | 2.2.2                    | More-Planets-1.12.2-2.2.2-GC280.jar                  | None                                     |     | LCHIJA | moreplanetsextras                 | 1.12.2-1.0               | More-Planets-Extras-Mod-Forge-1.12.2.jar             | None                                     |     | LCHIJA | mousetweaks                       | 2.10                     | MouseTweaks-2.10-mc1.12.2.jar                        | None                                     |     | LCHIJA | multipagechest                    | 1.9.1                    | Multi-Page-Chest-Mod-Forge-1.12.2.jar                | None                                     |     | LCHIJA | multiblockstages                  | 1.2.0                    | multiblockstages-1.2.0.jar                           | None                                     |     | LCHIJA | qwebnm_multiversepouch            | v1.3.1                   | Multiverse-Pouch-Mod-Forge-1.12.2.jar                | None                                     |     | LCHIJA | mysticalagriculture               | 1.7.5                    | MysticalAgriculture-1.12.2-1.7.5.jar                 | None                                     |     | LCHIJA | mysticalagradditions              | 1.3.2                    | MysticalAgradditions-1.12.2-1.3.2.jar                | None                                     |     | LCHIJA | mystagradcompat                   | 1.2                      | MystAgrad-Cloche-Compat-Mod-1.12.2.jar               | None                                     |     | LCHIJA | naturescompass                    | 1.8.5                    | NaturesCompass-1.12.2-1.8.5.jar                      | None                                     |     | LCHIJA | neat                              | 1.4-17                   | Neat 1.4-17.jar                                      | None                                     |     | LCHIJA | wawla                             | 2.6.275                  | Wawla-1.12.2-2.6.275.jar                             | d476d1b22b218a10d845928d1665d45fce301b27 |     | LCHIJA | matteroverdrive                   | 0.7.0.0                  | MatterOverdrive-1.12.2-0.7.1.0-universal.jar         | None                                     |     | LCHIJA | netherendingores                  | 1.12.2-1.4.2             | Netherending-Ores-1.12.2-1.4.2.jar                   | None                                     |     | LCHIJA | netherportalfix                   | 5.3.17                   | NetherPortalFix_1.12.1-5.3.17.jar                    | None                                     |     | LCHIJA | neid                              | 1.5.4.4                  | NotEnoughIDs-1.5.4.4.jar                             | None                                     |     | LCHIJA | nei                               | 2.4.3                    | NotEnoughItems-1.12.2-2.4.3.245-universal.jar        | f1850c39b2516232a2108a7bd84d1cb5df93b261 |     | LCHIJA | nothirium                         | 0.3.4-beta               | Nothirium-1.12.2-0.3.4-beta.jar                      | None                                     |     | LCHIJA | notreepunching                    | 2.0.21                   | notreepunching-2.0.21.jar                            | None                                     |     | LCHIJA | nuclearcraft                      | 2.18zz                   | NuclearCraft-2.18zz-1.12.2.jar                       | None                                     |     | LCHIJA | nutrition                         | 4.6.1                    | Nutrition-1.12.2-4.6.1.jar                           | None                                     |     | LCHIJA | openablewindows                   | 0.0.1                    | Openable-Windows-Mod-1.12.2.jar                      | None                                     |     | LCHIJA | ore_biome                         | 1.0.1                    | Ore-Biome-Mod-Forge-1.12.2.jar                       | None                                     |     | LCHIJA | oreexcavation                     | 1.4.150                  | OreExcavation-1.4.150.jar                            | None                                     |     | LCHIJA | orestages                         | 2.0.37                   | OreStages-1.12.2-2.0.37.jar                          | d476d1b22b218a10d845928d1665d45fce301b27 |     | LCHIJA | particleculling                   | v1.4.1                   | particleculling-1.12.2-v1.4.1.jar                    | None                                     |     | LCHIJA | performant                        | 1.12.2-1.5               | performant-1.11.jar                                  | None                                     |     | LCHIJA | placebo                           | 1.6.0                    | Placebo-1.12.2-1.6.1.jar                             | None                                     |     | LCHIJA | pollutantpump                     | 1.3.0                    | pollutantpump-1.12.2-1.3.0.jar                       | None                                     |     | LCHIJA | projectex                         | 1.2.0.40                 | Project-EX-Mod-Forge-1.12.2.jar                      | None                                     |     | LCHIJA | projecteintegration               | 1.12.2                   | ProjectE-Integration-Mod-Forge-1.12.2.jar            | 342c9251777bda1ef9b9f1cb1387c2bd4d06cd78 |     | LCHIJA | questbook                         | 3.1.1-1.12               | questbook-3.1.1-1.12.jar                             | None                                     |     | LCHIJA | rep                               | 1.0.0                    | RealisticExplosionPhysics-1.12.2-1.0.0.jar           | None                                     |     | LCHIJA | ruins                             | 17.2                     | Ruins-1.12.2.jar                                     | None                                     |     | LCHIJA | rustic                            | 1.1.7                    | rustic-1.1.7.jar                                     | None                                     |     | LCHIJA | simplepartspack                   | 5.7.2                    | Simple Parts-Content Pack-1.12.2-5.7.2.jar           | None                                     |     | LCHIJA | spawntabletweaker                 | 1.0                      | spawntabletweaker-1.0.jar                            | None                                     |     | LCHIJA | srparasites                       | 1.9.12                   | SRParasites-1.12.2v1.9.12.jar                        | None                                     |     | LCHIJA | bq_standard                       | 3.4.173                  | StandardExpansion-3.4.173.jar                        | None                                     |     | LCHIJA | stg                               | 1.12.2-1.2.3             | stg-1.12.2-1.2.3.jar                                 | None                                     |     | LCHIJA | streams                           | 0.4.9                    | Streams-1.12-0.4.9.jar                               | None                                     |     | LCHIJA | tan_huge_trees                    | 1.0.3.4                  | Tans-Huge-Trees-Mod-Forge-1.12.2.jar                 | None                                     |     | LCHIJA | techguns                          | 2.0.2.0                  | techguns-1.12.2-2.0.2.0_pre3.2.jar                   | None                                     |     | LCHIJA | thermaldynamics                   | 2.5.6                    | ThermalDynamics-1.12.2-2.5.6.1-universal.jar         | None                                     |     | LCHIJA | tinkertoolleveling                | 1.12-1.0.2b.DEV.1a79301  | Tinkers-Tool-Leveling-Mod-1.12.1.jar                 | None                                     |     | LCHIJA | tp                                | 3.2.34                   | Tiny-Progressions-Mod-Forge-1.12.2.jar               | None                                     |     | LCHIJA | toastcontrol                      | 1.8.1                    | Toast Control-1.12.2-1.8.1.jar                       | None                                     |     | LCHIJA | tanaddons                         | 3.4.24                   | ToughExpansion-1.12-3.4.24.jar                       | None                                     |     | LCHIJA | trinity                           | 0.4.c                    | Trinity 0.4.c.jar                                    | None                                     |     | LCHIJA | undergroundbiomes                 | 1.3.14                   | Underground-Biomes-Mod-Forge-1.12.2.jar              | None                                     |     | LCHIJA | universalmodifiers                | 1.12.2-1.0.16.1          | valkyrielib-1.12.2-2.0.20.1.jar                      | None                                     |     | LCHIJA | wailaharvestability               | 1.1.12                   | WailaHarvestability-mc1.12-1.1.12.jar                | None                                     |     | LCHIJA | wanionlib                         | 1.12.2-2.91              | WanionLib-1.12.2-2.91.jar                            | None                                     |     | LCHIJA | waystones                         | 4.1.0                    | Waystones-Mod-Forge-1.12.2.jar                       | None                                     |     | LCHIJA | weather2                          | 1.12.1-2.6.12            | weather2-1.12.1-2.6.12.jar                           | None                                     |     | LCHIJA | xaeroworldmap                     | 1.30.3                   | World-Map-Mod-1.12.2.jar                             | None                                     |     | LCHIJA | ww2pack                           | 5.7.2                    | WW2-Content Pack-1.12.2-5.7.2.jar                    | None                                     |     | LCHIJA | xaerominimap                      | 22.12.0                  | Xaeros-Minimap-Mod-1.12.2.jar                        | None                                     |     | LCHIJA | yeoldepack                        | 5.8.2                    | Ye Olde-Content Pack-1.12.2-5.8.2.jar                | None                                     |     | LCHIJA | zerocore                          | 1.12.2-0.1.2.9           | zerocore-1.12.2-0.1.2.9.jar                          | None                                     |     | LCHIJA | immersiveintelligence             | 0.2.1                    | immersiveintelligence-0.2.1.jar                      | 770570c49a2652e64a9b29b9b9d9919ca68b7065 |     | LCHIJA | structurize                       | 1.12.2-0.10.277-RELEASE  | structurize-1.12.2-0.10.277-RELEASE.jar              | None                                     |     | LCHIJA | minecolonies                      | 1.12.2-0.11.841-ALPHA    | minecolonies-1.12.2-0.11.841-BETA-universal.jar      | None                                     |     | LCHIJA | phosphor-lighting                 | 1.12.2-0.2.6             | phosphor-1.12.2-0.2.6+build50-universal.jar          | f0387d288626cc2d937daa504e74af570c52a2f1 |     | LCHIJA | adchimneys                        | 1.12.2-3.5.16.0          | AdChimneys-1.12.2-3.5.16.0-build.0654.jar            | None                                     |     | LCHIJA | mysticallib                       | 1.12.2-1.13.0            | mysticallib-1.12.2-1.13.0.jar                        | None                                     |     | LCHIJA | unidict                           | 1.12.2-3.0.10            | UniDict-1.12.2-3.0.10.jar                            | None                                     |     Loaded coremods (and transformers):  IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)   blusunrize.immersiveengineering.common.asm.IEClassTransformer EngineersDoorsLoadingPlugin (engineers_doors-1.12.2-0.9.1.jar)   nihiltres.engineersdoors.common.asm.EngineersDoorsClassTransformer XaeroMinimapPlugin (Xaeros-Minimap-Mod-1.12.2.jar)   xaero.common.core.transformer.ChunkTransformer   xaero.common.core.transformer.NetHandlerPlayClientTransformer   xaero.common.core.transformer.EntityPlayerTransformer   xaero.common.core.transformer.AbstractClientPlayerTransformer   xaero.common.core.transformer.WorldClientTransformer   xaero.common.core.transformer.EntityPlayerSPTransformer   xaero.common.core.transformer.PlayerListTransformer   xaero.common.core.transformer.SaveFormatTransformer   xaero.common.core.transformer.GuiIngameForgeTransformer   xaero.common.core.transformer.GuiBossOverlayTransformer   xaero.common.core.transformer.ModelRendererTransformer RenderLibPlugin (RenderLib-1.12.2-1.3.3.jar)   meldexun.renderlib.asm.RenderLibClassTransformer ParticleCullingLoadingPlugin (particleculling-1.12.2-v1.4.1.jar)    DoubleSlabs Plugin (Double-Slabs-Mod-1.12.2.jar)   cjminecraft.doubleslabs.client.asm.ClassTransformer MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)   mekanism.coremod.KeybindingMigrationHelper LoadingPlugin (AdChimneys-1.12.2-3.5.16.0-build.0654.jar)   com.endertech.minecraft.mods.adchimneys.world.WorldData$BlockRandomTick MicdoodlePlugin (MicdoodleCore-1.12.2-4.0.2.280.jar)   micdoodle8.mods.miccore.MicdoodleTransformer Quark Plugin (Quark-r1.6-179.jar)   vazkii.quark.base.asm.ClassTransformer AppleCore (AppleCore-mc1.12.2-3.4.0.jar)   squeek.applecore.asm.TransformerModuleHandler IILoadingPlugin (immersiveintelligence-core-0.2.1.jar)   pl.pabilo8.immersiveintelligence.common.asm.IIClassTransformer TickCentral (TickCentral-3.2.jar)   com.github.terminatornl.laggoggles.tickcentral.EventBusTransformer   com.github.terminatornl.laggoggles.tickcentral.RenderManagerTransformer   com.github.terminatornl.tickcentral.asm.BlockTransformer   com.github.terminatornl.tickcentral.asm.ITickableTransformer   com.github.terminatornl.tickcentral.asm.EntityTransformer   com.github.terminatornl.tickcentral.asm.HubAPITransformer UniDictCoreMod (UniDict-1.12.2-3.0.10.jar)   wanion.unidict.core.UniDictCoreModTransformer CXLibraryCore (CXLibrary-1.12.2.jar)   cubex2.cxlibrary.CoreModTransformer EntityCullingPlugin (EntityCulling-1.12.2-6.4.1.jar)   meldexun.entityculling.asm.EntityCullingClassTransformer LoadingPlugin (Bloodmoon-MC1.12.2-1.5.3.jar)   lumien.bloodmoon.asm.ClassTransformer XaeroWorldMapPlugin (World-Map-Mod-1.12.2.jar)   xaero.map.core.transformer.ChunkTransformer   xaero.map.core.transformer.NetHandlerPlayClientTransformer   xaero.map.core.transformer.EntityPlayerTransformer   xaero.map.core.transformer.AbstractClientPlayerTransformer   xaero.map.core.transformer.WorldClientTransformer   xaero.map.core.transformer.PlayerListTransformer   xaero.map.core.transformer.SaveFormatTransformer   xaero.map.core.transformer.BiomeColorHelperTransformer   xaero.map.core.transformer.MinecraftTransformer Inventory Tweaks Coremod (InventoryTweaks-1.63.jar)   invtweaks.forge.asm.ContainerTransformer PhosphorFMLLoadingPlugin (phosphor-1.12.2-0.2.6+build50-universal.jar)    Techguns Core (techguns-1.12.2-2.0.2.0_pre3.2.jar)   techguns.core.TechgunsASMTransformer IvToolkit (IvToolkit-1.3.3-1.12.jar)    Transformer (harvestcrafttweaker-1.2c.jar)    TransformLoader (DynamicSurroundings-1.12.2-3.6.1.0.jar)    Born in a Barn (Born In A Barn 1.8-1.12-1.2.jar)   com.chocohead.biab.BornInABarn 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 ForgelinPlugin (Forgelin-1.8.4.jar)    LoadingPlugin (AdPother-1.12.2-1.2.12.0-build.0558.jar)   com.endertech.minecraft.mods.adpother.transformers.AcidRain$Vanilla   com.endertech.minecraft.mods.adpother.transformers.AcidRain$DynamicSurroundings   com.endertech.minecraft.mods.adpother.transformers.AcidRain$Weather2$Mesh   com.endertech.minecraft.mods.adpother.transformers.AcidRain$Weather2$Render   com.endertech.minecraft.mods.adpother.transformers.ActuallyAdditions$FurnaceDouble   com.endertech.minecraft.mods.adpother.transformers.ActuallyAdditions$CoalGenerator   com.endertech.minecraft.mods.adpother.transformers.AdvancedRocketry$Rocket   com.endertech.minecraft.mods.adpother.transformers.BetterWithMods$Furnace   com.endertech.minecraft.mods.adpother.transformers.ControlledBurn$Fire   com.endertech.minecraft.mods.adpother.transformers.CookingForBlockheads$Oven   com.endertech.minecraft.mods.adpother.transformers.DraconicEvolution$Generator   com.endertech.minecraft.mods.adpother.transformers.EmbersRekindled$EmberBore   com.endertech.minecraft.mods.adpother.transformers.EmbersRekindled$SteamEngine   com.endertech.minecraft.mods.adpother.transformers.EnderIO$StirlingGenerator   com.endertech.minecraft.mods.adpother.transformers.EngineersDecor$DecorFurnace   com.endertech.minecraft.mods.adpother.transformers.Factory0Resources$BurnerDrill   com.endertech.minecraft.mods.adpother.transformers.FastFurnace$Burning   com.endertech.minecraft.mods.adpother.transformers.FastFurnace$Smelting   com.endertech.minecraft.mods.adpother.transformers.FurnaceOverhaul$Burning   com.endertech.minecraft.mods.adpother.transformers.FurnaceOverhaul$Smelting   com.endertech.minecraft.mods.adpother.transformers.FutureMC$AdvancedFurnace   com.endertech.minecraft.mods.adpother.transformers.FloodLights$CarbonFloodlight   com.endertech.minecraft.mods.adpother.transformers.Galacticraft$AutoRocket   com.endertech.minecraft.mods.adpother.transformers.Galacticraft$Buggy   com.endertech.minecraft.mods.adpother.transformers.ImmersiveCraft$FurnaceTE   com.endertech.minecraft.mods.adpother.transformers.ImmersiveEngineering$TileEntityCokeOven   com.endertech.minecraft.mods.adpother.transformers.ImmersiveEngineering$TileEntityBlastFurnace   com.endertech.minecraft.mods.adpother.transformers.ImmersiveEngineering$TileEntityDieselGenerator   com.endertech.minecraft.mods.adpother.transformers.ImmersivePetroleum$Motorboat   com.endertech.minecraft.mods.adpother.transformers.ImmersivePetroleum$PortableGenerator   com.endertech.minecraft.mods.adpother.transformers.ImmersiveRailroading$LocomotiveDiesel   com.endertech.minecraft.mods.adpother.transformers.ImmersiveRailroading$LocomotiveSteam   com.endertech.minecraft.mods.adpother.transformers.ImmersiveTechnology$Boiler   com.endertech.minecraft.mods.adpother.transformers.Magneticraft$CombustionChamber   com.endertech.minecraft.mods.adpother.transformers.Magneticraft$BigChamberSolidFuel   com.endertech.minecraft.mods.adpother.transformers.Magneticraft$BigChamberLiquidFuel   com.endertech.minecraft.mods.adpother.transformers.Mekanism$FuelwoodHeater   com.endertech.minecraft.mods.adpother.transformers.Metallurgy$Alloyer   com.endertech.minecraft.mods.adpother.transformers.Metallurgy$Crusher   com.endertech.minecraft.mods.adpother.transformers.Minecraft$AnimalFeeding   com.endertech.minecraft.mods.adpother.transformers.Minecraft$FurnaceSmelting   com.endertech.minecraft.mods.adpother.transformers.MoreFurnaces$IronFurnace   com.endertech.minecraft.mods.adpother.transformers.MrCrayfish$Vehicle   com.endertech.minecraft.mods.adpother.transformers.MysticalAgriculture$InferiumFurnace   com.endertech.minecraft.mods.adpother.transformers.MysticalAgriculture$IntermediumFurnace   com.endertech.minecraft.mods.adpother.transformers.MysticalAgriculture$PrudentiumFurnace   com.endertech.minecraft.mods.adpother.transformers.MysticalAgriculture$SuperiumFurnace   com.endertech.minecraft.mods.adpother.transformers.MysticalAgriculture$SupremiumFurnace   com.endertech.minecraft.mods.adpother.transformers.MysticalAgriculture$UltimateFurnace   com.endertech.minecraft.mods.adpother.transformers.Natura$NetherrackFurnace   com.endertech.minecraft.mods.adpother.transformers.PneumaticCraft$AirCompressor   com.endertech.minecraft.mods.adpother.transformers.PrimalCore$RecipeHelper   com.endertech.minecraft.mods.adpother.transformers.Pyrotech$TileCombustion   com.endertech.minecraft.mods.adpother.transformers.RealisticBlockPhysics$FallingBlock   com.endertech.minecraft.mods.adpother.transformers.RealisticTorches$BlockTorch   com.endertech.minecraft.mods.adpother.transformers.RFTools$CoalGenerator   com.endertech.minecraft.mods.adpother.transformers.StevesCarts$ModuleCoal   com.endertech.minecraft.mods.adpother.transformers.Techguns$MachineSlot   com.endertech.minecraft.mods.adpother.transformers.TechReborn$TileIronAlloyFurnace   com.endertech.minecraft.mods.adpother.transformers.TechReborn$TileIronFurnace   com.endertech.minecraft.mods.adpother.transformers.TechReborn$TileSolidFuelGenerator   com.endertech.minecraft.mods.adpother.transformers.TerraFirmaCraft$CharcoalForge   com.endertech.minecraft.mods.adpother.transformers.TerraFirmaCraft$FirePit   com.endertech.minecraft.mods.adpother.transformers.TerraFirmaCraft$LogPile   com.endertech.minecraft.mods.adpother.transformers.TinkersComplement$HighOven   com.endertech.minecraft.mods.adpother.transformers.TinkersConstruct$HeatingStructure   com.endertech.minecraft.mods.adpother.transformers.SimpleGrinder$CoalGrinder   com.endertech.minecraft.mods.adpother.transformers.UltimateCarMod$Car   com.endertech.minecraft.mods.adpother.transformers.ViesCraft$AirShip   com.endertech.minecraft.mods.adpother.renders.AerometerRender   com.endertech.minecraft.mods.adpother.pollution.WorldData$BlockCaughtFire   com.endertech.minecraft.mods.adpother.pollution.WorldData$BlockUpdateTick   com.endertech.minecraft.mods.adpother.pollution.WorldData$BlockExploded   com.endertech.minecraft.mods.adpother.pollution.WorldData$GetSkyColor   com.endertech.minecraft.mods.adpother.pollution.WorldData$FurnaceFuelBurned   com.endertech.minecraft.mods.adpother.pollution.WorldData$LavaTouchesWater   com.endertech.minecraft.mods.adpother.transformers.ZenFoundry$BurnerHeater   com.endertech.minecraft.mods.adpother.transformers.ZenFoundry$MoldStation SteveKunGLibPlugin (SteveKunG's-Lib-1.12.2-1.2.0.jar)    NothiriumPlugin (Nothirium-1.12.2-0.3.4-beta.jar)   meldexun.nothirium.mc.asm.NothiriumClassTransformer GenderLoadingPlugin (iPixelis-Gender-Mod-1.12.2.jar)   com.github.ipixeli.gender.coremod.GenderClassTransformer CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   team.chisel.ctm.client.asm.CTMTransformer FarseekCoreMod (Farseek-1.12-2.5.1.jar)   farseek.core.FarseekClassTransformer EnderCorePlugin (EnderCore-1.12.2-0.5.78-core.jar)   com.enderio.core.common.transform.EnderCoreTransformer   com.enderio.core.common.transform.SimpleMixinPatcher MixinBooter (!mixinbooter-4.2.jar)    Plugin (NotEnoughIDs-1.5.4.4.jar)   ru.fewizz.neid.asm.Transformer llibrary (llibrary-core-1.0.11-1.12.2.jar)   net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer   net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher AstralCore (astralsorcery-1.12.2-1.10.27.jar)    CreativePatchingLoader (CreativeCore_v1.10.71_mc1.12.2.jar)    CorePlugin (ForgeEndertech-1.12.2-4.5.6.1-build.0648.jar)    TransformerLoader (OpenComputers-MC1.12.2-1.8.3+274990f.jar)   li.cil.oc.common.asm.ClassTransformer Better Biome Blend (betterbiomeblend-1.12.2-1.1.7-forge.jar)        GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 555.85' Renderer: 'NVIDIA GeForce RTX 3060/PCIe/SSE2'     AE2 Version: stable rv6-stable-7 for Forge 14.23.5.2768     Ender IO: No known problems detected.     Authlib is : /C:/Users/lexee/curseforge/minecraft/Install/libraries/com/mojang/authlib/1.5.25/authlib-1.5.25.jar     !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!     !!!You are looking at the diagnostics information, not at the crash.       !!!     !!!Scroll up until you see the line with '---- Minecraft Crash Report ----'!!!     !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!     Pulsar/tconstruct loaded Pulses:          - TinkerCommons (Enabled/Forced)         - TinkerWorld (Enabled/Not Forced)         - TinkerTools (Enabled/Not Forced)         - TinkerHarvestTools (Enabled/Forced)         - TinkerMeleeWeapons (Enabled/Forced)         - TinkerRangedWeapons (Enabled/Forced)         - TinkerModifiers (Enabled/Forced)         - TinkerSmeltery (Enabled/Not Forced)         - TinkerGadgets (Enabled/Not Forced)         - TinkerOredict (Enabled/Forced)         - TinkerIntegration (Enabled/Forced)         - TinkerFluids (Enabled/Forced)         - TinkerMaterials (Enabled/Forced)         - TinkerModelRegister (Enabled/Forced)         - chiselIntegration (Enabled/Not Forced)         - chiselsandbitsIntegration (Enabled/Not Forced)         - wailaIntegration (Enabled/Not Forced)         - theoneprobeIntegration (Enabled/Not Forced)         - quarkIntegration (Enabled/Not Forced)     No Tree Punching: You are not running an official build. This version will NOT be supported by the author.     List of loaded APIs:          * ae2wtlib|API (1.0.34) from AE2WTLib-1.12.2-1.0.34.jar         * antiqueatlasapi (5.1) from antiqueatlas-1.12.2-4.6.3.jar         * AppleCoreAPI (3.4.0) from AppleCore-mc1.12.2-3.4.0.jar         * appliedenergistics2|API (rv6) from appliedenergistics2-rv6-stable-7.jar         * Base|API (1.0.0) from base-1.12.2-3.14.0.jar         * Baubles|API (1.4.0.2) from Baubles-1.12-1.5.2.jar         * BetterQuesting|API (3.2) from BetterQuesting-3.5.329.jar         * BetterQuesting|API2 (3.1) from BetterQuesting-3.5.329.jar         * BetterWithModsAPI (Beta 0.6) from AppleSkin-mc1.12-1.0.14.jar         * Chisel-API (0.0.1) from Chisel-MC1.12.2-1.0.2.45.jar         * ChiselAPI|Carving (0.0.1) from Chisel-MC1.12.2-1.0.2.45.jar         * ChiselsAndBitsAPI (14.25.0) from chiselsandbits-14.33.jar         * cofhapi (2.5.0) from CoFHCore-1.12.2-4.6.6.1-universal.jar         * CoroAI|dynamicdifficulty (1.0) from coroutil-1.12.1-1.2.37.jar         * cosmeticarmorreworked|api (1.0.0) from CosmeticArmorReworked-1.12.2-v5a.jar         * CSLib|API (1.0.1) from PTRLib-1.0.5.jar         * ctm-api (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar         * ctm-api-events (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar         * ctm-api-models (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar         * ctm-api-textures (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar         * ctm-api-utils (0.1.0) from CTM-MC1.12.2-1.0.2.31.jar         * DraconicEvolution|API (1.3) from Draconic-Evolution-1.12.2-2.3.28.354-universal.jar         * enderioapi (4.0.0) from EnderIO-1.12.2-5.2.66.jar         * enderioapi|addon (4.0.0) from EnderIO-1.12.2-5.2.66.jar         * enderioapi|capacitor (4.0.0) from EnderIO-1.12.2-5.2.66.jar         * enderioapi|conduits (4.0.0) from EnderIO-1.12.2-5.2.66.jar         * enderioapi|farm (4.0.0) from EnderIO-1.12.2-5.2.66.jar         * enderioapi|redstone (4.0.0) from EnderIO-1.12.2-5.2.66.jar         * enderioapi|teleport (4.0.0) from EnderIO-1.12.2-5.2.66.jar         * enderioapi|tools (4.0.0) from EnderIO-1.12.2-5.2.66.jar         * enderioapi|upgrades (4.0.0) from EnderIO-1.12.2-5.2.66.jar         * ExCompressum|API (1.0) from ExCompressum_1.12.2-3.0.32.jar         * ForgeEndertechAPI (1.0) from ForgeEndertech-1.12.2-4.5.6.1-build.0648.jar         * Galacticraft API (1.1) from GalacticraftCore-1.12.2-4.0.2.280.jar         * ImmersiveEngineering|API (1.0) from ImmersiveEngineering-0.12-98.jar         * ImmersiveEngineering|ImmersiveFluxAPI (1.0) from ImmersiveEngineering-0.12-98.jar         * jeresources|API (0.9.2.60) from JustEnoughResources-1.12.2-0.9.2.60.jar         * JustEnoughItemsAPI (4.13.0) from jei_1.12.2-4.16.1.1003.jar         * MatterOverdrive|API (0.4.1) from MatterOverdrive-1.12.2-0.7.1.0-universal.jar         * MekanismAPI|core (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar         * MekanismAPI|energy (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar         * MekanismAPI|gas (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar         * MekanismAPI|infuse (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar         * MekanismAPI|laser (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar         * MekanismAPI|transmitter (9.8.1) from Mekanism-1.12.2-9.8.3.390.jar         * MekanismAPI|util (9.0.0) from Mekanism-1.12.2-9.8.3.390.jar         * minecolonies-api (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|achievements (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|blocks (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|blocks|decorative (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|blocks|huts (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|blocks|interfaces (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|blocks|types (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|client (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|client|render (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|client|render|modeltype (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|client|render|modeltype|registry (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|buildings (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|buildings|registry (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|buildings|views (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|buildings|workerbuildings (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|guardtype (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|guardtype|registry (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|jobs (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|jobs|registry (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|managers (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|managers|interfaces (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|permissions (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|requestsystem (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|requestsystem|data (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|requestsystem|factory (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|requestsystem|factory|standard (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|requestsystem|location (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|requestsystem|manager (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|requestsystem|request (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|requestsystem|requestable (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|requestsystem|requestable|crafting (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|requestsystem|requester (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|requestsystem|resolver (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|requestsystem|resolver|player (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|requestsystem|resolver|retrying (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|requestsystem|token (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|colony|workorders (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|compatibility (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|compatibility|candb (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|compatibility|dynamictrees (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|compatibility|gbook (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|compatibility|tinkers (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|configuration (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|crafting (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|creativetab (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|ai (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|ai|citizen (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|ai|citizen|builder (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|ai|citizen|guards (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|ai|pathfinding (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|ai|registry (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|ai|statemachine (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|ai|statemachine|basestatemachine (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|ai|statemachine|states (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|ai|statemachine|tickratestatemachine (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|ai|statemachine|transition (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|citizen (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|citizen|citizenhandlers (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|mobs (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|mobs|barbarians (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|mobs|pirates (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|mobs|util (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|pathfinding (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|entity|pathfinding|registry (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|inventory (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|inventory|api (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|items (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|network (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|sounds (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|tileentities (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|util (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-api|util|constants (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-blockout (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-blockout|controls (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * minecolonies-blockout|views (1.12.2-0.11.841-ALPHA) from minecolonies-1.12.2-0.11.841-BETA-universal.jar         * MoarSigns|API (1.3) from MoarSigns-1.12.2-6.0.0.11.jar         * MouseTweaks|API (1.0) from MouseTweaks-2.10-mc1.12.2.jar         * opencomputersapi|component (7.0.0-alpha) from OpenComputers-MC1.12.2-1.8.3+274990f.jar         * opencomputersapi|core (7.0.0-alpha) from OpenComputers-MC1.12.2-1.8.3+274990f.jar         * opencomputersapi|driver (7.0.0-alpha) from OpenComputers-MC1.12.2-1.8.3+274990f.jar         * opencomputersapi|driver|item (7.0.0-alpha) from OpenComputers-MC1.12.2-1.8.3+274990f.jar         * opencomputersapi|event (7.0.0-alpha) from OpenComputers-MC1.12.2-1.8.3+274990f.jar         * opencomputersapi|filesystem (7.0.0-alpha) from OpenComputers-MC1.12.2-1.8.3+274990f.jar         * opencomputersapi|internal (7.0.0-alpha) from OpenComputers-MC1.12.2-1.8.3+274990f.jar         * opencomputersapi|machine (7.0.0-alpha) from OpenComputers-MC1.12.2-1.8.3+274990f.jar         * opencomputersapi|manual (7.0.0-alpha) from OpenComputers-MC1.12.2-1.8.3+274990f.jar         * opencomputersapi|network (7.0.0-alpha) from OpenComputers-MC1.12.2-1.8.3+274990f.jar         * opencomputersapi|prefab (7.0.0-alpha) from OpenComputers-MC1.12.2-1.8.3+274990f.jar         * projecteapi (1.12.2-1.2.0) from ProjectE-1.12.2-PE1.4.1.jar         * QuarkAPI (4) from Quark-r1.6-179.jar         * railcraft:api_carts (3.0.0) from railcraft-12.0.0.jar         * railcraft:api_charge (4.0.0) from railcraft-12.0.0.jar         * railcraft:api_core (3.2.0) from railcraft-12.0.0.jar         * railcraft:api_crafting (4.0.0) from railcraft-12.0.0.jar         * railcraft:api_events (2.0.0) from railcraft-12.0.0.jar         * railcraft:api_fuel (2.0.0) from railcraft-12.0.0.jar         * railcraft:api_helpers (2.0.0) from railcraft-12.0.0.jar         * railcraft:api_items (2.4.0) from railcraft-12.0.0.jar         * railcraft:api_signals (4.0.0) from railcraft-12.0.0.jar         * railcraft:api_tracks (5.1.1) from railcraft-12.0.0.jar         * redstonefluxapi (2.1.1) from RedstoneFlux-1.12-2.1.1.1-universal.jar         * StorageDrawersAPI (2.1.0) from StorageDrawers-1.12.2-5.5.0.jar         * StorageDrawersAPI|event (2.1.0) from StorageDrawers-1.12.2-5.5.0.jar         * StorageDrawersAPI|registry (2.1.0) from StorageDrawers-1.12.2-5.5.0.jar         * StorageDrawersAPI|render (2.1.0) from StorageDrawers-1.12.2-5.5.0.jar         * StorageDrawersAPI|storage (2.1.0) from StorageDrawers-1.12.2-5.5.0.jar         * StorageDrawersAPI|storage-attribute (2.1.0) from StorageDrawers-1.12.2-5.5.0.jar         * Thaumcraft|API (6.0.2) from railcraft-12.0.0.jar         * theoneprobe_api (1.4.4) from theoneprobe-1.12-1.4.28.jar         * valkyrielib.api (1.12.2-2.0.10a) from valkyrielib-1.12.2-2.0.20.1.jar         * WailaAPI (1.3) from Hwyla-1.8.26-B41_1.12.2.jar         * zerocore|API|multiblock (1.10.2-0.0.2) from zerocore-1.12.2-0.1.2.9.jar         * zerocore|API|multiblock|rectangular (1.10.2-0.0.2) from zerocore-1.12.2-0.1.2.9.jar         * zerocore|API|multiblock|tier (1.10.2-0.0.2) from zerocore-1.12.2-0.1.2.9.jar         * zerocore|API|multiblock|validation (1.10.2-0.0.2) from zerocore-1.12.2-0.1.2.9.jar     AE2 Integration: IC2:OFF, RC:ON, MFR:OFF, Waila:ON, InvTweaks:ON, JEI:ON, Mekanism:ON, OpenComputers:ON, THE_ONE_PROBE:ON, TESLA:OFF, CRAFTTWEAKER:ON     Launched Version: forge-14.23.5.2860     LWJGL: 2.9.4     OpenGL: NVIDIA GeForce RTX 3060/PCIe/SSE2 GL version 4.6.0 NVIDIA 555.85, NVIDIA Corporation     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: No     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: 20x 12th Gen Intel(R) Core(TM) i7-12700F
    • Hello There! Today we are parkouring on a volcano, yes you heard me we are on a volcano now. Everything you love about the old parkour videos are back in this video the punching, the screaming, everything! This also has to be one of the coolest and best maps we ever played!  
    • https://pastebin.com/vgisYctb I basically put together a modpack and it worked, I added a couple of mods and it stopped working. Even if I remove the mods I added, it doesn't work imgur.com/a/IRnlmP0
  • Topics

×
×
  • Create New...

Important Information

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