Jump to content

[1.7.10] Remotely activating blocks (OpenBlocks Cursor) [unsolved]


Recommended Posts

Posted

I am pulling the cursor item from OpenBlocks into a standalone mod. It works fine, however, some blocks either won't activate when I am a certain distance away, or will crash the game after a certain distance. Instead of every item being fixed to support remote activation, is it possible to have the cursor activate the block as if I was standing next to it, even though I'm not?

 

Thanks in advance!

 

Here is my item class:

 

package com.godsvictory.clicky;

import net.minecraft.block.Block;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Blocks;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.EnumFacing;
import net.minecraft.world.World;

public class ItemClicker extends Item {
public ItemClicker()
{
	setUnlocalizedName("clicker");
	setTextureName("clicky:clicker");
	setCreativeTab(CreativeTabs.tabMisc);
	setMaxStackSize(1);
}

@Override
public boolean onItemUse(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int side, float hitX, float hitY, float hitZ) {
	if (player.isSneaking()) {
		NBTTagCompound tag = getItemTag(stack);
		tag.setInteger("dimension", world.provider.dimensionId);
		tag.setInteger("x", x);
		tag.setInteger("y", y);
		tag.setInteger("z", z);
		tag.setInteger("side", side);
	}
	return false;
}
@Override
public ItemStack onItemRightClick(ItemStack itemStack, World world, EntityPlayer player) {
	if (world.isRemote) return itemStack;
	NBTTagCompound tag = itemStack.getTagCompound();
	if (tag != null && tag.hasKey("x") && tag.hasKey("y") && tag.hasKey("z") && tag.hasKey("dimension")) {
		final int x = tag.getInteger("x");
		final int y = tag.getInteger("y");
		final int z = tag.getInteger("z");
		final int dimension = tag.getInteger("dimension");
		if (world.provider.dimensionId == dimension && world.blockExists(x, y, z)) clickBlock(world, player, x, y, z, tag.getInteger("side"));
	}
	return itemStack;
}

private static void clickBlock(World world, EntityPlayer player, final int x, final int y, final int z, int side) {
	Block block = world.getBlock(x, y, z);
	if (block != Blocks.air) {
		block.onBlockActivated(world, x, y, z, player, side, 0, 0, 0);
	}
}

public static NBTTagCompound getItemTag(ItemStack stack) {
	if (stack.stackTagCompound == null) stack.stackTagCompound = new NBTTagCompound();
	return stack.stackTagCompound;
}

}

 

and here is a crash report:

 

MultiMC version: 0.4.11-751

Minecraft folder is:
instances/test/minecraft

Java path is:
C:/ProgramData/Oracle/Java/javapath/java.exe

Java Arguments:
[-XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump, -Xms512m, -Xmx8096m, -Duser.language=en, -jar, D:/MultiMC/jars/NewLaunch.jar]

Minecraft process ID: 3692

Using onesix launcher.

Main Class:
  net.minecraft.launchwrapper.Launch

Native path:
  D:/MultiMC/instances/test/natives

Traits:
  []

Libraries:
  D:/MultiMC/libraries/com/mojang/realms/1.3.5/realms-1.3.5.jar
  D:/MultiMC/libraries/org/apache/commons/commons-compress/1.8.1/commons-compress-1.8.1.jar
  D:/MultiMC/libraries/org/apache/httpcomponents/httpclient/4.3.3/httpclient-4.3.3.jar
  D:/MultiMC/libraries/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar
  D:/MultiMC/libraries/org/apache/httpcomponents/httpcore/4.3.2/httpcore-4.3.2.jar
  D:/MultiMC/libraries/java3d/vecmath/1.3.1/vecmath-1.3.1.jar
  D:/MultiMC/libraries/net/sf/trove4j/trove4j/3.0.3/trove4j-3.0.3.jar
  D:/MultiMC/libraries/com/ibm/icu/icu4j-core-mojang/51.2/icu4j-core-mojang-51.2.jar
  D:/MultiMC/libraries/net/sf/jopt-simple/jopt-simple/4.5/jopt-simple-4.5.jar
  D:/MultiMC/libraries/com/paulscode/codecjorbis/20101023/codecjorbis-20101023.jar
  D:/MultiMC/libraries/com/paulscode/codecwav/20101023/codecwav-20101023.jar
  D:/MultiMC/libraries/com/paulscode/libraryjavasound/20101123/libraryjavasound-20101123.jar
  D:/MultiMC/libraries/com/paulscode/librarylwjglopenal/20100824/librarylwjglopenal-20100824.jar
  D:/MultiMC/libraries/com/paulscode/soundsystem/20120107/soundsystem-20120107.jar
  D:/MultiMC/libraries/io/netty/netty-all/4.0.10.Final/netty-all-4.0.10.Final.jar
  D:/MultiMC/libraries/com/google/guava/guava/17.0/guava-17.0.jar
  D:/MultiMC/libraries/org/apache/commons/commons-lang3/3.3.2/commons-lang3-3.3.2.jar
  D:/MultiMC/libraries/commons-io/commons-io/2.4/commons-io-2.4.jar
  D:/MultiMC/libraries/commons-codec/commons-codec/1.9/commons-codec-1.9.jar
  D:/MultiMC/libraries/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar
  D:/MultiMC/libraries/com/mojang/authlib/1.5.21/authlib-1.5.21.jar
  D:/MultiMC/libraries/org/apache/logging/log4j/log4j-api/2.0-beta9/log4j-api-2.0-beta9.jar
  D:/MultiMC/libraries/org/apache/logging/log4j/log4j-core/2.0-beta9/log4j-core-2.0-beta9.jar
  D:/MultiMC/libraries/tv/twitch/twitch/5.16/twitch-5.16.jar
  D:/MultiMC/libraries/net/java/jinput/jinput/2.0.5/jinput-2.0.5.jar
  D:/MultiMC/libraries/net/java/jutils/jutils/1.0.0/jutils-1.0.0.jar
  D:/MultiMC/libraries/org/lwjgl/lwjgl/lwjgl/2.9.1/lwjgl-2.9.1.jar
  D:/MultiMC/libraries/org/lwjgl/lwjgl/lwjgl_util/2.9.1/lwjgl_util-2.9.1.jar
  D:/MultiMC/libraries/lzma/lzma/0.0.1/lzma-0.0.1.jar
  D:/MultiMC/libraries/org/scala-lang/scala-xml_2.11/1.0.2/scala-xml_2.11-1.0.2.jar
  D:/MultiMC/libraries/org/scala-lang/scala-swing_2.11/1.0.1/scala-swing_2.11-1.0.1.jar
  D:/MultiMC/libraries/org/scala-lang/scala-reflect/2.11.1/scala-reflect-2.11.1.jar
  D:/MultiMC/libraries/org/scala-lang/scala-parser-combinators_2.11/1.0.1/scala-parser-combinators_2.11-1.0.1.jar
  D:/MultiMC/libraries/org/scala-lang/scala-library/2.11.1/scala-library-2.11.1.jar
  D:/MultiMC/libraries/org/scala-lang/plugins/scala-continuations-plugin_2.11.1/1.0.2/scala-continuations-plugin_2.11.1-1.0.2.jar
  D:/MultiMC/libraries/org/scala-lang/plugins/scala-continuations-library_2.11/1.0.2/scala-continuations-library_2.11-1.0.2.jar
  D:/MultiMC/libraries/org/scala-lang/scala-compiler/2.11.1/scala-compiler-2.11.1.jar
  D:/MultiMC/libraries/org/scala-lang/scala-actors-migration_2.11/1.1.0/scala-actors-migration_2.11-1.1.0.jar
  D:/MultiMC/libraries/com/typesafe/config/1.2.1/config-1.2.1.jar
  D:/MultiMC/libraries/com/typesafe/akka/akka-actor_2.11/2.3.3/akka-actor_2.11-2.3.3.jar
  D:/MultiMC/libraries/org/ow2/asm/asm-all/5.0.3/asm-all-5.0.3.jar
  D:/MultiMC/libraries/net/minecraft/launchwrapper/1.12/launchwrapper-1.12.jar
  D:/MultiMC/libraries/net/minecraftforge/forge/1.7.10-10.13.4.1558-1.7.10/forge-1.7.10-10.13.4.1558-1.7.10-universal.jar
  D:/MultiMC/versions/1.7.10/1.7.10.jar

Mods:
  AppleCore-mc1.7.10-1.3.0
  appliedenergistics2-rv2-stable-10
  Aroma1997Core-1.7.10-1.0.2.16
  AromaBackup-1.7.10-0.1.0.0
  BetterFps-1.0.1
  BiomesOPlenty-1.7.10-2.1.0.1548-universal
  ChickenChunks-1.7.10-1.3.4.19-universal
  CodeChickenCore-1.7.10-1.0.7.47-universal
  CoFHCore-[1.7.10]3.1.2-325
  ComputerCraft1.75
  craftingtweaks-mc1.7.10-1.0.73
  DPU-1.7.10-1.2.40
  EnderIO-1.7.10-2.2.8.381
  EnderCore-1.7.10-0.2.0.31_beta
  EnderStorage-1.7.10-1.4.7.37-universal
  supercraftingframe-1.7.10.3
  ExtraCells-1.7.10-2.3.9b188
  extrautilities-1.2.12
  ezstorage-1.1.0
  FastLeafDecay-1.7.10-1.4
  fastcraft-1.21
  iChunUtil-4.2.2
  IguanaTinkerTweaks-1.7.10-2.1.5
  inventorypets-1.7.10-1.3.91-universal
  InventoryTweaks-1.59-dev-152
  ironchest-1.7.10-6.0.60.741-universal
  Jabba-1.2.1a_1.7.10
  journeymap-1.7.10-5.1.3-unlimited
  KeepingInventory-1.7.10-1.7
  LunatriusCore-1.7.10-1.1.2.21-universal
  magicalcrops-1.7.10_0.1
  Mantle-1.7.10-0.3.2b
  MineFactoryReloaded-[1.7.10]2.8.1-174
  Morph-Beta-0.9.2
  Morpheus-1.7.10-1.6.20
  natura-1.7.10-2.2.0.1
  neiaddons-1.12.14.40-mc1.7.10
  NEIIntegration-MC1.7.10-1.1.1
  NotEnoughItems-1.7.10-1.0.5.118-universal
  ObsidiPlates-1.7.10-universal-3.0.0.18
  OpenBlocks-1.7.10-1.5.1
  OpenModsLib-1.7.10-0.9.1
  Pam's HarvestCraft 1.7.10Lb
  RefinedRelocation-mc1.7.10-1.1.25
  simplefluidtanks-1.7.10-1.2.0.5
  Stackie-1.7.10-1.6.0.36-universal
  StorageDrawers-1.7.10-1.7.5
  twilightforest-1.7.10-2.3.7
  TiCTooltips-mc1.7.10-1.2.5
  TConstruct-1.7.10-1.8.8
  VeinMiner-1.7.10_0.30.2.unknown
  Waila-1.5.10_1.7.10
  WailaHarvestability-mc1.7.10-1.1.6
  WAILAPlugins-MC1.7.10-0.2.0-23
  warpbook-1.7.10_2.0.37
  Wawla-1.3.3-1.7.10

Params:
  [--username, <PROFILE NAME>, --version, MultiMC5, --gameDir, D:/MultiMC/instances/test/minecraft, --assetsDir, D:/MultiMC/assets, --assetIndex, 1.7.10, --uuid, <PROFILE ID>, --accessToken, <ACCESS TOKEN>, --userProperties, {}, --userType, mojang, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker]

Window size: 854 x 480

Preparing native libraries...
Extracting twitch-platform-5.16-natives-windows-64.jar
Extracting twitch-external-platform-4.5-natives-windows-64.jar
Extracting jinput-platform-2.0.5-natives-windows.jar
Extracting lwjgl-platform-2.9.1-natives-windows.jar

[00:03:47] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[00:03:47] [main/INFO]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[00:03:47] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
[00:03:47] [main/INFO]: Forge Mod Loader version 7.99.36.1558 for Minecraft 1.7.10 loading
[00:03:47] [main/INFO]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_73, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_73
[00:03:48] [main/INFO]: [AppEng] Core Init
[00:03:48] [main/WARN]: The coremod aroma1997.core.coremod.CoreMod does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[00:03:48] [main/INFO]: Loading tweaker me.guichaguri.betterfps.tweaker.BetterFpsTweaker from BetterFps-1.0.1.jar
[00:03:48] [main/WARN]: The coremod codechicken.core.launch.CodeChickenCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[00:03:48] [main/WARN]: The coremod cofh.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[00:03:48] [main/WARN]: The coremod fastcraft.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[00:03:48] [main/WARN]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[00:03:48] [main/WARN]: The coremod codechicken.nei.asm.NEICorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[00:03:48] [main/WARN]: The coremod openblocks.OpenBlocksCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[00:03:48] [main/WARN]: The coremod openmods.core.OpenModsCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[00:03:48] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[00:03:48] [main/INFO]: Loading tweak class name me.guichaguri.betterfps.tweaker.BetterFpsTweaker
[00:03:48] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
[00:03:48] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[00:03:48] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[00:03:48] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[00:03:49] [main/INFO]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557
[00:03:49] [main/INFO]: Found valid fingerprint for Minecraft. Certificate fingerprint cd99959656f753dc28d863b46769f7f8fbaefcfc
[00:03:50] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[00:03:50] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[00:03:50] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[00:03:50] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[00:03:50] [main/INFO]: Finished data injection.
[00:03:50] [main/INFO]: Finished data injection.
[00:03:50] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[00:03:50] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[00:03:50] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[00:03:50] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[00:03:50] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[00:03:50] [main/WARN]: openmods.config.simple.ConfigProcessor.process(ConfigProcessor.java:108): Adding new values: '[activate_gl_capabilities_hook, activate_player_render_hook, activate_map_gen_fix, activate_movement_callback, activate_stencil_patches]'
[00:03:50] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[00:03:50] [main/INFO]: Calling tweak class me.guichaguri.betterfps.tweaker.BetterFpsTweaker
[00:03:50] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
[00:03:50] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[00:03:50] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[00:03:50] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[00:03:51] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[00:03:51] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[00:03:51] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker
[00:03:51] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker
[00:03:51] [main/INFO]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[00:03:51] [main/INFO]: Patching Game Start...
[00:03:51] [main/INFO]: CraftingTweaks will now patch func_146274_d in bdw...
[00:03:51] [main/INFO]: CraftingTweaks successfully patched func_146274_d in bdw!
[00:03:52] [main/INFO]: func_146977_a(Lnet/minecraft/inventory/Slot;)V - Transformed
[00:03:52] [main/INFO]: func_146977_a_original(Lnet/minecraft/inventory/Slot;)V - New Method
[00:03:52] [main/INFO]: func_146977_a(Lnet/minecraft/inventory/Slot;)V - Invoke Virtual
[00:03:52] [main/INFO]: Setting user: <PROFILE NAME>
[00:03:53] [main/INFO]: Patching leaves.
[00:03:53] [main/INFO]: Found leaf Class: net/minecraft/block/BlockLeavesBase
[00:03:53] [main/INFO]: Transforming Class [net.minecraft.entity.projectile.EntityArrow], Method [func_70071_h_]
[00:03:53] [main/INFO]: Transforming net.minecraft.entity.projectile.EntityArrow Finished.
[00:03:54] [main/INFO]: Transforming Class [net.minecraft.item.ItemStack], Method [func_77953_t]
[00:03:54] [main/INFO]: Transforming net.minecraft.item.ItemStack Finished.
[00:03:54] [main/INFO]: InvTweaks: net.minecraft.inventory.Container
[00:03:54] [main/INFO]: InvTweaks: net.minecraft.inventory.ContainerFurnace
[00:03:54] [main/INFO]: Transforming Class [net.minecraft.inventory.ContainerFurnace], Method [func_82846_b]
[00:03:54] [main/INFO]: Transforming net.minecraft.inventory.ContainerFurnace Finished.
[00:03:54] [main/INFO]: Patching Minecraft using Riven's "Half" Algorithm
[00:03:54] [Client thread/INFO]: Patching Key Event...
[00:03:54] [Client thread/INFO]: LWJGL Version: 2.9.1
[00:03:55] [Client thread/INFO]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ----
// Daisy, daisy...

Time: 3/5/16 12:03 AM
Description: Loading screen debug info

This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- System Details --
Details:
    Minecraft Version: 1.7.10
    Operating System: Windows 10 (amd64) version 10.0
    Java Version: 1.8.0_73, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 579895864 bytes (553 MB) / 881328128 bytes (840 MB) up to 7546077184 bytes (7196 MB)
    JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xms512m -Xmx8096m
    AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
    FML: 
    GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 362.00' Renderer: 'GeForce GTX 960/PCIe/SSE2'
[00:03:56] [Client thread/INFO]: Attempting early MinecraftForge initialization
[00:03:56] [Client thread/INFO]: MinecraftForge v10.13.4.1558 Initialized
[00:03:56] [Client thread/INFO]: Replaced 183 ore recipies
[00:03:56] [Client thread/INFO]: Completed early MinecraftForge initialization
[00:03:56] [Client thread/INFO]: [AppEng] Core Init
[00:03:56] [Client thread/INFO]: Found 0 mods from the command line. Injecting into mod discoverer
[00:03:56] [Client thread/INFO]: Searching D:\MultiMC\instances\test\minecraft\mods for mods
[00:03:56] [Client thread/INFO]: Also searching D:\MultiMC\instances\test\minecraft\mods\1.7.10 for mods
[00:04:01] [Client thread/INFO]: Mod AppleCore is missing the required element 'name'. Substituting AppleCore
[00:04:01] [Client thread/WARN]: Mod Aroma1997CoreHelper is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.0.2.16
[00:04:01] [Client thread/WARN]: Mod AromaBackup is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 0.1.0.0
[00:04:01] [Client thread/WARN]: Mod AromaBackupRecovery is missing the required element 'version' and no fallback can be found. Substituting '1.0'.
[00:04:02] [Client thread/WARN]: Mod ChickenChunks is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.3.4.19
[00:04:02] [Client thread/WARN]: Mod craftingtweaks is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.0.73
[00:04:02] [Client thread/WARN]: Mod EnderStorage is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.4.7.37
[00:04:02] [Client thread/WARN]: Mod ExtraUtilities is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.12
[00:04:03] [Client thread/INFO]: Forge Mod Loader has identified 87 mods to load
[00:04:04] [Client thread/WARN]: Mod MineFactoryReloaded|CompatAtum has been disabled through configuration
[00:04:04] [Client thread/WARN]: Mod MineFactoryReloaded|CompatBackTools has been disabled through configuration
[00:04:04] [Client thread/WARN]: Mod MineFactoryReloaded|CompatBuildCraft has been disabled through configuration
[00:04:04] [Client thread/WARN]: Mod MineFactoryReloaded|CompatChococraft has been disabled through configuration
[00:04:04] [Client thread/WARN]: Mod MineFactoryReloaded|CompatExtraBiomes has been disabled through configuration
[00:04:04] [Client thread/WARN]: Mod MineFactoryReloaded|CompatForestry has been disabled through configuration
[00:04:04] [Client thread/WARN]: Mod MineFactoryReloaded|CompatIC2 has been disabled through configuration
[00:04:04] [Client thread/WARN]: Mod MineFactoryReloaded|CompatProjRed has been disabled through configuration
[00:04:04] [Client thread/WARN]: Mod MineFactoryReloaded|CompatRailcraft has been disabled through configuration
[00:04:04] [Client thread/WARN]: Mod MineFactoryReloaded|CompatSufficientBiomes has been disabled through configuration
[00:04:04] [Client thread/WARN]: Mod MineFactoryReloaded|CompatThaumcraft has been disabled through configuration
[00:04:04] [Client thread/WARN]: Mod MineFactoryReloaded|CompatThermalExpansion has been disabled through configuration
[00:04:04] [Client thread/INFO]: FML has found a non-mod file CodeChickenLib-1.7.10-1.1.3.138-universal.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
[00:04:05] [Client thread/INFO]: Attempting connection with missing mods [mcp, FML, Forge, appliedenergistics2-core, Aroma1997Core, CodeChickenCore, NotEnoughItems, OpenModsCore, <CoFH ASM>, AppleCore, appliedenergistics2, Aroma1997CoreHelper, AromaBackup, AromaBackupRecovery, BiomesOPlenty, ChickenChunks, CoFHCore, ComputerCraft, craftingtweaks, DPU, endercore, EnderIO, EnderStorage, extracells, ExtraUtilities, ezstorage, FastCraft, fastleafdecay, iChunUtil, IguanaTweaksTConstruct, InventoryPets, inventorytweaks, IronChest, JABBA, journeymap, KeepingInventory, LunatriusCore, magicalcrops, Mantle, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatTConstruct, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, Morph, Morpheus, Natura, NEIAddons, NEIAddons|Developer, NEIAddons|AppEng, NEIAddons|Botany, NEIAddons|Forestry, NEIAddons|CraftingTables, NEIAddons|ExNihilo, neiintegration, ObsidiPlates, OpenBlocks, OpenMods, harvestcraft, RefinedRelocation, simplefluidtanks, Stackie, StorageDrawers, supercraftingframe, TConstruct, TiCTooltips, TwilightForest, VeinMiner, VeinMinerModSupport, Waila, WailaHarvestability, wailaplugins, warpbook, wawla] at CLIENT
[00:04:05] [Client thread/INFO]: Attempting connection with missing mods [mcp, FML, Forge, appliedenergistics2-core, Aroma1997Core, CodeChickenCore, NotEnoughItems, OpenModsCore, <CoFH ASM>, AppleCore, appliedenergistics2, Aroma1997CoreHelper, AromaBackup, AromaBackupRecovery, BiomesOPlenty, ChickenChunks, CoFHCore, ComputerCraft, craftingtweaks, DPU, endercore, EnderIO, EnderStorage, extracells, ExtraUtilities, ezstorage, FastCraft, fastleafdecay, iChunUtil, IguanaTweaksTConstruct, InventoryPets, inventorytweaks, IronChest, JABBA, journeymap, KeepingInventory, LunatriusCore, magicalcrops, Mantle, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatTConstruct, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, Morph, Morpheus, Natura, NEIAddons, NEIAddons|Developer, NEIAddons|AppEng, NEIAddons|Botany, NEIAddons|Forestry, NEIAddons|CraftingTables, NEIAddons|ExNihilo, neiintegration, ObsidiPlates, OpenBlocks, OpenMods, harvestcraft, RefinedRelocation, simplefluidtanks, Stackie, StorageDrawers, supercraftingframe, TConstruct, TiCTooltips, TwilightForest, VeinMiner, VeinMinerModSupport, Waila, WailaHarvestability, wailaplugins, warpbook, wawla] at SERVER
[00:04:08] [Client thread/INFO]: Natura, what are we going to do tomorrow night?
[00:04:08] [Client thread/INFO]: TConstruct, we're going to take over the world!
[00:04:09] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Not Enough Items, FMLFileResourcePack:AppleCore, FMLFileResourcePack:Applied Energistics 2, FMLFileResourcePack:Aroma1997Core|Helper, FMLFileResourcePack:AromaBackup, FMLFileResourcePack:AromaBackup Recovery, FMLFileResourcePack:Biomes O' Plenty, FMLFileResourcePack:ChickenChunks, FMLFileResourcePack:CoFH Core, FMLFileResourcePack:ComputerCraft, FMLFileResourcePack:Crafting Tweaks, FMLFileResourcePack:Don't Pick Up, FMLFileResourcePack:EnderCore, FMLFileResourcePack:Ender IO, FMLFileResourcePack:EnderStorage, FMLFileResourcePack:Extra Cells 2, FMLFileResourcePack:Extra Utilities, FMLFileResourcePack:EZ Storage, FMLFileResourcePack:FastCraft, FMLFileResourcePack:Fast Leaf Decay, FMLFileResourcePack:iChunUtil, FMLFileResourcePack:Iguana Tinker Tweaks, FMLFileResourcePack:Inventory Pets, FMLFileResourcePack:Inventory Tweaks, FMLFileResourcePack:Iron Chest, FMLFileResourcePack:JABBA, FMLFileResourcePack:JourneyMap, FMLFileResourcePack:Keeping Inventory, FMLFileResourcePack:LunatriusCore, FMLFileResourcePack:Magical Crops, FMLFileResourcePack:Mantle, FMLFileResourcePack:MineFactory Reloaded, FMLFileResourcePack:MFR Compat: Applied Energistics, FMLFileResourcePack:MFR Compat: ForgeMicroblock, FMLFileResourcePack:MFR Compat: Tinkers' Construct, FMLFileResourcePack:MFR Compat: TwilightForest, FMLFileResourcePack:MFR Compat: Vanilla, FMLFileResourcePack:Morph, FMLFileResourcePack:Morpheus, FMLFileResourcePack:Natura, FMLFileResourcePack:NEI Addons, FMLFileResourcePack:NEI Addons: Developer Tools, FMLFileResourcePack:NEI Addons: Applied Energistics 2, FMLFileResourcePack:NEI Addons: Botany, FMLFileResourcePack:NEI Addons: Forestry, FMLFileResourcePack:NEI Addons: Crafting Tables, FMLFileResourcePack:NEI Addons: Ex Nihilo, FMLFileResourcePack:NEI Integration, FMLFileResourcePack:ObsidiPlates, FMLFileResourcePack:OpenBlocks, FMLFileResourcePack:OpenMods, FMLFileResourcePack:Pam's HarvestCraft, FMLFileResourcePack:Refined Relocation, FMLFileResourcePack:Simple Fluid Tanks, FMLFileResourcePack:Stackie, FMLFileResourcePack:Storage Drawers, FMLFileResourcePack:Super Crafting Frame, FMLFileResourcePack:Tinkers' Construct, FMLFileResourcePack:TiC Tooltips, FMLFileResourcePack:The Twilight Forest, FMLFileResourcePack:Vein Miner, FMLFileResourcePack:Mod Support, FMLFileResourcePack:Waila, FMLFileResourcePack:Waila Harvestability, FMLFileResourcePack:WAILA Plugins, FMLFileResourcePack:Warp Book, FMLFileResourcePack:What Are We Looking At
[00:04:09] [Client thread/INFO]: Processing ObjectHolder annotations
[00:04:09] [Client thread/INFO]: Found 338 ObjectHolder annotations
[00:04:09] [Client thread/INFO]: Identifying ItemStackHolder annotations
[00:04:09] [Client thread/INFO]: Found 0 ItemStackHolder annotations
[00:04:09] [Client thread/INFO]: Configured a dormant chunk cache size of 0
[00:04:09] [Client thread/INFO]: Logger initialized.
[00:04:09] [Client thread/INFO]: Finished Pre-initialization.
[00:04:09] [Client thread/INFO]: Pre Initialization ( started )
[00:04:10] [Client thread/INFO]: func_145841_b(Lnet/minecraft/nbt/NBTTagCompound;)V - Transformed
[00:04:10] [Client thread/INFO]: func_145839_a(Lnet/minecraft/nbt/NBTTagCompound;)V - Transformed
[00:04:10] [Client thread/INFO]: Removing Interface ic2.api.energy.tile.IEnergySink from appeng/tile/powersink/IC2 because IC2 integration is disabled.
[00:04:10] [Client thread/INFO]: Updated appeng/tile/powersink/IC2
[00:04:10] [Client thread/INFO]: Removing Interface Reika.RotaryCraft.API.Power.AdvancedShaftPowerReceiver from appeng/tile/powersink/RotaryCraft because RotaryCraft integration is disabled.
[00:04:10] [Client thread/INFO]: Removing Interface Reika.RotaryCraft.API.Interfaces.Transducerable from appeng/tile/powersink/RotaryCraft because RotaryCraft integration is disabled.
[00:04:10] [Client thread/INFO]: Removing Method Tick_RotaryCraft from appeng/tile/powersink/RotaryCraft because RotaryCraft integration is disabled.
[00:04:10] [Client thread/INFO]: Updated appeng/tile/powersink/RotaryCraft
[00:04:10] [Client thread/INFO]: Allowing Interface cofh.api.energy.IEnergyReceiver from appeng/tile/powersink/RedstoneFlux because RF integration is enabled.
[00:04:10] [Client thread/INFO]: Removing Interface mekanism.api.energy.IStrictEnergyAcceptor from appeng/tile/powersink/MekJoules because Mekanism integration is disabled.
[00:04:10] [Client thread/INFO]: Updated appeng/tile/powersink/MekJoules
[00:04:10] [Client thread/INFO]: Allowing Interface powercrystals.minefactoryreloaded.api.rednet.connectivity.IRedNetConnection from appeng/block/networking/BlockCableBus because MFR integration is enabled.
[00:04:10] [Client thread/INFO]: Allowing Method getConnectionType from appeng/block/networking/BlockCableBus because MFR integration is enabled.
[00:04:10] [Client thread/INFO]: Removing Interface buildcraft.api.tools.IToolWrench from appeng/items/tools/quartz/ToolQuartzWrench because BC integration is disabled.
[00:04:10] [Client thread/INFO]: Updated appeng/items/tools/quartz/ToolQuartzWrench
[00:04:10] [Client thread/INFO]: Removing Interface ic2.api.item.ISpecialElectricItem from appeng/items/tools/powered/powersink/IC2 because IC2 integration is disabled.
[00:04:10] [Client thread/INFO]: Removing Interface ic2.api.item.IElectricItemManager from appeng/items/tools/powered/powersink/IC2 because IC2 integration is disabled.
[00:04:10] [Client thread/INFO]: Removing Method getManager from appeng/items/tools/powered/powersink/IC2 because IC2 integration is disabled.
[00:04:10] [Client thread/INFO]: Updated appeng/items/tools/powered/powersink/IC2
[00:04:10] [Client thread/INFO]: Allowing Interface cofh.api.energy.IEnergyContainerItem from appeng/items/tools/powered/powersink/RedstoneFlux because RFItem integration is enabled.
[00:04:10] [Client thread/INFO]: Removing Interface buildcraft.api.tools.IToolWrench from appeng/items/tools/ToolNetworkTool because BC integration is disabled.
[00:04:10] [Client thread/INFO]: Updated appeng/items/tools/ToolNetworkTool
[00:04:10] [Client thread/INFO]: Removing Interface buildcraft.api.transport.IPipeConnection from appeng/parts/misc/PartStorageBus because BC integration is disabled.
[00:04:10] [Client thread/INFO]: Removing Method overridePipeConnection from appeng/parts/misc/PartStorageBus because BC integration is disabled.
[00:04:10] [Client thread/INFO]: Updated appeng/parts/misc/PartStorageBus
[00:04:11] [Client thread/INFO]: Removing Interface buildcraft.api.transport.IPipeConnection from appeng/parts/p2p/PartP2PItems because BC integration is disabled.
[00:04:11] [Client thread/INFO]: Removing Method overridePipeConnection from appeng/parts/p2p/PartP2PItems because BC integration is disabled.
[00:04:11] [Client thread/INFO]: Updated appeng/parts/p2p/PartP2PItems
[00:04:11] [Client thread/INFO]: Removing Interface ic2.api.energy.tile.IEnergySink from appeng/parts/p2p/PartP2PIC2Power because IC2 integration is disabled.
[00:04:11] [Client thread/INFO]: Removing Interface ic2.api.energy.tile.IEnergySource from appeng/parts/p2p/PartP2PIC2Power because IC2 integration is disabled.
[00:04:11] [Client thread/INFO]: Updated appeng/parts/p2p/PartP2PIC2Power
[00:04:11] [Client thread/INFO]: Allowing Interface cofh.api.energy.IEnergyReceiver from appeng/parts/p2p/PartP2PRFPower because RF integration is enabled.
[00:04:11] [Client thread/INFO]: Starting AE2 VersionChecker
[00:04:11] [Client thread/INFO]: Pre Initialization ( ended after 1467ms )
[00:04:11] [Client thread/INFO]: Helping Aroma1997Core
[00:04:11] [Client thread/INFO]: Using Dimension Blacklist with  0 entries.
[00:04:11] [Client thread/INFO]: Mantle (1.7.10-0.3.2.jenkins191) -- Preparing for launch.
[00:04:11] [Client thread/INFO]: Entering preinitialization phase.
[00:04:11] [Client thread/INFO]: Loading configuration from disk.
[00:04:11] [Client thread/INFO]: Configuration load completed.
[00:04:11] [Client thread/INFO]: Skipping Pulse Natura TE4 Compatibility; missing dependency: ThermalExpansion
[00:04:11] [Client thread/INFO]: Skipping Pulse Natura BuildCraft Compatibility; missing dependency: BuildCraft|Transport
[00:04:11] [Client thread/INFO]: Skipping Pulse Natura Forestry Compatibility; missing dependency: Forestry
[00:04:11] [AE2 VersionChecker/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.IllegalArgumentException: Raw channel stable did not contain any of the pre-programmed types.
[00:04:11] [AE2 VersionChecker/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:  at appeng.services.version.VersionParser.parseChannel(VersionParser.java:117)
[00:04:11] [AE2 VersionChecker/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:  at appeng.services.version.VersionParser.parseVersion(VersionParser.java:72)
[00:04:11] [AE2 VersionChecker/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:  at appeng.services.version.VersionParser.parse(VersionParser.java:34)
[00:04:11] [AE2 VersionChecker/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:  at appeng.services.version.ModVersionFetcher.get(ModVersionFetcher.java:34)
[00:04:11] [AE2 VersionChecker/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:  at appeng.services.VersionChecker.processInterval(VersionChecker.java:106)
[00:04:11] [AE2 VersionChecker/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:  at appeng.services.VersionChecker.run(VersionChecker.java:86)
[00:04:11] [AE2 VersionChecker/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:  at java.lang.Thread.run(Unknown Source)
[00:04:11] [Client thread/INFO]: Patching leaves.
[00:04:11] [Client thread/INFO]: Found leaf Class: mods/natura/blocks/trees/NLeaves
[00:04:11] [Client thread/INFO]: Skipping Pulse Natura TreeCapitator Compatibility; missing dependency: Treecapitator
[00:04:11] [Client thread/INFO]: Skipping Pulse Natura Thaumcraft Compatibility; missing dependency: Thaumcraft
[00:04:11] [Client thread/INFO]: Skipping Pulse Natura FMP Compatibility; missing dependency: ForgeMultipart
[00:04:12] [Client thread/INFO]: Transforming Class [net.minecraft.world.WorldType], Method [func_76564_j]
[00:04:12] [Client thread/INFO]: Transforming net.minecraft.world.WorldType Finished.
[00:04:13] [Client thread/INFO]: Trail info successfully received from remote.
[00:04:13] [Client thread/INFO]: Registering Default Templates.
[00:04:13] [Client thread/INFO]: Registering default generators
[00:04:13] [Client thread/INFO]: Complete
[00:04:13] [Client thread/INFO]: Please note, you are running a beta version! Please report any bugs you find.
[00:04:13] [Client thread/INFO]: Attempting to initialize texture error message interceptor.
[00:04:13] [Thread-10/INFO]: No update found.
[00:04:15] [Client thread/INFO]: XP Juice regististration left to Open Blocks.
[00:04:17] [Client thread/INFO]: Hello World
[00:04:17] [Client thread/INFO]: FastCraft 1.21 loaded.
[00:04:17] [Thread-12/INFO]: You are using the latest suitable version.
[00:04:18] [Client thread/INFO]: InvTweaks: invtweaks.InvTweaksObfuscation
[00:04:18] [Client thread/INFO]: Skipping Pulse Tinkers Thaumcraft Compatibility; missing dependency: Thaumcraft
[00:04:18] [Client thread/INFO]: Skipping Pulse Tinkers BuildCraft Compatibility; missing dependency: BuildCraft|Transport
[00:04:18] [Client thread/INFO]: Skipping Pulse Tinkers IC2 Compatibility; missing dependency: IC2
[00:04:18] [Client thread/INFO]: Skipping Pulse Tinkers Mystcraft Compatibility; missing dependency: Mystcraft
[00:04:18] [Client thread/INFO]: Skipping Pulse Tinkers TE4 Compatibility; missing dependency: ThermalExpansion
[00:04:18] [Client thread/INFO]: Skipping Pulse Tinkers Thermal Foundation Compatibility; missing dependency: ThermalFoundation
[00:04:18] [Client thread/INFO]: Skipping Pulse Tinkers FMP Compatibility; missing dependency: ForgeMultipart
[00:04:18] [Client thread/INFO]: Skipping Pulse Tinkers' Underground Biomes Compatiblity; missing dependency: UndergroundBiomes
[00:04:18] [Client thread/INFO]: Skipping Pulse Tinkers RF-Tools Compatibility; missing dependency: rftools
[00:04:18] [Client thread/INFO]: Gear module active. Adding gear cast.
[00:04:19] [Client thread/INFO]: Loading configuration
[00:04:19] [Client thread/INFO]: Version check success: appliedenergistics2 required / rv2-stable-10 detected
[00:04:19] [Client thread/INFO]: Required mod Botany is not installed, dependent features will be unavailable
[00:04:19] [Client thread/ERROR]: Requirements unmet, Botany Addon not loading
[00:04:19] [Client thread/INFO]: Required mod Forestry is not installed, dependent features will be unavailable
[00:04:19] [Client thread/ERROR]: Requirements unmet, Forestry Addon not loading
[00:04:19] [Client thread/INFO]: Required mod exnihilo is not installed, dependent features will be unavailable
[00:04:19] [Client thread/ERROR]: Requirements unmet, Ex Nihilo Addon not loading
[00:04:19] [Client thread/INFO]: Starting NEI Integration
[00:04:19] [Client thread/INFO]: Loading configuration files
[00:04:19] [Client thread/INFO]: Config loaded from: D:\MultiMC\instances\test\minecraft\config\ObsidiPlates.cfg
[00:04:20] [Client thread/INFO]: InvTweaks: net.minecraft.inventory.ContainerPlayer
[00:04:21] [Thread-14/INFO]: Version Checker Status: OUTDATED! Using 1.1.25, latest 1.1.21, changelog: Several bugfixes. See changelog on Curse.
[00:04:21] [Client thread/INFO]: Beginning plugin registration: 14 candidates found.
[00:04:21] [Client thread/INFO]: Skipping over plugin Forestry as its dependencies [Forestry] were not found.
[00:04:21] [Client thread/INFO]: Attempting to create plugin Magical Crops.
[00:04:21] [Client thread/INFO]: Successfully created plugin Magical Crops.
[00:04:21] [Client thread/INFO]: Attempting to create plugin DSU.
[00:04:21] [Client thread/INFO]: Successfully created plugin DSU.
[00:04:21] [Client thread/INFO]: Attempting to create plugin Pam's Fruit.
[00:04:21] [Client thread/INFO]: Successfully created plugin Pam's Fruit.
[00:04:21] [Client thread/INFO]: Attempting to create plugin Extra Utilities.
[00:04:21] [Client thread/INFO]: Successfully created plugin Extra Utilities.
[00:04:21] [Client thread/INFO]: Skipping over plugin RedLogic as its dependencies [RedLogic] were not found.
[00:04:21] [Client thread/INFO]: Skipping over plugin Mekanism as its dependencies [Mekanism] were not found.
[00:04:21] [Client thread/INFO]: Skipping over plugin ResourcefulCrops as its dependencies [ResourcefulCrops] were not found.
[00:04:21] [Client thread/INFO]: Skipping over plugin Railcraft as its dependencies [Railcraft] were not found.
[00:04:21] [Client thread/INFO]: Skipping over plugin TE Augments as its dependencies [ThermalExpansion] were not found.
[00:04:21] [Client thread/INFO]: Attempting to create plugin IFluidHandler.
[00:04:21] [Client thread/INFO]: Successfully created plugin IFluidHandler.
[00:04:21] [Client thread/INFO]: Skipping over plugin Steamcraft as its dependencies [steamcraft] were not found.
[00:04:21] [Client thread/INFO]: Attempting to create plugin MFR.
[00:04:21] [Client thread/INFO]: Successfully created plugin MFR.
[00:04:21] [Client thread/INFO]: Skipping over plugin Blood Magic as its dependencies [AWWayofTime] were not found.
[00:04:21] [Client thread/INFO]: Sorting plugins. Before: [Magical Crops, DSU, Pam's Fruit, Extra Utilities, IFluidHandler, MFR]
[00:04:21] [Client thread/INFO]: Sorting plugins. After:  [Magical Crops, DSU, Pam's Fruit, Extra Utilities, IFluidHandler, MFR]
[00:04:21] [Client thread/FATAL]: Plugin magicalcrops threw an error on init. Skipping...
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.NoClassDefFoundError: com/mark719/magicalcrops/blocks/BlockMagicalCrops
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at tterrag.wailaplugins.plugins.PluginMagicalCrops.load(PluginMagicalCrops.java:30)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at tterrag.wailaplugins.plugins.PluginRegistrar.preInit(PluginRegistrar.java:146)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at tterrag.wailaplugins.WailaPlugins.preInit(WailaPlugins.java:41)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at java.lang.reflect.Method.invoke(Unknown Source)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:532)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at java.lang.reflect.Method.invoke(Unknown Source)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at com.google.common.eventbus.EventBus.post(EventBus.java:275)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at java.lang.reflect.Method.invoke(Unknown Source)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at com.google.common.eventbus.EventBus.post(EventBus.java:275)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:556)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:243)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:480)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:878)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at net.minecraft.client.main.Main.main(SourceFile:148)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at java.lang.reflect.Method.invoke(Unknown Source)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at java.lang.reflect.Method.invoke(Unknown Source)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:310)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:395)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at org.multimc.EntryPoint.listen(EntryPoint.java:170)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at org.multimc.EntryPoint.main(EntryPoint.java:54)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]: Caused by: java.lang.ClassNotFoundException: com.mark719.magicalcrops.blocks.BlockMagicalCrops
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at java.lang.ClassLoader.loadClass(Unknown Source)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at java.lang.ClassLoader.loadClass(Unknown Source)
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   ... 47 more
[00:04:21] [Client thread/INFO]: [java.lang.Throwable$WrappedPrintStream:println:-1]: Caused by: java.lang.ArrayIndexOutOfBoundsException
[00:04:21] [Client thread/INFO]: Successfully loaded plugin DSU.
[00:04:21] [Client thread/INFO]: Successfully loaded plugin Pam's Fruit.
[00:04:21] [Client thread/INFO]: Successfully loaded plugin ExtraUtilities.
[00:04:21] [Client thread/INFO]: Successfully loaded plugin IFluidHandler.
[00:04:21] [Client thread/INFO]: Successfully loaded plugin MFR.
[00:04:21] [Client thread/INFO]: Completed plugin registration. 6 plugins registered.
[00:04:22] [Client thread/INFO]: Skipping Pulse MultipartCompat; missing dependency: ForgeMultipart
[00:04:22] [Client thread/INFO]: Applying holder lookups
[00:04:22] [Client thread/INFO]: Holder lookups applied
[00:04:22] [Client thread/INFO]: Injecting itemstacks
[00:04:22] [Client thread/INFO]: Itemstack injection complete
[00:04:22] [sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: 
[00:04:22] [sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
[00:04:22] [Thread-15/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[00:04:22] [Thread-15/INFO]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[00:04:22] [Thread-15/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
[00:04:23] [sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: 
[00:04:23] [sound Library Loader/INFO]: Sound engine started
[00:04:23] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas
[00:04:23] [Client thread/INFO]: Removed 0 missing texture stacktraces. Tada!
[00:04:23] [Client thread/INFO]: Created: 16x16 textures/items-atlas
[00:04:23] [Client thread/INFO]: Removed 0 missing texture stacktraces. Tada!
[00:04:23] [Client thread/INFO]: Finished Initialization.
[00:04:23] [Client thread/INFO]: InvTweaks: net.minecraft.inventory.ContainerEnchantment
[00:04:24] [Client thread/INFO]: Initialization ( started )
[00:04:24] [Client thread/WARN]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.IronNugget:0
[00:04:24] [Client thread/WARN]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.GoldDust:0
[00:04:24] [Client thread/WARN]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.IronDust:0
[00:04:24] [Client thread/WARN]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.Silicon:0
[00:04:24] [Client thread/WARN]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.Silicon:0
[00:04:24] [Client thread/INFO]: Recipes Loading: Macerator: 8 loaded.
[00:04:24] [Client thread/INFO]: Recipes Loading: Inscribe: 8 loaded.
[00:04:24] [Client thread/INFO]: Recipes Loading: Shapeless: 55 loaded.
[00:04:24] [Client thread/INFO]: Recipes Loading: Crusher: 9 loaded.
[00:04:24] [Client thread/INFO]: Recipes Loading: HCCrusher: 9 loaded.
[00:04:24] [Client thread/INFO]: Recipes Loading: Grind: 4 loaded.
[00:04:24] [Client thread/INFO]: Recipes Loading: MekCrusher: 3 loaded.
[00:04:24] [Client thread/INFO]: Recipes Loading: OreRegistration: 14 loaded.
[00:04:24] [Client thread/INFO]: Recipes Loading: Pulverizer: 9 loaded.
[00:04:24] [Client thread/INFO]: Recipes Loading: GrindFZ: 7 loaded.
[00:04:24] [Client thread/INFO]: Recipes Loading: MekEnrichment: 2 loaded.
[00:04:24] [Client thread/INFO]: Recipes Loading: Shaped: 203 loaded.
[00:04:24] [Client thread/INFO]: Recipes Loading: Smelt: 2 loaded.
[00:04:24] [Client thread/INFO]: Recipes Loading: Press: 3 loaded.
[00:04:24] [Client thread/INFO]: Initialization ( ended after 335ms )
[00:04:24] [Client thread/INFO]: Entering initialization phase.
[00:04:24] [Client thread/INFO]: Waila detected.
[00:04:24] [Client thread/INFO]: Transforming Class [cpw.mods.fml.client.GuiScrollingList], Method [drawScreen]
[00:04:24] [Client thread/INFO]: Transforming cpw.mods.fml.client.GuiScrollingList Finished.
[00:04:24] [Client thread/INFO]: Transforming Class [cpw.mods.fml.client.GuiSlotModList], Method [drawBackground]
[00:04:24] [Client thread/INFO]: Transforming cpw.mods.fml.client.GuiSlotModList Finished.
[00:04:24] [Client thread/INFO]: [Handlers] Registering handler EventHandlerGui to busses: [FORGE, FML]
[00:04:24] [Client thread/INFO]: [Handlers] Registering handler EnchantTooltipHandler to busses: [FORGE, FML]
[00:04:24] [Client thread/INFO]: [Handlers] Registering handler Scheduler to busses: [FORGE, FML]
[00:04:24] [Client thread/INFO]: [Handlers] Registering handler SpecialTooltipHandler to busses: [FORGE, FML]
[00:04:24] [Client thread/INFO]: [Handlers] Registering handler OreDictTooltipHandler to busses: [FORGE, FML]
[00:04:24] [Client thread/INFO]: [Handlers] Registering handler ClientHandler to busses: [FORGE, FML]
[00:04:24] [Client thread/INFO]: [Handlers] Registering handler FireworkHandler to busses: [FORGE, FML]
[00:04:24] [Client thread/INFO]: [Handlers] Registering handler RightClickCropHandler to busses: [FORGE, FML]
[00:04:24] [Client thread/INFO]: [Handlers] Registering handler XPBoostHandler to busses: [FORGE, FML]
[00:04:24] [Client thread/INFO]: [Handlers] Registering handler AutoSmeltHandler to busses: [FORGE, FML]
[00:04:24] [Client thread/INFO]: Sending dummy event to all mods
[00:04:24] [Client thread/INFO]: Reloading ingame configs for modid: endercore
[00:04:24] [Client thread/INFO]: Reloading ingame configs for modid: wailaplugins
[00:04:26] [Client thread/INFO]: Recipes Loading: Shaped: 54 loaded.
[00:04:26] [Client thread/INFO]: Recipes Loading: Shapeless: 45 loaded.
[00:04:26] [Client thread/INFO]: Registered TCon Resource Pack (bedrockium) - TConTextureResourcePackBedrockium
[00:04:26] [Client thread/INFO]: Registered TCon Resource Pack (unstableingot) - TConTextureResourcePackUnstableIngot
[00:04:26] [Client thread/INFO]: Registered TCon Resource Pack (magicwood) - TConTextureResourcePackMagicWood
[00:04:26] [Client thread/INFO]: InvTweaks: Configuration loaded.
[00:04:26] [Client thread/INFO]: Mod initialized
[00:04:26] [Client thread/INFO]: JourneyMap log initialized.
[00:04:26] [Client thread/INFO]: ensureCurrent ENTER
[00:04:26] [Client thread/INFO]: Loaded CoreProperties from D:\MultiMC\instances\test\minecraft\journeymap\config\5.1\journeymap.core.config
[00:04:26] [Client thread/INFO]: Loaded FullMapProperties from D:\MultiMC\instances\test\minecraft\journeymap\config\5.1\journeymap.fullmap.config
[00:04:26] [Client thread/INFO]: Loaded MiniMapProperties from D:\MultiMC\instances\test\minecraft\journeymap\config\5.1\journeymap.minimap.config
[00:04:26] [Client thread/INFO]: Loaded MiniMapProperties2 from D:\MultiMC\instances\test\minecraft\journeymap\config\5.1\journeymap.minimap2.config
[00:04:26] [Client thread/INFO]: Loaded WebMapProperties from D:\MultiMC\instances\test\minecraft\journeymap\config\5.1\journeymap.webmap.config
[00:04:26] [Client thread/INFO]: Loaded WaypointProperties from D:\MultiMC\instances\test\minecraft\journeymap\config\5.1\journeymap.waypoint.config
[00:04:26] [Client thread/INFO]: ensureCurrent EXIT, elapsed§8 count §r1§8 avg §r245.93§8ms§r
[00:04:27] [LunatriusCore Version Check/INFO]: LunatriusCore is up to date!
[00:04:27] [LunatriusCore Version Check/INFO]: Stackie is up to date!
[00:04:27] [Client thread/INFO]: Transforming Class [net.minecraft.enchantment.EnchantmentHelper], Method [func_77513_b]
[00:04:27] [Client thread/INFO]: Transforming net.minecraft.enchantment.EnchantmentHelper Finished.
[00:04:27] [Client thread/INFO]: Waila detected. Registering TConstruct tank blocks with Waila registry.
[00:04:27] [Client thread/INFO]: AE2 detected. Registering for Spatial IO.
[00:04:27] [Client thread/INFO]: MineFactoryReloaded detected. Registering TConstruct farmables/grindables with MFR's Farming Registry.
[00:04:27] [Client thread/INFO]: Loading NEI Addons
[00:04:27] [Client thread/INFO]: Developer Tools Addon disabled - skipping
[00:04:27] [Client thread/INFO]: Loading Applied Energistics 2 Addon...
[00:04:27] [Client thread/INFO]: Applied Energistics 2 Addon successfully loadded
[00:04:27] [Client thread/INFO]: Loading Crafting Tables Addon...
[00:04:27] [Client thread/INFO]: Required mod EE3 is not installed, dependent features will be unavailable
[00:04:27] [Client thread/INFO]: Not registering EE3 Minium Stone
[00:04:27] [Client thread/INFO]: Required mod BuildCraft|Factory is not installed, dependent features will be unavailable
[00:04:27] [Client thread/INFO]: Not registering BC Autorcrafting Table
[00:04:27] [Client thread/INFO]: Required mod powersuitaddons is not installed, dependent features will be unavailable
[00:04:27] [Client thread/INFO]: Not registering MPSA In-Place Assembler
[00:04:27] [Client thread/INFO]: Required mod ProjectE is not installed, dependent features will be unavailable
[00:04:27] [Client thread/INFO]: Not registering ProjectE Philosopher Stone
[00:04:27] [Client thread/INFO]: Required mod BiblioCraft is not installed, dependent features will be unavailable
[00:04:27] [Client thread/INFO]: Not registering BiblioCraft Fancy Workbench
[00:04:27] [Client thread/INFO]: Required mod RIO is not installed, dependent features will be unavailable
[00:04:27] [Client thread/INFO]: Not registering RemoteIO Intelligent Workbench
[00:04:27] [Client thread/INFO]: Required mod Railcraft is not installed, dependent features will be unavailable
[00:04:27] [Client thread/INFO]: Not registering Railcraft Work Cart
[00:04:27] [Client thread/INFO]: Bad Class Registered: tconstruct.smeltery.logic.AdaptiveSmelteryLogic by TConstruct
[00:04:27] [Client thread/INFO]: Bad Class Registered: tconstruct.smeltery.logic.AqueductLogic by TConstruct
[00:04:27] [Client thread/INFO]: Bad Class Registered: tconstruct.smeltery.logic.TankAirLogic by TConstruct
[00:04:27] [Client thread/INFO]: Bad Class Registered: tconstruct.smeltery.logic.TowerFurnaceLogic by TConstruct
[00:04:28] [Client thread/INFO]: Receiving registration request from [ EnderIO ] for method crazypants.enderio.waila.WailaCompat.load
[00:04:28] [Client thread/INFO]: Receiving registration request from [ appliedenergistics2 ] for method appeng.integration.modules.Waila.register
[00:04:28] [Client thread/INFO]: Receiving registration request from [ Natura ] for method mods.natura.plugins.waila.WailaRegistrar.wailaCallback
[00:04:28] [Client thread/INFO]: Receiving registration request from [ extracells ] for method extracells.integration.waila.Waila.register
[00:04:28] [Client thread/INFO]: Receiving registration request from [ JABBA ] for method mcp.mobius.betterbarrels.BBWailaProvider.callbackRegister
[00:04:28] [Client thread/INFO]: Receiving registration request from [ TConstruct ] for method tconstruct.plugins.waila.WailaRegistrar.wailaCallback
[00:04:28] [Client thread/INFO]: Receiving registration request from [ RefinedRelocation ] for method com.dynious.refinedrelocation.mods.WailaProvider.callbackRegister
[00:04:28] [Client thread/INFO]: Receiving registration request from [ simplefluidtanks ] for method net.zarathul.simplefluidtanks.waila.Registry.register
[00:04:28] [Client thread/INFO]: Receiving registration request from [ StorageDrawers ] for method com.jaquadro.minecraft.storagedrawers.integration.Waila.registerProvider
[00:04:28] [Client thread/INFO]: Receiving registration request from [ WailaHarvestability ] for method squeek.wailaharvestability.WailaHandler.callbackRegister
[00:04:28] [Client thread/INFO]: Receiving registration request from [ wawla ] for method net.darkhax.wawla.addons.vanillamc.AddonVanillaEntities.registerAddon
[00:04:28] [Client thread/INFO]: Receiving registration request from [ wawla ] for method net.darkhax.wawla.addons.vanillamc.AddonVanillaTiles.registerAddon
[00:04:28] [Client thread/INFO]: Receiving registration request from [ wawla ] for method net.darkhax.wawla.addons.generic.AddonGenericEntities.registerAddon
[00:04:28] [Client thread/INFO]: Receiving registration request from [ wawla ] for method net.darkhax.wawla.addons.generic.AddonGenericTiles.registerAddon
[00:04:28] [Client thread/INFO]: Receiving registration request from [ wawla ] for method net.darkhax.wawla.addons.tinkersconstruct.AddonTinkersTiles.registerAddon
[00:04:28] [Client thread/INFO]: Injecting itemstacks
[00:04:28] [Client thread/INFO]: Itemstack injection complete
[00:04:28] [Client thread/INFO]: Finished Post-Initialization.
[00:04:28] [Client thread/INFO]: Post Initialization ( started )
[00:04:28] [Client thread/INFO]: Layer: appeng/parts/layers/LayerISidedInventory_TileCableBus loaded successfully - 5294 bytes
[00:04:28] [Client thread/INFO]: Layer: appeng/parts/layers/LayerIFluidHandler_TileCableBus loaded successfully - 2442 bytes
[00:04:28] [Client thread/INFO]: Layer: appeng/parts/layers/LayerITileStorageMonitorable_TileCableBus loaded successfully - 1070 bytes
[00:04:28] [Client thread/INFO]: Layer: appeng/parts/layers/LayerIEnergyHandler_TileCableBus loaded successfully - 1811 bytes
[00:04:28] [Client thread/INFO]: Layer: appeng/parts/layers/LayerISidedInventory_TileCableBusTESR loaded successfully - 5306 bytes
[00:04:28] [Client thread/INFO]: Layer: appeng/parts/layers/LayerIFluidHandler_TileCableBusTESR loaded successfully - 2454 bytes
[00:04:28] [Client thread/INFO]: Layer: appeng/parts/layers/LayerITileStorageMonitorable_TileCableBusTESR loaded successfully - 1082 bytes
[00:04:28] [Client thread/INFO]: Layer: appeng/parts/layers/LayerIEnergyHandler_TileCableBusTESR loaded successfully - 1823 bytes
[00:04:28] [Client thread/INFO]: Industrial Craft 2 - Integration Disabled
[00:04:28] [Client thread/INFO]: Rotary Craft - Integration Disabled
[00:04:28] [Client thread/INFO]: Railcraft - Integration Disabled
[00:04:28] [Client thread/INFO]: BuildCraft - Integration Disabled
[00:04:28] [Client thread/INFO]: RedstoneFlux Power - Tiles - Integration Enable
[00:04:28] [Client thread/INFO]: RedstoneFlux Power - Items - Integration Enable
[00:04:28] [Client thread/INFO]: Mine Factory Reloaded - Integration Enable
[00:04:28] [Client thread/INFO]: Deep Storage Unit - Integration Enable
[00:04:28] [Client thread/INFO]: Factorization - Integration Disabled
[00:04:28] [Client thread/INFO]: Forge MultiPart - Integration Disabled
[00:04:28] [Client thread/INFO]: Rotatable Blocks - Integration Disabled
[00:04:28] [Client thread/INFO]: Colored Lights Core - Integration Disabled
[00:04:28] [Client thread/INFO]: Waila - Integration Enable
[00:04:28] [Client thread/INFO]: Inventory Tweaks - Integration Enable
[00:04:28] [Client thread/INFO]: Not Enough Items - Integration Enable
[00:04:28] [Client thread/INFO]: Craft Guide - Integration Disabled
[00:04:28] [Client thread/INFO]: Mekanism - Integration Disabled
[00:04:28] [Client thread/INFO]: ImmibisMicroblocks - Integration Disabled
[00:04:28] [Client thread/INFO]: BetterStorage - Integration Disabled
[00:04:28] [Client thread/INFO]: Post Initialization ( ended after 408ms )
[00:04:28] [Client thread/INFO]: Entering postinitialization phase.
[00:04:28] [Client thread/INFO]: Loading Manual XML from: /assets/mantle/manuals/test.xml
[00:04:28] [Client thread/INFO]: InvTweaks: net.minecraft.inventory.ContainerWorkbench
[00:04:28] [Client thread/INFO]: [net.blay09.mods.craftingtweaks.Compatiblity:registerSimpleProvider:239]: Could not register Crafting Tweaks addon for Avaritia - internal names have changed.
[00:04:28] [Client thread/INFO]: [net.blay09.mods.craftingtweaks.Compatiblity:registerSimpleProvider:239]: Could not register Crafting Tweaks addon for BiblioCraft - internal names have changed.
[00:04:28] [Client thread/INFO]: [net.blay09.mods.craftingtweaks.Compatiblity:registerSimpleProvider:239]: Could not register Crafting Tweaks addon for BiblioCraft - internal names have changed.
[00:04:28] [Client thread/INFO]: [net.blay09.mods.craftingtweaks.Compatiblity:registerSimpleProvider:239]: Could not register Crafting Tweaks addon for bluepower - internal names have changed.
[00:04:28] [Client thread/INFO]: [net.blay09.mods.craftingtweaks.Compatiblity:registerSimpleProvider:239]: Could not register Crafting Tweaks addon for BuildCraft|Factory - internal names have changed.
[00:04:28] [Client thread/INFO]: [net.blay09.mods.craftingtweaks.Compatiblity:registerSimpleProvider:239]: Could not register Crafting Tweaks addon for jacb - internal names have changed.
[00:04:28] [Client thread/INFO]: [net.blay09.mods.craftingtweaks.Compatiblity:registerSimpleProvider:239]: Could not register Crafting Tweaks addon for ganyssurface - internal names have changed.
[00:04:28] [Client thread/INFO]: [net.blay09.mods.craftingtweaks.Compatiblity:registerProvider:249]: Could not register Crafting Tweaks addon for ganyssurface - internal names have changed.
[00:04:28] [Client thread/INFO]: [net.blay09.mods.craftingtweaks.Compatiblity:registerSimpleProvider:239]: Could not register Crafting Tweaks addon for Forestry - internal names have changed.
[00:04:28] [Client thread/INFO]: [net.blay09.mods.craftingtweaks.Compatiblity:registerSimpleProvider:239]: Could not register Crafting Tweaks addon for DraconicEvolution - internal names have changed.
[00:04:28] [Client thread/INFO]: [net.blay09.mods.craftingtweaks.Compatiblity:registerSimpleProvider:239]: Could not register Crafting Tweaks addon for ThermalExpansion - internal names have changed.
[00:04:28] [Client thread/INFO]: [net.blay09.mods.craftingtweaks.Compatiblity:registerSimpleProvider:239]: Could not register Crafting Tweaks addon for Railcraft - internal names have changed.
[00:04:28] [Client thread/INFO]: [net.blay09.mods.craftingtweaks.Compatiblity:registerSimpleProvider:239]: Could not register Crafting Tweaks addon for Railcraft - internal names have changed.
[00:04:28] [Client thread/INFO]: [net.blay09.mods.craftingtweaks.Compatiblity:registerSimpleProvider:239]: Could not register Crafting Tweaks addon for Thaumcraft - internal names have changed.
[00:04:28] [Client thread/INFO]: [net.blay09.mods.craftingtweaks.Compatiblity:registerSimpleProvider:239]: Could not register Crafting Tweaks addon for RotaryCraft - internal names have changed.
[00:04:28] [Client thread/INFO]: [net.blay09.mods.craftingtweaks.Compatiblity:registerProvider:249]: Could not register Crafting Tweaks addon for terrafirmacraft - internal names have changed.
[00:04:28] [Client thread/INFO]: Successfully enabled!
[00:04:28] [Client thread/WARN]: OreDictionaryPreferenceParser: Attempted to register 1xitem.itemPowderIngot@8 as the preffered output for dustObsidian but it is not registered in the OreDictionary as dustObsidian
[00:04:28] [Client thread/INFO]: Loaded 2 grinding balls from SAG Mill config.
[00:04:28] [Client thread/INFO]: Excluding 8 recipes from grinding balls bonus.
[00:04:28] [Client thread/INFO]: Found 48 valid SAG Mill recipes in config.
[00:04:28] [Client thread/INFO]: Finished processing SAG Mill recipes. 48 recipes avaliable.
[00:04:28] [Client thread/INFO]: Found 24 valid Alloy Smelter recipes in config.
[00:04:28] [Client thread/INFO]: Finished processing Alloy Smelter recipes. 24 recipes avaliable.
[00:04:28] [Client thread/INFO]: AlloyRecipeManager: Vannila smelting in AlloySmelting enabled=true
[00:04:28] [Client thread/INFO]: Found 4 valid Slice'N'Splice recipes in config.
[00:04:28] [Client thread/INFO]: Finished processing Slice'N'Splice recipes. 4 recipes avaliable.
[00:04:29] [Client thread/INFO]: Found 4 valid Vat recipes in config.
[00:04:29] [Client thread/INFO]: Finished processing Vat recipes. 4 recipes avaliable.
[00:04:29] [Client thread/WARN]: Could not find enchantment with name enchantment.enderzoo.witherArrow when parsing enchanter recipes.
[00:04:29] [Client thread/WARN]: Could not find enchantment with name enchantment.enderzoo.witherWeapon when parsing enchanter recipes.
[00:04:29] [Client thread/WARN]: Could not find enchantment with name enchantment.enderzoo.witherWeapon when parsing enchanter recipes.
[00:04:29] [Client thread/WARN]: Could not find enchantment with name enchantment.repair when parsing enchanter recipes.
[00:04:29] [Client thread/INFO]: Loaded 27 recipes for Enchanter
[00:04:29] [Client thread/INFO]: Registered Capacitor Banks as Tinkers Construct Flux Upgrades
[00:04:29] [Client thread/INFO]: [mcp.mobius.waila.gui.truetyper.TrueTypeFont:<init>:98]: TrueTypeFont loaded: java.awt.Font[family=Minecraftia,name=Minecraftia Regular,style=plain,size=14] - AntiAlias = true
[00:04:34] [Client thread/INFO]: postInitialize ENTER
[00:04:34] [Client thread/INFO]: Registered channel: world_info
[00:04:34] [Client thread/INFO]: Initializing icon sets...
[00:04:34] [Client thread/INFO]: postInitialize EXIT, elapsed§8 count §r1§8 avg §r335.86§8ms§r
[00:04:34] [Client thread/INFO]: Loading Manual XML from: /assets/mantle/manuals/test.xml
[00:04:34] [Client thread/INFO]: Loading Manual XML from: /assets/mantle/manuals/test.xml
[00:04:34] [Client thread/INFO]: Loading Manual XML from: /assets/mantle/manuals/test.xml
[00:04:34] [Client thread/INFO]: Loading Manual XML from: /assets/mantle/manuals/test.xml
[00:04:34] [Client thread/INFO]: Loading Manual XML from: /assets/mantle/manuals/test.xml
[00:04:34] [Client thread/WARN]: Could not find itemResourcefrom thaumcraft.common.config.ConfigItems
[00:04:34] [Client thread/WARN]: Thaumcraft not detected.
[00:04:34] [Client thread/INFO]: Attempting to patch JABBA dolly to allow picking up Sorting Chests...
[00:04:34] [Client thread/INFO]: JABBA dolly should be fixed and work on Sorting Chests now!
[00:04:34] [Client thread/INFO]: Sticks and stones may break my bones, but your pickaxes and axes will break no blocks.
[00:04:34] [JM-VersionCheck-1/INFO]: Newer version online: JourneyMap 5.1.4 for Minecraft 1.7.10 on http://minecraft.curseforge.com/projects/journeymap-32274/files/2283867
[00:04:34] [Client thread/INFO]:   Unknown recipe class! me.superckl.dpu.common.crafting.RecipeExcludifierNBT Modder please refer to net.minecraftforge.oredict.RecipeSorter
[00:04:34] [Client thread/INFO]:   Unknown recipe class! com.panicnot42.warpbook.crafting.WarpPageShapeless Modder please refer to net.minecraftforge.oredict.RecipeSorter
[00:04:34] [Client thread/INFO]:   Unknown recipe class! com.panicnot42.warpbook.crafting.WarpBookShapeless Modder please refer to net.minecraftforge.oredict.RecipeSorter
[00:04:34] [Client thread/INFO]:   Unknown recipe class! extracells.util.recipe.RecipeUniversalTerminal$ Modder please refer to net.minecraftforge.oredict.RecipeSorter
[00:04:34] [Client thread/INFO]: CoFH Core found 2 World Generation files present in D:\MultiMC\instances\test\minecraft\config\cofh\world/.
[00:04:34] [Client thread/INFO]: Reading world generation info from: D:\MultiMC\instances\test\minecraft\config\cofh\world\ThermalFoundation-Ores.json:
[00:04:34] [Client thread/ERROR]: Invalid block entry!
[00:04:34] [Client thread/WARN]: Template 'uniform' failed to parse its entry!
[00:04:34] [Client thread/ERROR]: Error parsing generation entry: "copper" > Please check the parameters. It *may* be a duplicate.
[00:04:34] [Client thread/ERROR]: Invalid block entry!
[00:04:34] [Client thread/WARN]: Template 'uniform' failed to parse its entry!
[00:04:34] [Client thread/ERROR]: Error parsing generation entry: "tin" > Please check the parameters. It *may* be a duplicate.
[00:04:34] [Client thread/ERROR]: Invalid block entry!
[00:04:34] [Client thread/WARN]: Template 'uniform' failed to parse its entry!
[00:04:34] [Client thread/ERROR]: Error parsing generation entry: "silver" > Please check the parameters. It *may* be a duplicate.
[00:04:34] [Client thread/ERROR]: Invalid block entry!
[00:04:34] [Client thread/WARN]: Template 'uniform' failed to parse its entry!
[00:04:34] [Client thread/ERROR]: Error parsing generation entry: "lead" > Please check the parameters. It *may* be a duplicate.
[00:04:34] [Client thread/ERROR]: Invalid block entry!
[00:04:34] [Client thread/WARN]: Template 'uniform' failed to parse its entry!
[00:04:34] [Client thread/ERROR]: Error parsing generation entry: "nickel" > Please check the parameters. It *may* be a duplicate.
[00:04:34] [Client thread/ERROR]: Invalid block entry!
[00:04:34] [Client thread/WARN]: Template 'uniform' failed to parse its entry!
[00:04:34] [Client thread/ERROR]: Error parsing generation entry: "platinum" > Please check the parameters. It *may* be a duplicate.
[00:04:34] [Client thread/ERROR]: Invalid block entry!
[00:04:34] [Client thread/WARN]: Template 'uniform' failed to parse its entry!
[00:04:34] [Client thread/ERROR]: Error parsing generation entry: "copperHigh" > Please check the parameters. It *may* be a duplicate.
[00:04:34] [Client thread/INFO]: Load Complete.
[00:04:34] [Client thread/WARN]: [bC] Class not found. java.lang.ClassNotFoundException: buildcraft.factory.TileTank
[00:04:34] [Client thread/WARN]: [industrialCraft 2] Error while loading generator hooks.java.lang.ClassNotFoundException: ic2.core.block.generator.tileentity.TileEntityBaseGenerator
[00:04:34] [Client thread/WARN]: [Thaumcraft] Class not found. java.lang.ClassNotFoundException: thaumcraft.common.Thaumcraft
[00:04:34] [Client thread/INFO]: EnderStorage mod found.
[00:04:34] [Client thread/INFO]: [GraveStone] GraveStone mod not found.
[00:04:34] [Client thread/INFO]: TwilightForestMod mod found.
[00:04:34] [Client thread/WARN]: [Thermal Expansion] Error while loading Energy Cell hooks.java.lang.ClassNotFoundException: cofh.thermalexpansion.block.cell.TileCell
[00:04:34] [Client thread/WARN]: [Thermal Expansion] Error while loading Tank hooks.java.lang.ClassNotFoundException: cofh.thermalexpansion.block.tank.TileTank
[00:04:34] [Client thread/WARN]: [Thermal Expansion] Error while loading Tesseract hooks.java.lang.ClassNotFoundException: cofh.thermalexpansion.block.ender.TileTesseract
[00:04:34] [Client thread/WARN]: [Thermal Expansion] Error while loading Tesseract hooks.java.lang.ClassNotFoundException: cofh.thermalexpansion.block.cache.TileCache
[00:04:34] [Client thread/WARN]: [Thermal Dynamics] Error while loading FluidDuct hooks.java.lang.ClassNotFoundException: cofh.thermaldynamics.ducts.fluid.TileFluidDuct
[00:04:34] [Client thread/INFO]: [Engineer Toolbox] Engineer Toolbox mod not found.
[00:04:34] [Client thread/INFO]: [ProjectRed] ProjectRed|Integration mod not found.
[00:04:34] [Client thread/INFO]: ExtraUtilities mod found.
[00:04:34] [Client thread/INFO]: OpenBlocks mod found.
[00:04:34] [Client thread/INFO]: [Railcraft] Railcraft mod not found.
[00:04:34] [Client thread/INFO]: [PamHarvestCraft] PamHarvestCraft mod not found.
[00:04:34] [Client thread/INFO]: [MagicalCrops] MagicalCrops mod not found.
[00:04:34] [Client thread/INFO]: [statues] Statues mod not found.
[00:04:34] [Client thread/INFO]: [Agriculture] Agriculture mod not found.
[00:04:34] [Client thread/INFO]: Trying to reflect crazypants.enderio.waila.WailaCompat load
[00:04:35] [Client thread/INFO]: Success in registering EnderIO
[00:04:35] [Client thread/INFO]: Trying to reflect appeng.integration.modules.Waila register
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings fly to class biomesoplenty.common.entities.EntityBird
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings hostile to class biomesoplenty.common.entities.EntityGlob
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings climb, hostile to class biomesoplenty.common.entities.EntityJungleSpider
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings float, hostile to class biomesoplenty.common.entities.EntityPhantom
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings fly to class biomesoplenty.common.entities.EntityPixie
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings float to class biomesoplenty.common.entities.EntityRosester
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings fly, hostile to class biomesoplenty.common.entities.EntityWasp
[00:04:35] [Client thread/INFO]: Success in registering appliedenergistics2
[00:04:35] [Client thread/INFO]: Trying to reflect mods.natura.plugins.waila.WailaRegistrar wailaCallback
[00:04:35] [Client thread/INFO]: Success in registering Natura
[00:04:35] [Client thread/INFO]: Trying to reflect extracells.integration.waila.Waila register
[00:04:35] [Client thread/INFO]: Success in registering extracells
[00:04:35] [Client thread/INFO]: Trying to reflect mcp.mobius.betterbarrels.BBWailaProvider callbackRegister
[00:04:35] [Client thread/INFO]: Success in registering JABBA
[00:04:35] [Client thread/INFO]: Trying to reflect tconstruct.plugins.waila.WailaRegistrar wailaCallback
[00:04:35] [Client thread/INFO]: [Waila-Compat] Got registrar: mcp.mobius.waila.api.impl.ModuleRegistrar@34feaca3
[00:04:35] [Client thread/INFO]: Success in registering TConstruct
[00:04:35] [Client thread/INFO]: Trying to reflect com.dynious.refinedrelocation.mods.WailaProvider callbackRegister
[00:04:35] [Client thread/INFO]: Success in registering RefinedRelocation
[00:04:35] [Client thread/INFO]: Trying to reflect net.zarathul.simplefluidtanks.waila.Registry register
[00:04:35] [Client thread/INFO]: Success in registering simplefluidtanks
[00:04:35] [Client thread/INFO]: Trying to reflect com.jaquadro.minecraft.storagedrawers.integration.Waila registerProvider
[00:04:35] [Client thread/INFO]: Success in registering StorageDrawers
[00:04:35] [Client thread/INFO]: Trying to reflect squeek.wailaharvestability.WailaHandler callbackRegister
[00:04:35] [Client thread/INFO]: Success in registering WailaHarvestability
[00:04:35] [Client thread/INFO]: Trying to reflect net.darkhax.wawla.addons.vanillamc.AddonVanillaEntities registerAddon
[00:04:35] [Client thread/INFO]: Success in registering wawla
[00:04:35] [Client thread/INFO]: Trying to reflect net.darkhax.wawla.addons.vanillamc.AddonVanillaTiles registerAddon
[00:04:35] [Client thread/INFO]: Success in registering wawla
[00:04:35] [Client thread/INFO]: Trying to reflect net.darkhax.wawla.addons.generic.AddonGenericEntities registerAddon
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings climb, fireImmunity, hostile to class mods.natura.entity.BabyHeatscarSpider
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings climb, fireImmunity, hostile to class mods.natura.entity.HeatscarSpider
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings fireImmunity, hostile to class mods.natura.entity.ImpEntity
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings fireImmunity, hostile to class mods.natura.entity.NitroCreeper
[00:04:35] [Client thread/INFO]: Success in registering wawla
[00:04:35] [Client thread/INFO]: Trying to reflect net.darkhax.wawla.addons.generic.AddonGenericTiles registerAddon
[00:04:35] [Client thread/INFO]: Success in registering wawla
[00:04:35] [Client thread/INFO]: Trying to reflect net.darkhax.wawla.addons.tinkersconstruct.AddonTinkersTiles registerAddon
[00:04:35] [Client thread/INFO]: Success in registering wawla
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings fly, hostile to class twilightforest.entity.EntityTFDeathTome
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings fireImmunity, hostile to class twilightforest.entity.EntityTFFireBeetle
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings climb, hostile to class twilightforest.entity.EntityTFHedgeSpider
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings fly, hostile to class twilightforest.entity.EntityTFMiniGhast
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings fly, hostile to class twilightforest.entity.EntityTFMosquitoSwarm
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings hostile to class twilightforest.entity.EntityTFPinchBeetle
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings climb, hostile to class twilightforest.entity.EntityTFSwarmSpider
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings fly to class twilightforest.entity.passive.EntityTFMobileFirefly
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings fly to class twilightforest.entity.passive.EntityTFRaven
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Adding ability mappings fly to class twilightforest.entity.passive.EntityTFTinyBird
[00:04:35] [Morph Online Resource Thread/INFO]: [0.9.2] Found and mapped ability mappings for 24 presumably Minecraft mobs.
[00:04:35] [Client thread/INFO]: Forge Mod Loader has successfully loaded 87 mods
[00:04:35] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Not Enough Items, FMLFileResourcePack:AppleCore, FMLFileResourcePack:Applied Energistics 2, FMLFileResourcePack:Aroma1997Core|Helper, FMLFileResourcePack:AromaBackup, FMLFileResourcePack:AromaBackup Recovery, FMLFileResourcePack:Biomes O' Plenty, FMLFileResourcePack:ChickenChunks, FMLFileResourcePack:CoFH Core, FMLFileResourcePack:ComputerCraft, FMLFileResourcePack:Crafting Tweaks, FMLFileResourcePack:Don't Pick Up, FMLFileResourcePack:EnderCore, FMLFileResourcePack:Ender IO, FMLFileResourcePack:EnderStorage, FMLFileResourcePack:Extra Cells 2, FMLFileResourcePack:Extra Utilities, FMLFileResourcePack:EZ Storage, FMLFileResourcePack:FastCraft, FMLFileResourcePack:Fast Leaf Decay, FMLFileResourcePack:iChunUtil, FMLFileResourcePack:Iguana Tinker Tweaks, FMLFileResourcePack:Inventory Pets, FMLFileResourcePack:Inventory Tweaks, FMLFileResourcePack:Iron Chest, FMLFileResourcePack:JABBA, FMLFileResourcePack:JourneyMap, FMLFileResourcePack:Keeping Inventory, FMLFileResourcePack:LunatriusCore, FMLFileResourcePack:Magical Crops, FMLFileResourcePack:Mantle, FMLFileResourcePack:MineFactory Reloaded, FMLFileResourcePack:MFR Compat: Applied Energistics, FMLFileResourcePack:MFR Compat: ForgeMicroblock, FMLFileResourcePack:MFR Compat: Tinkers' Construct, FMLFileResourcePack:MFR Compat: TwilightForest, FMLFileResourcePack:MFR Compat: Vanilla, FMLFileResourcePack:Morph, FMLFileResourcePack:Morpheus, FMLFileResourcePack:Natura, FMLFileResourcePack:NEI Addons, FMLFileResourcePack:NEI Addons: Developer Tools, FMLFileResourcePack:NEI Addons: Applied Energistics 2, FMLFileResourcePack:NEI Addons: Botany, FMLFileResourcePack:NEI Addons: Forestry, FMLFileResourcePack:NEI Addons: Crafting Tables, FMLFileResourcePack:NEI Addons: Ex Nihilo, FMLFileResourcePack:NEI Integration, FMLFileResourcePack:ObsidiPlates, FMLFileResourcePack:OpenBlocks, FMLFileResourcePack:OpenMods, FMLFileResourcePack:Pam's HarvestCraft, FMLFileResourcePack:Refined Relocation, FMLFileResourcePack:Simple Fluid Tanks, FMLFileResourcePack:Stackie, FMLFileResourcePack:Storage Drawers, FMLFileResourcePack:Super Crafting Frame, FMLFileResourcePack:Tinkers' Construct, FMLFileResourcePack:TiC Tooltips, FMLFileResourcePack:The Twilight Forest, FMLFileResourcePack:Vein Miner, FMLFileResourcePack:Mod Support, FMLFileResourcePack:Waila, FMLFileResourcePack:Waila Harvestability, FMLFileResourcePack:WAILA Plugins, FMLFileResourcePack:Warp Book, FMLFileResourcePack:What Are We Looking At, XU_Delegate_Pack, XU_Delegate_Pack, XU_Delegate_Pack
[00:04:37] [Client thread/WARN]: The sprite ironchest:dirtchest9000_side caused the mipmap level to drop from 4 to 3 because it's too small (14x14 px).
[00:04:37] [Client thread/INFO]: Created: 2048x1024 textures/blocks-atlas
[00:04:37] [Client thread/INFO]: Removed 0 missing texture stacktraces. Tada!
[00:04:39] [Client thread/WARN]: The sprite TwilightForest:snow_3 caused the mipmap level to drop from 4 to 3 because it's too small (8x8 px).
[00:04:39] [Client thread/INFO]: Created: 2048x1024 textures/items-atlas
[00:04:39] [Client thread/INFO]: Removed 0 missing texture stacktraces. Tada!
[00:04:39] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: 
[00:04:39] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
[00:04:39] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:     Author: Paul Lamb, www.paulscode.com
[00:04:39] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: 
[00:04:39] [sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: 
[00:04:39] [sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
[00:04:40] [Thread-24/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[00:04:40] [Thread-24/INFO]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[00:04:40] [Thread-24/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
[00:04:40] [Client thread/WARN]: JABBA-Debug Problem loading texture: extrautils:bw_(obsidian)
[00:04:40] [Client thread/WARN]: JABBA-Debug Problem loading texture: extrautils:bw_(obsidian)
[00:04:40] [Client thread/WARN]: JABBA-Debug Problem loading texture: extrautils:bw_(obsidian)
[00:04:40] [Client thread/WARN]: JABBA-Debug Problem loading texture: extrautils:bw_(obsidian)
[00:04:40] [Client thread/WARN]: JABBA-Debug Problem loading texture: extrautils:bw_(obsidian)
[00:04:40] [Client thread/WARN]: JABBA-Debug Problem loading texture: extrautils:bw_(obsidian)
[00:04:40] [Client thread/WARN]: JABBA-Debug Problem loading texture: extrautils:bw_(obsidian)
[00:04:40] [Client thread/WARN]: JABBA-Debug Problem loading texture: extrautils:bw_(obsidian)
[00:04:40] [Client thread/WARN]: JABBA-Debug Problem loading texture: extrautils:bw_(obsidian)
[00:04:40] [Client thread/WARN]: JABBA-Debug Problem loading texture: extrautils:bw_(obsidian)
[00:04:40] [Client thread/WARN]: JABBA-Debug Problem loading texture: extrautils:bw_(obsidian)
[00:04:40] [Client thread/WARN]: JABBA-Debug Problem loading texture: extrautils:bw_(obsidian)
[00:04:40] [Client thread/WARN]: JABBA-Debug Problem loading texture: extrautils:bw_(obsidian)
[00:04:40] [Client thread/WARN]: JABBA-Debug Problem loading texture: extrautils:bw_(obsidian)
[00:04:40] [Client thread/WARN]: JABBA-Debug Problem loading texture: extrautils:bw_(obsidian)
[00:04:40] [Client thread/WARN]: JABBA-Debug Problem loading texture: extrautils:bw_(obsidian)
[00:04:40] [Client thread/ERROR]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[00:04:40] [Client thread/ERROR]: The following texture errors were found.
[00:04:40] [Client thread/ERROR]: ==================================================
[00:04:40] [Client thread/ERROR]:   DOMAIN minecraft
[00:04:40] [Client thread/ERROR]: --------------------------------------------------
[00:04:40] [Client thread/ERROR]:   domain minecraft is missing 6 textures
[00:04:40] [Client thread/ERROR]:     domain minecraft has 2 locations:
[00:04:40] [Client thread/ERROR]:       unknown resourcepack type net.minecraft.client.resources.DefaultResourcePack : Default
[00:04:40] [Client thread/ERROR]:       mod journeymap resources at D:\MultiMC\instances\test\minecraft\mods\journeymap-1.7.10-5.1.3-unlimited.jar
[00:04:40] [Client thread/ERROR]: -------------------------
[00:04:40] [Client thread/ERROR]:     The missing resources for domain minecraft are:
[00:04:40] [Client thread/ERROR]:       textures/blocks/MISSING_ICON_BLOCK_681_extracells.block.walrus.png
[00:04:40] [Client thread/ERROR]:       textures/items/MISSING_ICON_ITEM_4355_extracells.pattern.crafting.png
[00:04:40] [Client thread/ERROR]:       textures/blocks/MISSING_ICON_BLOCK_427_bookshelf.png
[00:04:40] [Client thread/ERROR]:       textures/blocks/planks.png
[00:04:40] [Client thread/ERROR]:       textures/items/MISSING_ICON_ITEM_4352_extracells.fluid.item.png
[00:04:40] [Client thread/ERROR]:       textures/blocks/TConIntegration.bedrock.png
[00:04:40] [Client thread/ERROR]: -------------------------
[00:04:40] [Client thread/ERROR]:     No other errors exist for domain minecraft
[00:04:40] [Client thread/ERROR]: ==================================================
[00:04:40] [Client thread/ERROR]: ==================================================
[00:04:40] [Client thread/ERROR]:   DOMAIN missing_icon_item_4365_extrautils
[00:04:40] [Client thread/ERROR]: --------------------------------------------------
[00:04:40] [Client thread/ERROR]:   domain missing_icon_item_4365_extrautils is missing 1 texture
[00:04:40] [Client thread/ERROR]:     domain missing_icon_item_4365_extrautils is missing a resource manager - it is probably a side-effect of automatic texture processing
[00:04:40] [Client thread/ERROR]: -------------------------
[00:04:40] [Client thread/ERROR]:     The missing resources for domain missing_icon_item_4365_extrautils are:
[00:04:40] [Client thread/ERROR]:       textures/items/lawSword.png
[00:04:40] [Client thread/ERROR]: -------------------------
[00:04:40] [Client thread/ERROR]:     No other errors exist for domain missing_icon_item_4365_extrautils
[00:04:40] [Client thread/ERROR]: ==================================================
[00:04:40] [Client thread/ERROR]: ==================================================
[00:04:40] [Client thread/ERROR]:   DOMAIN harvestcraft
[00:04:40] [Client thread/ERROR]: --------------------------------------------------
[00:04:40] [Client thread/ERROR]:   domain harvestcraft is missing 1 texture
[00:04:40] [Client thread/ERROR]:     domain harvestcraft has 1 location:
[00:04:40] [Client thread/ERROR]:       mod harvestcraft resources at D:\MultiMC\instances\test\minecraft\mods\Pam's HarvestCraft 1.7.10Lb.jar
[00:04:40] [Client thread/ERROR]: -------------------------
[00:04:40] [Client thread/ERROR]:     The missing resources for domain harvestcraft are:
[00:04:40] [Client thread/ERROR]:       textures/items/chocolaterollItem.png
[00:04:40] [Client thread/ERROR]: -------------------------
[00:04:40] [Client thread/ERROR]:     No other errors exist for domain harvestcraft
[00:04:40] [Client thread/ERROR]: ==================================================
[00:04:40] [Client thread/ERROR]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[00:04:40] [sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: 
[00:04:40] [sound Library Loader/INFO]: Sound engine started
[00:04:41] [Client thread/INFO]: Loading blocks and textures...
[00:04:41] [Client thread/INFO]: Built BlockMD cache (2506) : BlockMD.reset count 1 avg 81.9ms
[00:04:41] [Client thread/INFO]: initBlocksTexture: 2048x1024 loaded in 46.484396ms
[00:04:41] [Client thread/WARN]: Existing color palette's mods no longer match current loadout.
[00:04:41] [Client thread/INFO]: WAS: AgriCraft:1.7.10-1.4.6-hotfix, AppleCore:1.3.0, Applied Energistics 2:rv2-stable-10, AppliedEnergistics2 Core:rv2-stable-10, Aroma1997Core:1.0.2.16, Aroma1997Core|Helper:1.0.2.16, AromaBackup Recovery:1.0, AromaBackup:0.1.0.0, Biomes O' Plenty:2.1.0, ChickenChunks:1.3.4.19, CoFH ASM:000, CoFH Core:1.7.10R3.1.2, CodeChicken Core:1.0.7.47, ComputerCraft:1.75, Crafting Tweaks:1.0.73, Don't Pick Up:1.2.40, EZ Storage:1.1.0, Ender IO:1.7.10-2.2.8.381, EnderCore:1.7.10-0.2.0.31_beta, EnderStorage:1.4.7.37, Extra Cells 2:2.3.9, Extra Utilities:1.2.12, Fast Leaf Decay:1.4, FastCraft:1.21, Forge Mod Loader:7.10.99.99, Iguana Tinker Tweaks:1.7.10-2.1.5.140, Inventory Pets:1.3.91, Inventory Tweaks:1.59-dev-152-cf6e263, Iron Chest:6.0.60.741, JABBA:1.2.1, JourneyMap:5.1.3, Keeping Inventory:1.7, LunatriusCore:1.1.2.21, MFR Compat: Applied Energistics:1.7.10R2.8.1, MFR Compat: ForgeMicroblock:1.7.10R2.8.1, MFR Compat: Tinkers' Construct:1.7.10R2.8.1, MFR Compat: TwilightForest:1.7.10R2.8.1, MFR Compat: Vanilla:1.7.10R2.8.1, Magical Crops:1.7.2 - 0.1 ALPHA, Mantle:1.7.10-0.3.2.jenkins191, MineFactory Reloaded:1.7.10R2.8.1, Minecraft Coder Pack:9.05, Minecraft Forge:10.13.4.1558, Mod Support:0.30.2_build.unknown, Morph:0.9.2, Morpheus:1.7.10-1.6.20, NEI Addons: Applied Energistics 2:1.12.14.40, NEI Addons: Botany:1.12.14.40, NEI Addons: Crafting Tables:1.12.14.40, NEI Addons: Developer Tools:1.12.14.40, NEI Addons: Ex Nihilo:1.12.14.40, NEI Addons: Forestry:1.12.14.40, NEI Addons:1.12.14.40, NEI Integration:1.1.1, Natura:2.2.0, Not Enough Items:1.0.5.118, ObsidiPlates:3.0.0.18, Pam's HarvestCraft:1.7.10j, Refined Relocation:1.1.25, Simple Fluid Tanks:1.7.10-1.2.0.5, Stackie:1.6.0.36, Storage Drawers:1.7.10-1.7.5, Super Crafting Frame:1.7.10.3, The Twilight Forest:2.3.7, TiC Tooltips:1.2.5, Tinkers' Construct:1.7.10-1.8.8.build988, Vein Miner:0.30.2_build.unknown, WAILA Plugins:MC1.7.10-0.2.0-23, Waila Harvestability:1.1.6, Waila:1.5.10, Warp Book:2.0.null, What Are We Looking At:1.3.3, iChunUtil:4.2.2
NOW: AppleCore:1.3.0, Applied Energistics 2:rv2-stable-10, AppliedEnergistics2 Core:rv2-stable-10, Aroma1997Core:1.0.2.16, Aroma1997Core|Helper:1.0.2.16, AromaBackup Recovery:1.0, AromaBackup:0.1.0.0, Biomes O' Plenty:2.1.0, ChickenChunks:1.3.4.19, CoFH ASM:000, CoFH Core:1.7.10R3.1.2, CodeChicken Core:1.0.7.47, ComputerCraft:1.75, Crafting Tweaks:1.0.73, Don't Pick Up:1.2.40, EZ Storage:1.1.0, Ender IO:1.7.10-2.2.8.381, EnderCore:1.7.10-0.2.0.31_beta, EnderStorage:1.4.7.37, Extra Cells 2:2.3.9, Extra Utilities:1.2.12, Fast Leaf Decay:1.4, FastCraft:1.21, Forge Mod Loader:7.10.99.99, Iguana Tinker Tweaks:1.7.10-2.1.5.140, Inventory Pets:1.3.91, Inventory Tweaks:1.59-dev-152-cf6e263, Iron Chest:6.0.60.741, JABBA:1.2.1, JourneyMap:5.1.3, Keeping Inventory:1.7, LunatriusCore:1.1.2.21, MFR Compat: Applied Energistics:1.7.10R2.8.1, MFR Compat: ForgeMicroblock:1.7.10R2.8.1, MFR Compat: Tinkers' Construct:1.7.10R2.8.1, MFR Compat: TwilightForest:1.7.10R2.8.1, MFR Compat: Vanilla:1.7.10R2.8.1, Magical Crops:1.7.2 - 0.1 ALPHA, Mantle:1.7.10-0.3.2.jenkins191, MineFactory Reloaded:1.7.10R2.8.1, Minecraft Coder Pack:9.05, Minecraft Forge:10.13.4.1558, Mod Support:0.30.2_build.unknown, Morph:0.9.2, Morpheus:1.7.10-1.6.20, NEI Addons: Applied Energistics 2:1.12.14.40, NEI Addons: Botany:1.12.14.40, NEI Addons: Crafting Tables:1.12.14.40, NEI Addons: Developer Tools:1.12.14.40, NEI Addons: Ex Nihilo:1.12.14.40, NEI Addons: Forestry:1.12.14.40, NEI Addons:1.12.14.40, NEI Integration:1.1.1, Natura:2.2.0, Not Enough Items:1.0.5.118, ObsidiPlates:3.0.0.18, OpenBlocks:1.5.1, OpenMods:0.9.1, OpenModsCore:0.9.1, Pam's HarvestCraft:1.7.10j, Refined Relocation:1.1.25, Simple Fluid Tanks:1.7.10-1.2.0.5, Stackie:1.6.0.36, Storage Drawers:1.7.10-1.7.5, Super Crafting Frame:1.7.10.3, The Twilight Forest:2.3.7, TiC Tooltips:1.2.5, Tinkers' Construct:1.7.10-1.8.8.build988, Vein Miner:0.30.2_build.unknown, WAILA Plugins:MC1.7.10-0.2.0-23, Waila Harvestability:1.1.6, Waila:1.5.10, Warp Book:2.0.null, What Are We Looking At:1.3.3, iChunUtil:4.2.2
[00:04:41] [Client thread/INFO]: Initialized 2329 block colors from mods and resource packs in 95ms
[00:04:41] [Client thread/WARN]: Block with Error flag won't be saved to color palette: BlockMD [EnderIO:blockFusedQuartz:1] (OpenToSky,Transparency,Error,TransparentRoof)
[00:04:41] [Client thread/WARN]: Block with Error flag won't be saved to color palette: BlockMD [EnderIO:blockFusedQuartz:3] (OpenToSky,Transparency,Error,TransparentRoof)
[00:04:41] [Client thread/WARN]: Block with Error flag won't be saved to color palette: BlockMD [TwilightForest:tile.HugeLilyPad:0] (NoShadow,Transparency,Error,Plant,NoTopo)
[00:04:41] [Client thread/INFO]: Color palette file generated with 2332 colors in 57ms for: D:\MultiMC\instances\test\minecraft\journeymap\colorpalette.json
[00:04:41] [Client thread/INFO]: Updated color palette file: D:\MultiMC\instances\test\minecraft\journeymap\colorpalette.json
[00:05:11] [server thread/INFO]: Starting integrated minecraft server version 1.7.10
[00:05:11] [server thread/INFO]: Generating keypair
[00:05:11] [server thread/ERROR]: This world was saved with mod AgriCraft which appears to be missing, things may not work well
[00:05:11] [server thread/INFO]: Injecting existing block and item data into this server instance
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropOrchid
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropTulipOrange
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:channelValve
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:fence
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropJaslumine
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropAurigold
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropSugarcane
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:waterTank
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropFerranium
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropShroomRed
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropPetinia
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropNitorWart
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:crops
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropDaisy
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedStorage
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:waterPad
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropAllium
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropCactus
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:waterChannelFull
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropShroomBrown
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:waterPadFull
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropTulipWhite
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropPotato
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropQuartzanthemum
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropCarrot
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedAnalyzer
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropEmeryllis
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:waterChannel
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropLapender
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropCuprosia
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:fenceGate
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:sprinkler
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropDiamahlia
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropRedstodendron
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:grate
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropTulipRed
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:peripheral
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropDandelion
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropPoppy
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropTulipPink
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:clipper
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:fence
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropTulipWhite
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropPetinia
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:nuggetQuartz
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropRedstodendron
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropDaisy
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedTulipPink
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:peripheral
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropPotato
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedDaisy
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedNitorWart
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropQuartzanthemum
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:clipping
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:trowel
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:handRake
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedPetinia
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropShroomRed
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:waterTank
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropAllium
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropTulipPink
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedTulipRed
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:crops
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedShroomBrown
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:waterPadFull
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropOrchid
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedStorage
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:debugger
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropAurigold
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropShroomBrown
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedTulipOrange
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedSugarcane
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedAllium
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedTulipWhite
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedCactus
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedShroomRed
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedOrchid
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedLapender
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropJaslumine
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropsItem
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:channelValve
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropTulipOrange
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedQuartzanthemum
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedPotato
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:grate
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropDandelion
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedPoppy
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedCarrot
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropDiamahlia
[00:05:11] [server thread/INFO]: Found a missing id from the world EnderIO:bucketXpjuice
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedFerranium
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedAnalyzer
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropEmeryllis
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropCuprosia
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropCactus
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedCuprosia
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedJaslumine
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropSugarcane
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedRedstodendron
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:fenceGate
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropNitorWart
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedDandelion
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedAurigold
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:magnifyingGlass
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:journal
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropPoppy
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropFerranium
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:waterPad
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedEmeryllis
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropTulipRed
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:waterChannel
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:sprinkler
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:waterChannelFull
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropLapender
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:seedDiamahlia
[00:05:11] [server thread/INFO]: Found a missing id from the world AgriCraft:cropCarrot
[00:05:11] [server thread/ERROR]: There are unidentified mappings in this world - we are going to attempt to process anyway
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropOrchid, id 190
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropTulipOrange, id 193
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:channelValve, id 178
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:fence, id 182
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropJaslumine, id 1229
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropAurigold, id 1219
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropSugarcane, id 187
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:waterTank, id 169
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropFerranium, id 1220
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropShroomRed, id 198
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropPetinia, id 1228
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropNitorWart, id 1225
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:crops, id 165
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropDaisy, id 196
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:seedStorage, id 180
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:waterPad, id 167
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropAllium, id 191
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropCactus, id 197
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:waterChannelFull, id 177
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropShroomBrown, id 199
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:waterPadFull, id 168
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropTulipWhite, id 194
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropPotato, id 185
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropQuartzanthemum, id 1226
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropCarrot, id 186
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:seedAnalyzer, id 166
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropEmeryllis, id 1223
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:waterChannel, id 176
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropLapender, id 1222
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropCuprosia, id 1227
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:fenceGate, id 183
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:sprinkler, id 179
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropDiamahlia, id 1221
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropRedstodendron, id 1224
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:grate, id 184
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropTulipRed, id 192
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:peripheral, id 181
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropDandelion, id 188
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropPoppy, id 189
[00:05:11] [server thread/ERROR]: Unidentified block: AgriCraft:cropTulipPink, id 195
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:clipper, id 4119
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:fence, id 182
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropTulipWhite, id 194
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropPetinia, id 1228
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:nuggetQuartz, id 5624
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropRedstodendron, id 1224
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropDaisy, id 196
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedTulipPink, id 4108
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:peripheral, id 181
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropPotato, id 185
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedDaisy, id 4109
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedNitorWart, id 5631
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropQuartzanthemum, id 1226
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:clipping, id 4120
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:trowel, id 4117
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:handRake, id 4118
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedPetinia, id 5634
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropShroomRed, id 198
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:waterTank, id 169
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropAllium, id 191
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropTulipPink, id 195
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedTulipRed, id 4105
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:crops, id 165
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedShroomBrown, id 4112
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:waterPadFull, id 168
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropOrchid, id 190
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedStorage, id 180
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:debugger, id 4116
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropAurigold, id 1219
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropShroomBrown, id 199
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedTulipOrange, id 4106
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedSugarcane, id 4100
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedAllium, id 4104
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedTulipWhite, id 4107
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedCactus, id 4110
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedShroomRed, id 4111
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedOrchid, id 4103
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedLapender, id 5628
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropJaslumine, id 1229
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropsItem, id 4113
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:channelValve, id 178
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropTulipOrange, id 193
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedQuartzanthemum, id 5632
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedPotato, id 4098
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:grate, id 184
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropDandelion, id 188
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedPoppy, id 4102
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedCarrot, id 4099
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropDiamahlia, id 1221
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedFerranium, id 5626
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedAnalyzer, id 166
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropEmeryllis, id 1223
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropCuprosia, id 1227
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropCactus, id 197
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedCuprosia, id 5633
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedJaslumine, id 5635
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropSugarcane, id 187
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedRedstodendron, id 5630
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:fenceGate, id 183
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropNitorWart, id 1225
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedDandelion, id 4101
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedAurigold, id 5625
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:magnifyingGlass, id 4115
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:journal, id 4114
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropPoppy, id 189
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropFerranium, id 1220
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:waterPad, id 167
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedEmeryllis, id 5629
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropTulipRed, id 192
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:waterChannel, id 176
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:sprinkler, id 179
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:waterChannelFull, id 177
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropLapender, id 1222
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:seedDiamahlia, id 5627
[00:05:11] [server thread/ERROR]: Unidentified item: AgriCraft:cropCarrot, id 186
[00:05:11] [server thread/ERROR]: Unidentified item: EnderIO:bucketXpjuice, id 4350
[00:05:14] [server thread/INFO]: World backup created at D:\MultiMC\instances\test\minecraft\saves\New World-20160305-000514.zip.
[00:05:14] [server thread/ERROR]: This world contains block and item mappings that may cause world breakage
[00:05:14] [server thread/INFO]: Injecting new block and item data into this server instance.
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:projector: 932 (init) -> 1324 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:tank: 907 (init) -> 1325 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:heal: 903 (init) -> 1326 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:flag: 906 (init) -> 1327 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:canvasglass: 931 (init) -> 1328 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:elevator: 901 (init) -> 1329 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:autoenchantmenttable: 921 (init) -> 1330 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:xpshower: 935 (init) -> 1331 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:canvas: 929 (init) -> 1332 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:donationStation: 927 (init) -> 1333 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:grave: 905 (init) -> 1334 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:beartrap: 909 (init) -> 1335 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:paintmixer: 928 (init) -> 1336 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:guide: 899 (init) -> 1337 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:builder_guide: 900 (init) -> 1338 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:paintcan: 930 (init) -> 1339 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:blockPlacer: 924 (init) -> 1340 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:elevator_rotating: 902 (init) -> 1341 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:path: 919 (init) -> 1342 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:autoanvil: 920 (init) -> 1343 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:xpdrain: 922 (init) -> 1344 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:sprinkler: 910 (init) -> 1345 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:trophy: 908 (init) -> 1346 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:vacuumhopper: 912 (init) -> 1347 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:drawingtable: 933 (init) -> 1348 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:sky: 934 (init) -> 1349 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:ladder: 898 (init) -> 1350 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:xpbottler: 917 (init) -> 1351 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:ropeladder: 926 (init) -> 1352 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:cannon: 911 (init) -> 1353 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:sponge: 913 (init) -> 1354 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:goldenegg: 936 (init) -> 1355 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:bigbutton: 914 (init) -> 1356 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:village_highlighter: 918 (init) -> 1357 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:itemDropper: 925 (init) -> 1358 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:target: 904 (init) -> 1359 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:fan: 916 (init) -> 1360 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:imaginary: 915 (init) -> 1361 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:blockbreaker: 923 (init) -> 1362 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:scaffolding: 937 (init) -> 1363 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:projector: 932 (init) -> 1324 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:canvasglass: 931 (init) -> 1328 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:wrench: 4697 (init) -> 5889 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:infoBook: 4692 (init) -> 5890 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:autoenchantmenttable: 921 (init) -> 1330 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:donationStation: 927 (init) -> 1333 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:paintBrush: 4682 (init) -> 5891 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:genericUnstackable: 4690 (init) -> 5892 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:emptyMap: 4686 (init) -> 5893 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:epicEraser: 4696 (init) -> 5894 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:paintmixer: 928 (init) -> 1336 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:slimalyzer: 4679 (init) -> 5895 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:elevator_rotating: 902 (init) -> 1341 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:path: 919 (init) -> 1342 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:hangglider: 4669 (init) -> 5896 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:crayonGlasses: 4674 (init) -> 5897 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:seriousGlasses: 4676 (init) -> 5898 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:sprinkler: 910 (init) -> 1345 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:goldenEye: 4689 (init) -> 5899 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:pencilGlasses: 4673 (init) -> 5900 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:heightMap: 4685 (init) -> 5901 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:pedometer: 4695 (init) -> 5902 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:drawingtable: 933 (init) -> 1348 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:filledbucket: 4680 (init) -> 5903 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:sky: 934 (init) -> 1349 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:generic: 4670 (init) -> 5904 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:ropeladder: 926 (init) -> 1352 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:goldenegg: 936 (init) -> 1355 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:village_highlighter: 918 (init) -> 1357 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:itemDropper: 925 (init) -> 1358 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:devnull: 4693 (init) -> 5905 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:fan: 916 (init) -> 1360 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:imaginary: 915 (init) -> 1361 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:spongeonastick: 4694 (init) -> 5906 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:scaffolding: 937 (init) -> 1363 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:tank: 907 (init) -> 1325 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:heal: 903 (init) -> 1326 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:flag: 906 (init) -> 1327 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:elevator: 901 (init) -> 1329 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:xpshower: 935 (init) -> 1331 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:canvas: 929 (init) -> 1332 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:sonicglasses: 4672 (init) -> 5907 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:grave: 905 (init) -> 1334 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:sleepingBag: 4681 (init) -> 5908 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:beartrap: 909 (init) -> 1335 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:guide: 899 (init) -> 1337 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:builder_guide: 900 (init) -> 1338 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:paintcan: 930 (init) -> 1339 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:blockPlacer: 924 (init) -> 1340 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:squeegee: 4684 (init) -> 5909 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:autoanvil: 920 (init) -> 1343 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:xpdrain: 922 (init) -> 1344 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:cartographer: 4687 (init) -> 5910 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:trophy: 908 (init) -> 1346 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:vacuumhopper: 912 (init) -> 1347 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:luggage: 4671 (init) -> 5911 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:cursor: 4691 (init) -> 5912 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:tastyClay: 4688 (init) -> 5913 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:ladder: 898 (init) -> 1350 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:xpbottler: 917 (init) -> 1351 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:cannon: 911 (init) -> 1353 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:sponge: 913 (init) -> 1354 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:craneControl: 4677 (init) -> 5914 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:craneBackpack: 4678 (init) -> 5915 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:bigbutton: 914 (init) -> 1356 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:target: 904 (init) -> 1359 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:technicolorGlasses: 4675 (init) -> 5916 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:blockbreaker: 923 (init) -> 1362 (map).
[00:05:14] [server thread/INFO]: Injected new block/item OpenBlocks:stencil: 4683 (init) -> 5917 (map).
[00:05:14] [server thread/INFO]: Applying holder lookups
[00:05:14] [server thread/INFO]: Holder lookups applied
[00:05:14] [server thread/ERROR]: The fluid EnderIO:xpjuice specified as default is not present - it will be reverted to default OpenBlocks:xpjuice
[00:05:14] [server thread/INFO]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@bcdf039)
[00:05:14] [server thread/INFO]: Loading dimension 7 (New World) (net.minecraft.server.integrated.IntegratedServer@bcdf039)
[00:05:14] [server thread/INFO]: Loading dimension -100 (New World) (net.minecraft.server.integrated.IntegratedServer@bcdf039)
[00:05:14] [server thread/INFO]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@bcdf039)
[00:05:14] [server thread/INFO]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@bcdf039)
[00:05:14] [server thread/INFO]: Loading dimension -112 (New World) (net.minecraft.server.integrated.IntegratedServer@bcdf039)
Attemping to load JABBA data.
[00:05:14] [server thread/INFO]: Preparing start region for level 0
[00:05:14] [server thread/WARN]: Skipping Piece with id AgriCraft:GreenhouseIrrigated
[00:05:14] [server thread/WARN]: Skipping Piece with id AgriCraft:Greenhouse
[00:05:15] [AromaBackup-Schedule/INFO]: Starting Backup Schedule.
[00:05:15] [server thread/INFO]: Next Backup in: 5 seconds.
[00:05:15] [server thread/INFO]: 2400 max items. false
[00:05:15] [server thread/INFO]: Changing view distance to 12, from 10
[00:05:15] [server thread/INFO]: InvTweaks: net.minecraft.inventory.ContainerBrewingStand
[00:05:15] [server thread/INFO]: InvTweaks: net.minecraft.inventory.ContainerBeacon
[00:05:15] [server thread/INFO]: InvTweaks: net.minecraft.inventory.ContainerMerchant
[00:05:15] [server thread/INFO]: InvTweaks: net.minecraft.inventory.ContainerDispenser
[00:05:15] [server thread/INFO]: InvTweaks: net.minecraft.inventory.ContainerHopper
[00:05:15] [server thread/INFO]: InvTweaks: net.minecraft.inventory.ContainerRepair
[00:05:15] [server thread/INFO]: Transforming Class [net.minecraft.inventory.ContainerRepair], Method [func_82848_d]
[00:05:15] [server thread/INFO]: Transforming net.minecraft.inventory.ContainerRepair Finished.
[00:05:15] [server thread/INFO]: InvTweaks: net.minecraft.inventory.ContainerChest
[00:05:15] [Netty Client IO #0/INFO]: Server protocol version 2
[00:05:15] [Netty IO #1/INFO]: Client protocol version 2
[00:05:15] [Netty IO #1/INFO]: Client attempting to join with 75 mods : NotEnoughItems@1.0.5.118,Waila@1.5.10,extracells@2.3.9,TConstruct@1.7.10-1.8.8.build988,AromaBackup@0.1.0.0,appliedenergistics2-core@rv2-stable-10,NEIAddons@1.12.14.40,iChunUtil@4.2.2,OpenModsCore@0.9.1,MineFactoryReloaded|CompatTwilightForest@1.7.10R2.8.1,NEIAddons|Developer@1.12.14.40,Stackie@1.6.0.36,wawla@1.3.3,endercore@1.7.10-0.2.0.31_beta,Morph@0.9.2,mcp@9.05,Mantle@1.7.10-0.3.2.jenkins191,journeymap@5.1.3,appliedenergistics2@rv2-stable-10,AromaBackupRecovery@1.0,InventoryPets@1.3.91,MineFactoryReloaded|CompatTConstruct@1.7.10R2.8.1,MineFactoryReloaded|CompatAppliedEnergistics@1.7.10R2.8.1,inventorytweaks@1.59-dev-152-cf6e263,harvestcraft@1.7.10j,Morpheus@1.7.10-1.6.20,BiomesOPlenty@2.1.0,LunatriusCore@1.1.2.21,TwilightForest@2.3.7,ExtraUtilities@1.2.12,NEIAddons|AppEng@1.12.14.40,supercraftingframe@1.7.10.3,OpenBlocks@1.5.1,EnderStorage@1.4.7.37,MineFactoryReloaded|CompatVanilla@1.7.10R2.8.1,warpbook@2.0.null,MineFactoryReloaded|CompatForgeMicroblock@1.7.10R2.8.1,MineFactoryReloaded@1.7.10R2.8.1,EnderIO@1.7.10-2.2.8.381,craftingtweaks@1.0.73,wailaplugins@MC1.7.10-0.2.0-23,ComputerCraft@1.75,CoFHCore@1.7.10R3.1.2,VeinMinerModSupport@0.30.2_build.unknown,neiintegration@1.1.1,DPU@1.2.40,FastCraft@1.21,Forge@10.13.4.1558,IronChest@6.0.60.741,NEIAddons|Botany@1.12.14.40,VeinMiner@0.30.2_build.unknown,simplefluidtanks@1.7.10-1.2.0.5,StorageDrawers@1.7.10-1.7.5,Aroma1997Core@1.0.2.16,CodeChickenCore@1.0.7.47,ChickenChunks@1.3.4.19,RefinedRelocation@1.1.25,ezstorage@1.1.0,JABBA@1.2.1,AppleCore@1.3.0,IguanaTweaksTConstruct@1.7.10-2.1.5.140,FML@7.10.99.99,Natura@2.2.0,NEIAddons|Forestry@1.12.14.40,TiCTooltips@1.2.5,magicalcrops@1.7.2 - 0.1 ALPHA,Aroma1997CoreHelper@1.0.2.16,<CoFH ASM>@000,KeepingInventory@1.7,NEIAddons|CraftingTables@1.12.14.40,NEIAddons|ExNihilo@1.12.14.40,WailaHarvestability@1.1.6,fastleafdecay@1.4,OpenMods@0.9.1,ObsidiPlates@3.0.0.18
[00:05:15] [Netty IO #1/INFO]: Attempting connection with missing mods [] at CLIENT
[00:05:15] [Netty Client IO #0/INFO]: Attempting connection with missing mods [] at SERVER
[00:05:15] [server thread/INFO]: [server thread] Server side modded connection established
[00:05:15] [Client thread/INFO]: [Client thread] Client side modded connection established
[00:05:15] [Client thread/INFO]: Connected to new server, resetting commands
[00:05:15] [server thread/INFO]: <PROFILE NAME>[local:E:63f1c58e] logged in with entity id 222 at (-0.47241255371115853, 74.5900000333786, 37.833669674175376)
[00:05:15] [server thread/INFO]: <PROFILE NAME> joined the game
[00:05:15] [server thread/INFO]: Sending server configs to client for com.enderio.core.common.config.ConfigHandler
[00:05:15] [Client thread/INFO]: Transforming Class [net.minecraft.inventory.ContainerRepair], Method [func_82848_d]
[00:05:15] [Client thread/INFO]: Transforming net.minecraft.inventory.ContainerRepair Finished.
[00:05:16] [server thread/INFO]: Sending server configs to client for tterrag.wailaplugins.config.WPConfigHandler
[00:05:16] [Client thread/INFO]: Received config sync packet from server...
[00:05:16] [server thread/INFO]: Player EntityPlayerMP['<PROFILE NAME>'/222, l='New World', x=-0.47, y=74.59, z=37.83] connected. Sending ping
[00:05:17] [Client thread/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@36665ce[id=07ed2a46-0972-48c3-9c29-c3d8bf24050c,name=<PROFILE NAME>,properties={},legacy=false]
com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time
    at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:65) ~[YggdrasilAuthenticationService.class:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:175) [YggdrasilMinecraftSessionService.class:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:168) [YggdrasilMinecraftSessionService.class:?]
    at ichun.common.core.EntityHelperBase.getFullGameProfileFromName(EntityHelperBase.java:109) [EntityHelperBase.class:?]
    at morph.common.morph.MorphState.createPlayer(MorphState.java:173) [MorphState.class:?]
    at morph.common.morph.MorphState.readTag(MorphState.java:123) [MorphState.class:?]
    at morph.common.packet.PacketMorphStates.handleClient(PacketMorphStates.java:83) [PacketMorphStates.class:?]
    at morph.common.packet.PacketMorphStates.execute(PacketMorphStates.java:62) [PacketMorphStates.class:?]
    at ichun.common.core.network.ChannelHandler$PacketExecuter.channelRead0(ChannelHandler.java:84) [ChannelHandler$PacketExecuter.class:?]
    at ichun.common.core.network.ChannelHandler$PacketExecuter.channelRead0(ChannelHandler.java:66) [ChannelHandler$PacketExecuter.class:?]
    at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:98) [simpleChannelInboundHandler.class:?]
    at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) [DefaultChannelHandlerContext.class:?]
    at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) [DefaultChannelHandlerContext.class:?]
    at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103) [MessageToMessageDecoder.class:?]
    at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) [MessageToMessageCodec.class:?]
    at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) [DefaultChannelHandlerContext.class:?]
    at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) [DefaultChannelHandlerContext.class:?]
    at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:785) [DefaultChannelPipeline.class:?]
    at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) [EmbeddedChannel.class:?]
    at cpw.mods.fml.common.network.internal.FMLProxyPacket.func_148833_a(FMLProxyPacket.java:77) [FMLProxyPacket.class:?]
    at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:212) [ej.class:?]
    at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:2061) [bao.class:?]
    at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:973) [bao.class:?]
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:898) [bao.class:?]
    at net.minecraft.client.main.Main.main(SourceFile:148) [Main.class:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_73]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_73]
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_73]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_73]
    at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:310) [NewLaunch.jar:?]
    at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:395) [NewLaunch.jar:?]
    at org.multimc.EntryPoint.listen(EntryPoint.java:170) [NewLaunch.jar:?]
    at org.multimc.EntryPoint.main(EntryPoint.java:54) [NewLaunch.jar:?]
[00:05:17] [Client thread/ERROR]: Failed to find identifier for: mods.natura.items.BerryMedley@166eb657
[00:05:19] [Client thread/INFO]: Added NEI integration
[00:05:19] [Client thread/INFO]: Loading integration: Minecraft / Forge
[00:05:19] [Client thread/INFO]: Loading integration: Pam's HarvestCraft
[00:05:19] [Client thread/INFO]: Loading integration: MineFactory Reloaded
[00:05:19] [Client thread/INFO]: Received server authentication msg. Remote sync will be activated
[00:05:19] [Client thread/INFO]: [CHAT] [KeepingInventory] §9Your inventory will be kept on death.
[00:05:19] [Client thread/INFO]: [CHAT] [KeepingInventory] §9Creepers will not destroy blocks.
[00:05:19] [Client thread/INFO]: Received handshake from server
[00:05:19] [Client thread/INFO]: Available server commands: SetAE2FakeSlot
[00:05:20] [Client thread/INFO]: [CHAT] Veinminer using client keybind. See mod config for details.
[00:05:20] [Client thread/INFO]: [CHAT] [Refined Relocation] New version 1.1.21 available.
[00:05:20] [Client thread/INFO]: [CHAT] Click here to download the latest version.
[00:05:20] [Client thread/INFO]: [CHAT] InvTweaks: Configuration loaded.
[00:05:20] [Client thread/INFO]: 2400 max items. true
[00:05:20] [Client thread/INFO]: [CHAT] §6The mod Extra Cells 2 is supporting In-Game Wiki mod. §6However, In-Game Wiki isn't installed! [Download Latest]
[00:05:21] [Client thread/INFO]: Loaded 0 waypoints from D:\MultiMC\instances\test\minecraft\journeymap\data\sp\New World\waypoints
[00:05:21] [Client thread/INFO]: Blocks and textures are current
[00:05:21] [Client thread/INFO]: Mapping started in D:\MultiMC\instances\test\minecraft\journeymap\data\sp\New World\DIM0. Memory: 3050MB total, 1832MB free 
[00:05:21] [Client thread/INFO]: [CHAT] §eJourneyMap:§f Press [§bJ§f]
[00:05:21] [Client thread/INFO]: JourneyMap: Press [J]
[00:05:22] [AromaBackup/INFO]: [§1AromaBackup§r] Starting Backup. The world may lag for a bit!
[00:05:22] [Client thread/INFO]: [CHAT] [§1AromaBackup§r] Starting Backup. The world may lag for a bit!
[00:05:24] [AromaBackup/INFO]: Suspending Server Thread.
[00:05:24] [AromaBackup/INFO]: Continuing Server Thread.
[00:05:24] [AromaBackup/INFO]: [§1AromaBackup§r] World Backup done!
[00:05:24] [AromaBackup/INFO]: [§1AromaBackup§r] Next scheduled Backup in 30 minutes.
[00:05:25] [Client thread/INFO]: [CHAT] [§1AromaBackup§r] World Backup done!
[00:05:25] [Client thread/INFO]: [CHAT] [§1AromaBackup§r] Next scheduled Backup in 30 minutes.
[00:05:33] [Client thread/INFO]: InvTweaks: net.minecraft.client.gui.GuiTextField
[00:05:33] [Client thread/INFO]: InvTweaks: successfully transformed setFocused/func_146195_b
[00:05:33] [Client thread/INFO]: codechicken.nei.GuiExtendedCreativeInv
[00:05:33] [Client thread/INFO]: codechicken.nei.ContainerCreativeInv
[00:05:39] [server thread/INFO]: [<PROFILE NAME>: Given [Cursor] * 1 to <PROFILE NAME>]
[00:05:39] [Client thread/INFO]: [CHAT] Given [Cursor] * 1 to <PROFILE NAME>
[00:05:47] [Client thread/INFO]: com.zerofall.ezstorage.gui.GuiCraftingCore
[00:05:47] [Client thread/INFO]: com.zerofall.ezstorage.container.ContainerStorageCoreCrafting
[00:05:51] [Client thread/INFO]: codechicken.nei.GuiExtendedCreativeInv
[00:05:51] [Client thread/INFO]: codechicken.nei.ContainerCreativeInv
[00:05:53] [server thread/INFO]: [<PROFILE NAME>: Given [Chunk Loader] * 64 to <PROFILE NAME>]
[00:05:54] [Client thread/INFO]: [CHAT] Given [Chunk Loader] * 64 to <PROFILE NAME>
[00:05:58] [Client thread/INFO]: com.zerofall.ezstorage.gui.GuiCraftingCore
[00:05:58] [Client thread/INFO]: com.zerofall.ezstorage.container.ContainerStorageCoreCrafting
[00:06:03] [Client thread/INFO]: com.zerofall.ezstorage.gui.GuiCraftingCore
[00:06:03] [Client thread/INFO]: com.zerofall.ezstorage.container.ContainerStorageCoreCrafting
[00:06:09] [Client thread/INFO]: com.zerofall.ezstorage.gui.GuiCraftingCore
[00:06:09] [Client thread/INFO]: com.zerofall.ezstorage.container.ContainerStorageCoreCrafting
[00:06:10] [server thread/INFO]: Mapping halted in D:\MultiMC\instances\test\minecraft\journeymap\data\sp\New World\DIM0
[00:06:10] [server thread/INFO]: Unloading dimension 7
[00:06:10] [server thread/INFO]: Unloading dimension 1
[00:06:10] [server thread/INFO]: Unloading dimension -100
[00:06:11] [Client thread/INFO]: Loaded 0 waypoints from D:\MultiMC\instances\test\minecraft\journeymap\data\sp\New World\waypoints
[00:06:11] [Client thread/INFO]: Blocks and textures are current
[00:06:11] [Client thread/INFO]: Mapping started in D:\MultiMC\instances\test\minecraft\journeymap\data\sp\New World\DIM0. Memory: 3027MB total, 2400MB free 
[00:06:12] [Client thread/INFO]: com.zerofall.ezstorage.gui.GuiCraftingCore
[00:06:12] [Client thread/INFO]: com.zerofall.ezstorage.container.ContainerStorageCoreCrafting
[00:06:17] [Client thread/INFO]: com.zerofall.ezstorage.gui.GuiCraftingCore
[00:06:17] [Client thread/INFO]: com.zerofall.ezstorage.container.ContainerStorageCoreCrafting
[00:06:22] [Client thread/INFO]: Mapping halted in D:\MultiMC\instances\test\minecraft\journeymap\data\sp\New World\DIM0
[00:06:22] [server thread/INFO]: Stopping server
[00:06:22] [server thread/INFO]: Saving players
[00:06:22] [server thread/INFO]: Saving worlds
[00:06:22] [Netty Client IO #0/INFO]: Restoring client config values...
[00:06:22] [Netty Client IO #0/INFO]: Reset configs to client values for com.enderio.core.common.config.ConfigHandler
[00:06:22] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[00:06:22] [Netty Client IO #0/INFO]: Reset configs to client values for tterrag.wailaplugins.config.WPConfigHandler
[00:06:22] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[00:06:22] [server thread/INFO]: Saving chunks for level 'New World'/The Last Millenium
[00:06:22] [AromaBackup-Schedule/INFO]: Stopping Backup Schedule.
[00:06:23] [server thread/INFO]: Unloading dimension 0
[00:06:23] [server thread/INFO]: Unloading dimension -1
[00:06:23] [server thread/INFO]: Unloading dimension -112
[00:06:24] [Client thread/FATAL]: Unreported exception thrown!
java.lang.IndexOutOfBoundsException: Index: 45, Size: 45
    at java.util.ArrayList.rangeCheck(Unknown Source) ~[?:1.8.0_73]
    at java.util.ArrayList.get(Unknown Source) ~[?:1.8.0_73]
    at net.minecraft.inventory.Container.func_75139_a(SourceFile:104) ~[zs.class:?]
    at net.minecraft.inventory.Container.func_75131_a(SourceFile:390) ~[zs.class:?]
    at net.minecraft.client.network.NetHandlerPlayClient.func_147241_a(NetHandlerPlayClient.java:1062) ~[bjb.class:?]
    at net.minecraft.network.play.server.S30PacketWindowItems.func_148833_a(SourceFile:49) ~[go.class:?]
    at net.minecraft.network.play.server.S30PacketWindowItems.func_148833_a(SourceFile:11) ~[go.class:?]
    at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:212) ~[ej.class:?]
    at net.minecraft.client.multiplayer.PlayerControllerMP.func_78765_e(PlayerControllerMP.java:273) ~[bje.class:?]
    at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1602) ~[bao.class:?]
    at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:973) ~[bao.class:?]
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:898) [bao.class:?]
    at net.minecraft.client.main.Main.main(SourceFile:148) [Main.class:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_73]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_73]
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_73]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_73]
    at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:310) [NewLaunch.jar:?]
    at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:395) [NewLaunch.jar:?]
    at org.multimc.EntryPoint.listen(EntryPoint.java:170) [NewLaunch.jar:?]
    at org.multimc.EntryPoint.main(EntryPoint.java:54) [NewLaunch.jar:?]
[00:06:24] [Client thread/INFO]: [net.minecraft.client.Minecraft:func_71377_b:349]: ---- Minecraft Crash Report ----
// Shall we play a game?

Time: 3/5/16 12:06 AM
Description: Unexpected error

java.lang.IndexOutOfBoundsException: Index: 45, Size: 45
    at java.util.ArrayList.rangeCheck(Unknown Source)
    at java.util.ArrayList.get(Unknown Source)
    at net.minecraft.inventory.Container.func_75139_a(SourceFile:104)
    at net.minecraft.inventory.Container.func_75131_a(SourceFile:390)
    at net.minecraft.client.network.NetHandlerPlayClient.func_147241_a(NetHandlerPlayClient.java:1062)
    at net.minecraft.network.play.server.S30PacketWindowItems.func_148833_a(SourceFile:49)
    at net.minecraft.network.play.server.S30PacketWindowItems.func_148833_a(SourceFile:11)
    at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:212)
    at net.minecraft.client.multiplayer.PlayerControllerMP.func_78765_e(PlayerControllerMP.java:273)
    at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1602)
    at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:973)
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:898)
    at net.minecraft.client.main.Main.main(SourceFile:148)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:310)
    at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:395)
    at org.multimc.EntryPoint.listen(EntryPoint.java:170)
    at org.multimc.EntryPoint.main(EntryPoint.java:54)


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- Head --
Stacktrace:
    at java.util.ArrayList.rangeCheck(Unknown Source)
    at java.util.ArrayList.get(Unknown Source)
    at net.minecraft.inventory.Container.func_75139_a(SourceFile:104)
    at net.minecraft.inventory.Container.func_75131_a(SourceFile:390)
    at net.minecraft.client.network.NetHandlerPlayClient.func_147241_a(NetHandlerPlayClient.java:1062)
    at net.minecraft.network.play.server.S30PacketWindowItems.func_148833_a(SourceFile:49)
    at net.minecraft.network.play.server.S30PacketWindowItems.func_148833_a(SourceFile:11)
    at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:212)
    at net.minecraft.client.multiplayer.PlayerControllerMP.func_78765_e(PlayerControllerMP.java:273)

-- Affected level --
Details:
    Level name: MpServer
    All players: 1 total; [EntityClientPlayerMP['<PROFILE NAME>'/222, l='MpServer', x=-20.67, y=85.36, z=243.04]]
    Chunk stats: MultiplayerChunkCache: 509, 509
    Level seed: 0
    Level generator: ID 00 - default, ver 1. Features enabled: false
    Level generator options: 
    Level spawn location: World: (4,64,24), Chunk: (at 4,4,8 in 0,1; contains blocks 0,0,16 to 15,255,31), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
    Level time: 150210 game time, 150210 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: creative (ID 1). Hardcore: false. Cheats: false
    Forced entities: 88 total; [EntitySkeleton['Skeleton'/6409, l='MpServer', x=-68.50, y=25.00, z=316.50], EntityWitch['Witch'/6416, l='MpServer', x=-98.50, y=18.00, z=284.50], EntitySkeleton['Skeleton'/5657, l='MpServer', x=27.50, y=43.00, z=281.50], EntityBat['Bat'/4636, l='MpServer', x=55.34, y=24.96, z=237.53], EntityTrail['unknown'/549, l='MpServer', x=-20.67, y=85.36, z=243.04], EntityCreeper['Creeper'/6437, l='MpServer', x=9.50, y=41.00, z=186.50], EntityCreeper['Creeper'/6438, l='MpServer', x=7.50, y=41.00, z=187.50], EntityCreeper['Creeper'/6439, l='MpServer', x=-5.50, y=41.00, z=183.50], EntityZombie['Zombie'/6185, l='MpServer', x=-10.50, y=16.00, z=246.50], EntityCreeper['Creeper'/5162, l='MpServer', x=45.50, y=34.00, z=211.50], EntityCreeper['Creeper'/6186, l='MpServer', x=-9.50, y=16.00, z=243.50], EntityCreeper['Creeper'/5163, l='MpServer', x=46.50, y=34.00, z=210.50], EntityCreeper['Creeper'/5164, l='MpServer', x=41.28, y=33.00, z=208.50], EntityItem['item.tile.flowers2.minersdelight'/2860, l='MpServer', x=21.56, y=19.13, z=249.25], EntitySpider['Spider'/6200, l='MpServer', x=-21.00, y=34.00, z=176.06], EntityZombie['Zombie'/6201, l='MpServer', x=-21.66, y=34.00, z=174.34], EntityZombie['Zombie'/1344, l='MpServer', x=51.59, y=29.00, z=160.34], EntityZombie['Zombie'/1345, l='MpServer', x=52.09, y=30.00, z=162.47], EntityZombie['Zombie'/6479, l='MpServer', x=-3.50, y=13.00, z=190.50], EntityBat['Bat'/5973, l='MpServer', x=59.75, y=21.70, z=246.72], EntitySkeleton['Skeleton'/6230, l='MpServer', x=18.50, y=52.00, z=268.50], EntityBat['Bat'/5975, l='MpServer', x=55.31, y=22.00, z=241.41], EntityBat['Bat'/5976, l='MpServer', x=56.78, y=22.76, z=241.38], EntityZombie['Zombie'/3171, l='MpServer', x=17.50, y=16.00, z=231.50], EntityZombie['Zombie'/4963, l='MpServer', x=17.60, y=15.00, z=233.20], EntitySkeleton['Skeleton'/3172, l='MpServer', x=21.50, y=16.00, z=233.69], EntityEnderman['Enderman'/4964, l='MpServer', x=19.88, y=19.00, z=249.22], EntityBat['Bat'/5476, l='MpServer', x=20.66, y=17.82, z=235.56], EntitySkeleton['Skeleton'/3173, l='MpServer', x=21.50, y=16.00, z=232.66], EntityEnderman['Enderman'/4965, l='MpServer', x=17.59, y=19.00, z=246.53], EntityCreeper['Creeper'/3174, l='MpServer', x=20.50, y=16.00, z=235.50], EntityBat['Bat'/3436, l='MpServer', x=39.63, y=33.00, z=211.06], EntitySkeleton['Skeleton'/6510, l='MpServer', x=25.50, y=11.00, z=169.50], EntityItem['item.tile.cactus'/111, l='MpServer', x=8.75, y=65.60, z=220.19], EntitySkeleton['Skeleton'/6512, l='MpServer', x=27.50, y=11.00, z=172.50], EntitySkeleton['Skeleton'/6513, l='MpServer', x=26.50, y=11.00, z=170.50], EntityZombie['Zombie'/3445, l='MpServer', x=37.50, y=33.00, z=210.50], EntityZombie['Zombie'/3448, l='MpServer', x=38.50, y=33.00, z=212.50], EntitySquid['Squid'/5755, l='MpServer', x=-83.44, y=58.25, z=280.47], EntityZombie['Zombie'/4477, l='MpServer', x=-0.50, y=22.00, z=239.50], EntitySquid['Squid'/5757, l='MpServer', x=-80.50, y=60.34, z=282.50], EntitySquid['Squid'/5758, l='MpServer', x=-82.84, y=59.81, z=281.84], EntityZombie['Zombie'/6526, l='MpServer', x=50.50, y=13.00, z=238.50], EntitySquid['Squid'/5759, l='MpServer', x=-79.59, y=59.31, z=272.72], EntityCreeper['Creeper'/2432, l='MpServer', x=50.09, y=47.00, z=161.28], EntitySquid['Squid'/5760, l='MpServer', x=-81.50, y=57.00, z=279.81], EntitySquid['Squid'/5761, l='MpServer', x=-78.50, y=60.00, z=273.94], EntityCreeper['Creeper'/2434, l='MpServer', x=49.66, y=47.00, z=159.38], EntitySquid['Squid'/5763, l='MpServer', x=-78.50, y=60.34, z=275.16], EntityZombie['Zombie'/4996, l='MpServer', x=18.50, y=24.00, z=255.50], EntitySkeleton['Skeleton'/3461, l='MpServer', x=-27.50, y=34.00, z=181.50], EntitySkeleton['Skeleton'/6024, l='MpServer', x=7.50, y=53.00, z=181.50], EntityCreeper['Creeper'/6025, l='MpServer', x=8.50, y=53.00, z=181.50], EntitySpider['Spider'/3728, l='MpServer', x=1.50, y=42.00, z=187.50], EntityXPOrb['Experience Orb'/151, l='MpServer', x=51.88, y=69.25, z=106.84], EntitySkeleton['Skeleton'/5530, l='MpServer', x=38.50, y=44.00, z=249.50], EntityItem['item.tile.cactus'/1434, l='MpServer', x=20.72, y=65.13, z=265.47], EntityXPOrb['Experience Orb'/166, l='MpServer', x=76.56, y=64.25, z=140.97], EntityBat['Bat'/6566, l='MpServer', x=-65.50, y=15.00, z=282.53], EntityBat['Bat'/5291, l='MpServer', x=-23.41, y=37.00, z=212.06], EntityBat['Bat'/3757, l='MpServer', x=19.47, y=15.55, z=219.41], EntityZombie['Zombie'/4781, l='MpServer', x=-55.50, y=15.00, z=256.50], EntityEnderman['Enderman'/2478, l='MpServer', x=13.50, y=23.00, z=232.50], EntityEnderman['Enderman'/2479, l='MpServer', x=15.50, y=23.00, z=233.50], EntityEnderman['Enderman'/2480, l='MpServer', x=17.38, y=23.00, z=234.74], EntitySkeleton['Skeleton'/2481, l='MpServer', x=15.50, y=23.00, z=234.50], EntitySkeleton['Skeleton'/2482, l='MpServer', x=17.50, y=23.00, z=235.69], EntityZombie['Zombie'/4789, l='MpServer', x=-32.28, y=25.00, z=227.65], EntityCreeper['Creeper'/2231, l='MpServer', x=-27.50, y=38.00, z=220.50], EntityCreeper['Creeper'/2232, l='MpServer', x=-30.25, y=38.00, z=221.09], EntityCreeper['Creeper'/2234, l='MpServer', x=-31.16, y=38.00, z=221.69], EntityBat['Bat'/1723, l='MpServer', x=21.31, y=11.00, z=171.75], EntityCreeper['Creeper'/2235, l='MpServer', x=-27.50, y=36.00, z=216.00], EntityZombie['Zombie'/2242, l='MpServer', x=57.50, y=31.00, z=204.50], EntitySkeleton['Skeleton'/2243, l='MpServer', x=57.41, y=31.00, z=207.06], EntityCreeper['Creeper'/2245, l='MpServer', x=56.50, y=31.00, z=207.50], EntityZombie['Zombie'/2002, l='MpServer', x=-36.03, y=26.00, z=227.50], EntitySkeleton['Skeleton'/2004, l='MpServer', x=-39.50, y=25.00, z=221.84], EntitySkeleton['Skeleton'/3806, l='MpServer', x=22.50, y=45.00, z=245.50], EntityClientPlayerMP['<PROFILE NAME>'/222, l='MpServer', x=-20.67, y=85.36, z=243.04], EntityZombie['Zombie'/6371, l='MpServer', x=-64.50, y=17.00, z=297.50], EntityItem['item.tile.flowers2.minersdelight'/228, l='MpServer', x=18.72, y=24.13, z=234.47], EntityBat['Bat'/2797, l='MpServer', x=-10.66, y=21.62, z=212.56], EntityBat['Bat'/2798, l='MpServer', x=-4.41, y=21.27, z=216.34], EntityCreeper['Creeper'/2290, l='MpServer', x=-19.03, y=34.00, z=189.47], EntityBat['Bat'/3320, l='MpServer', x=-70.44, y=24.00, z=226.31], EntityBat['Bat'/3321, l='MpServer', x=-74.00, y=24.00, z=226.56], EntityBat['Bat'/3322, l='MpServer', x=-73.41, y=24.65, z=243.41]]
    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:373)
    at net.minecraft.client.Minecraft.func_71396_d(Minecraft.java:2444)
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:927)
    at net.minecraft.client.main.Main.main(SourceFile:148)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:310)
    at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:395)
    at org.multimc.EntryPoint.listen(EntryPoint.java:170)
    at org.multimc.EntryPoint.main(EntryPoint.java:54)

-- System Details --
Details:
    Minecraft Version: 1.7.10
    Operating System: Windows 10 (amd64) version 10.0
    Java Version: 1.8.0_73, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 1600872088 bytes (1526 MB) / 3174039552 bytes (3027 MB) up to 7546077184 bytes (7196 MB)
    JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xms512m -Xmx8096m
    AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    IntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 95
    FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1558 87 mods loaded, 75 mods active
    States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
    UCHIJAAAA   mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) 
    UCHIJAAAA   FML{7.10.99.99} [Forge Mod Loader] (forge-1.7.10-10.13.4.1558-1.7.10-universal.jar) 
    UCHIJAAAA   Forge{10.13.4.1558} [Minecraft Forge] (forge-1.7.10-10.13.4.1558-1.7.10-universal.jar) 
    UCHIJAAAA   appliedenergistics2-core{rv2-stable-10} [AppliedEnergistics2 Core] (minecraft.jar) 
    UCHIJAAAA   Aroma1997Core{1.0.2.16} [Aroma1997Core] (Aroma1997Core-1.7.10-1.0.2.16.jar) 
    UCHIJAAAA   CodeChickenCore{1.0.7.47} [CodeChicken Core] (minecraft.jar) 
    UCHIJAAAA   NotEnoughItems{1.0.5.118} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.5.118-universal.jar) 
    UCHIJAAAA   OpenModsCore{0.9.1} [OpenModsCore] (minecraft.jar) 
    UCHIJAAAA   <CoFH ASM>{000} [CoFH ASM] (minecraft.jar) 
    UCHIJAAAA   AppleCore{1.3.0} [AppleCore] (AppleCore-mc1.7.10-1.3.0.jar) 
    UCHIJAAAA   appliedenergistics2{rv2-stable-10} [Applied Energistics 2] (appliedenergistics2-rv2-stable-10.jar) 
    UCHIJAAAA   Aroma1997CoreHelper{1.0.2.16} [Aroma1997Core|Helper] (Aroma1997Core-1.7.10-1.0.2.16.jar) 
    UCHIJAAAA   AromaBackup{0.1.0.0} [AromaBackup] (AromaBackup-1.7.10-0.1.0.0.jar) 
    UCHIJAAAA   AromaBackupRecovery{1.0} [AromaBackup Recovery] (AromaBackup-1.7.10-0.1.0.0.jar) 
    UCHIJAAAA   Mantle{1.7.10-0.3.2.jenkins191} [Mantle] (Mantle-1.7.10-0.3.2b.jar) 
    UCHIJAAAA   Natura{2.2.0} [Natura] (natura-1.7.10-2.2.0.1.jar) 
    UCHIJAAAA   BiomesOPlenty{2.1.0} [biomes O' Plenty] (BiomesOPlenty-1.7.10-2.1.0.1548-universal.jar) 
    UCHIJAAAA   ChickenChunks{1.3.4.19} [ChickenChunks] (ChickenChunks-1.7.10-1.3.4.19-universal.jar) 
    UCHIJAAAA   CoFHCore{1.7.10R3.1.2} [CoFH Core] (CoFHCore-[1.7.10]3.1.2-325.jar) 
    UCHIJAAAA   ComputerCraft{1.75} [ComputerCraft] (ComputerCraft1.75.jar) 
    UCHIJAAAA   craftingtweaks{1.0.73} [Crafting Tweaks] (craftingtweaks-mc1.7.10-1.0.73.jar) 
    UCHIJAAAA   DPU{1.2.40} [Don't Pick Up] (DPU-1.7.10-1.2.40.jar) 
    UCHIJAAAA   endercore{1.7.10-0.2.0.31_beta} [EnderCore] (EnderCore-1.7.10-0.2.0.31_beta.jar) 
    UCHIJAAAA   MineFactoryReloaded{1.7.10R2.8.1} [MineFactory Reloaded] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar) 
    UCHIJAAAA   EnderIO{1.7.10-2.2.8.381} [Ender IO] (EnderIO-1.7.10-2.2.8.381.jar) 
    UCHIJAAAA   EnderStorage{1.4.7.37} [EnderStorage] (EnderStorage-1.7.10-1.4.7.37-universal.jar) 
    UCHIJAAAA   Waila{1.5.10} [Waila] (Waila-1.5.10_1.7.10.jar) 
    UCHIJAAAA   extracells{2.3.9} [Extra Cells 2] (ExtraCells-1.7.10-2.3.9b188.jar) 
    UCHIJAAAA   ExtraUtilities{1.2.12} [Extra Utilities] (extrautilities-1.2.12.jar) 
    UCHIJAAAA   ezstorage{1.1.0} [EZ Storage] (ezstorage-1.1.0.jar) 
    UCHIJAAAA   FastCraft{1.21} [FastCraft] (fastcraft-1.21.jar) 
    UCHIJAAAA   fastleafdecay{1.4} [Fast Leaf Decay] (FastLeafDecay-1.7.10-1.4.jar) 
    UCHIJAAAA   iChunUtil{4.2.2} [iChunUtil] (iChunUtil-4.2.2.jar) 
    UCHIJAAAA   InventoryPets{1.3.91} [inventory Pets] (inventorypets-1.7.10-1.3.91-universal.jar) 
    UCHIJAAAA   inventorytweaks{1.59-dev-152-cf6e263} [inventory Tweaks] (InventoryTweaks-1.59-dev-152.jar) 
    UCHIJAAAA   IronChest{6.0.60.741} [iron Chest] (ironchest-1.7.10-6.0.60.741-universal.jar) 
    UCHIJAAAA   JABBA{1.2.1} [JABBA] (Jabba-1.2.1a_1.7.10.jar) 
    UCHIJAAAA   journeymap{5.1.3} [JourneyMap] (journeymap-1.7.10-5.1.3-unlimited.jar) 
    UCHIJAAAA   KeepingInventory{1.7} [Keeping Inventory] (KeepingInventory-1.7.10-1.7.jar) 
    UCHIJAAAA   LunatriusCore{1.1.2.21} [LunatriusCore] (LunatriusCore-1.7.10-1.1.2.21-universal.jar) 
    UCHIJAAAA   magicalcrops{1.7.2 - 0.1 ALPHA} [Magical Crops] (magicalcrops-1.7.10_0.1.jar) 
    UCHIJAAAA   MineFactoryReloaded|CompatAppliedEnergistics{1.7.10R2.8.1} [MFR Compat: Applied Energistics] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar) 
    UCHIJAAAA   MineFactoryReloaded|CompatForgeMicroblock{1.7.10R2.8.1} [MFR Compat: ForgeMicroblock] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar) 
    UCHIJAAAA   TConstruct{1.7.10-1.8.8.build988} [Tinkers' Construct] (TConstruct-1.7.10-1.8.8.jar) 
    UCHIJAAAA   MineFactoryReloaded|CompatTConstruct{1.7.10R2.8.1} [MFR Compat: Tinkers' Construct] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar) 
    UCHIJAAAA   TwilightForest{2.3.7} [The Twilight Forest] (twilightforest-1.7.10-2.3.7.jar) 
    UCHIJAAAA   MineFactoryReloaded|CompatTwilightForest{1.7.10R2.8.1} [MFR Compat: TwilightForest] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar) 
    UCHIJAAAA   MineFactoryReloaded|CompatVanilla{1.7.10R2.8.1} [MFR Compat: Vanilla] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar) 
    UCHIJAAAA   Morph{0.9.2} [Morph] (Morph-Beta-0.9.2.jar) 
    UCHIJAAAA   Morpheus{1.7.10-1.6.20} [Morpheus] (Morpheus-1.7.10-1.6.20.jar) 
    UCHIJAAAA   NEIAddons{1.12.14.40} [NEI Addons] (neiaddons-1.12.14.40-mc1.7.10.jar) 
    UCHIJAAAA   NEIAddons|Developer{1.12.14.40} [NEI Addons: Developer Tools] (neiaddons-1.12.14.40-mc1.7.10.jar) 
    UCHIJAAAA   NEIAddons|AppEng{1.12.14.40} [NEI Addons: Applied Energistics 2] (neiaddons-1.12.14.40-mc1.7.10.jar) 
    UCHIJAAAA   NEIAddons|Botany{1.12.14.40} [NEI Addons: Botany] (neiaddons-1.12.14.40-mc1.7.10.jar) 
    UCHIJAAAA   NEIAddons|Forestry{1.12.14.40} [NEI Addons: Forestry] (neiaddons-1.12.14.40-mc1.7.10.jar) 
    UCHIJAAAA   NEIAddons|CraftingTables{1.12.14.40} [NEI Addons: Crafting Tables] (neiaddons-1.12.14.40-mc1.7.10.jar) 
    UCHIJAAAA   NEIAddons|ExNihilo{1.12.14.40} [NEI Addons: Ex Nihilo] (neiaddons-1.12.14.40-mc1.7.10.jar) 
    UCHIJAAAA   neiintegration{1.1.1} [NEI Integration] (NEIIntegration-MC1.7.10-1.1.1.jar) 
    UCHIJAAAA   ObsidiPlates{3.0.0.18} [ObsidiPlates] (ObsidiPlates-1.7.10-universal-3.0.0.18.jar) 
    UCHIJAAAA   OpenMods{0.9.1} [OpenMods] (OpenModsLib-1.7.10-0.9.1.jar) 
    UCHIJAAAA   OpenBlocks{1.5.1} [OpenBlocks] (OpenBlocks-1.7.10-1.5.1.jar) 
    UCHIJAAAA   harvestcraft{1.7.10j} [Pam's HarvestCraft] (Pam's HarvestCraft 1.7.10Lb.jar) 
    UCHIJAAAA   RefinedRelocation{1.1.25} [Refined Relocation] (RefinedRelocation-mc1.7.10-1.1.25.jar) 
    UCHIJAAAA   simplefluidtanks{1.7.10-1.2.0.5} [simple Fluid Tanks] (simplefluidtanks-1.7.10-1.2.0.5.jar) 
    UCHIJAAAA   Stackie{1.6.0.36} [stackie] (Stackie-1.7.10-1.6.0.36-universal.jar) 
    UCHIJAAAA   StorageDrawers{1.7.10-1.7.5} [storage Drawers] (StorageDrawers-1.7.10-1.7.5.jar) 
    UCHIJAAAA   supercraftingframe{1.7.10.3} [super Crafting Frame] (supercraftingframe-1.7.10.3.jar) 
    UCHIJAAAA   TiCTooltips{1.2.5} [TiC Tooltips] (TiCTooltips-mc1.7.10-1.2.5.jar) 
    UCHIJAAAA   VeinMiner{0.30.2_build.unknown} [Vein Miner] (VeinMiner-1.7.10_0.30.2.unknown.jar) 
    UCHIJAAAA   VeinMinerModSupport{0.30.2_build.unknown} [Mod Support] (VeinMiner-1.7.10_0.30.2.unknown.jar) 
    UCHIJAAAA   WailaHarvestability{1.1.6} [Waila Harvestability] (WailaHarvestability-mc1.7.10-1.1.6.jar) 
    UCHIJAAAA   wailaplugins{MC1.7.10-0.2.0-23} [WAILA Plugins] (WAILAPlugins-MC1.7.10-0.2.0-23.jar) 
    UCHIJAAAA   warpbook{2.0.null} [Warp Book] (warpbook-1.7.10_2.0.37.jar) 
    UCHIJAAAA   wawla{1.3.3} [What Are We Looking At] (Wawla-1.3.3-1.7.10.jar) 
    UCHIJAAAA   IguanaTweaksTConstruct{1.7.10-2.1.5.140} [iguana Tinker Tweaks] (IguanaTinkerTweaks-1.7.10-2.1.5.jar) 
    UD  MineFactoryReloaded|CompatAtum{1.7.10R2.8.1} [MFR Compat: Atum] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar) 
    UD  MineFactoryReloaded|CompatBackTools{1.7.10R2.8.1} [MFR Compat: BackTools] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar) 
    UD  MineFactoryReloaded|CompatBuildCraft{1.7.10R2.8.1} [MFR Compat: BuildCraft] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar) 
    UD  MineFactoryReloaded|CompatChococraft{1.7.10R2.8.1} [MFR Compat: Chococraft] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar) 
    UD  MineFactoryReloaded|CompatExtraBiomes{1.7.10R2.8.1} [MFR Compat: ExtraBiomes] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar) 
    UD  MineFactoryReloaded|CompatForestry{1.7.10R2.8.1} [MFR Compat: Forestry] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar) 
    UD  MineFactoryReloaded|CompatIC2{1.7.10R2.8.1} [MFR Compat: IC2] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar) 
    UD  MineFactoryReloaded|CompatProjRed{1.7.10R2.8.1} [MFR Compat ProjectRed] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar) 
    UD  MineFactoryReloaded|CompatRailcraft{1.7.10R2.8.1} [MFR Compat: Railcraft] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar) 
    UD  MineFactoryReloaded|CompatSufficientBiomes{1.7.10R2.8.1} [MFR Compat: Sufficient Biomes] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar) 
    UD  MineFactoryReloaded|CompatThaumcraft{1.7.10R2.8.1} [MFR Compat: Thaumcraft] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar) 
    UD  MineFactoryReloaded|CompatThermalExpansion{1.7.10R2.8.1} [MFR Compat: Thermal Expansion] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar) 
    GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 362.00' Renderer: 'GeForce GTX 960/PCIe/SSE2'
    OpenModsLib class transformers: [stencil_patches:FINISHED],[movement_callback:FINISHED],[map_gen_fix:FINISHED],[gl_capabilities_hook:FINISHED],[player_render_hook:FINISHED]
    Class transformer null safety: found misbehaving transformers: me.guichaguri.betterfps.transformers.MathTransformer(me.guichaguri.betterfps.transformers.MathTransformer@6ac7af7e) returned non-null result: 0,me.guichaguri.betterfps.transformers.EventTransformer(me.guichaguri.betterfps.transformers.EventTransformer@2b5bcce7) returned non-null result: 0,squeek.applecore.asm.TransformerModuleHandler(squeek.applecore.asm.TransformerModuleHandler@78d5fa26) crashed with java.lang.NullPointerException(null)
    AE2 Version: stable rv2-stable-10 for Forge 10.13.2.1291
    Mantle Environment: Environment healthy.
    CoFHCore: -[1.7.10]3.1.2-325
    MineFactoryReloaded: -[1.7.10]2.8.1-174
    TConstruct Environment: Environment healthy.
    Stencil buffer state: Function set: GL30, pool: forge, bits: 8
    AE2 Integration: IC2:OFF, RotaryCraft:OFF, RC:OFF, BC:OFF, RF:ON, RFItem:ON, MFR:ON, DSU:ON, FZ:OFF, FMP:OFF, RB:OFF, CLApi:OFF, Waila:ON, InvTweaks:ON, NEI:ON, CraftGuide:OFF, Mekanism:OFF, ImmibisMicroblocks:OFF, BetterStorage:OFF
    Launched Version: MultiMC5
    LWJGL: 2.9.1
    OpenGL: GeForce GTX 960/PCIe/SSE2 GL version 4.5.0 NVIDIA 362.00, NVIDIA Corporation
    GL Caps: Using GL 1.3 multitexturing.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Anisotropic filtering is supported and maximum anisotropy is 16.
Shaders are available because OpenGL 2.1 is supported.

    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)
    Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    Anisotropic Filtering: Off (1)
[00:06:24] [Client thread/INFO]: [net.minecraft.client.Minecraft:func_71377_b:359]: #@!@# Game crashed! Crash report saved to: #@!@# D:\MultiMC\instances\test\minecraft\crash-reports\crash-2016-03-05_00.06.24-client.txt
[00:06:24] [Client thread/INFO]: Waiting for the server to terminate/save.
[00:06:24] [server thread/INFO]: Applying holder lookups
[00:06:24] [server thread/INFO]: Holder lookups applied
[00:06:24] [pool-5-thread-1/INFO]: ServerChannelRegister: Dimensional Transceiver data saved to D:\MultiMC\instances\test\minecraft\saves\New World\enderio\dimensionalTransceiver.json
[00:06:24] [Client thread/INFO]: Server terminated.
Exception in thread "AE2 VersionChecker" AL lib: (EE) alc_cleanup: 1 device not closed
Process exited with code -1.

Posted

Is it possible to activate the block remotely as if I was next to it? As in send the coordinates of where I first attached to the block, and use those coordinates when reactivating instead of my current position.

Posted

I'm still not fully understanding. This is my first experience with modding. Right now, when I activate a button remotely, I can do so at any distance as long as the button is in a loaded chunk (chunk loader). However, any GUIs are broken over large distances. So are you saying it is impossible to open a GUI from a remote location?

 

Thanks for your help thus far.

Posted

wouldn't I need to code the container itself to use PlayerOpenContainerEvent? I'm trying to interact with containers from other mods.

 

An odd work around I tried was having the player teleport to the container, then open it. However, I'm having trouble teleporting the player back after closing the GUI.

Posted

You are the man!

 

That did it!

 

However, the Storage Core in EZStorage mod still crashes over long distances. The crash log in the OP shows it. Do you happen to know what's causing and how I could fix it? His mod is open source so I could suggest a fix.

 

Thanks so much for the help!

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

    • I have no idea - maybe use a pre-configured modpack as working base and add some new mods one by one
    • Is there a crash-report?   The given log is literally just a 230 MB file of open GL error spam
    • Lemfi coupon code 15€ Bonus is the easiest way for you to turn a routine money‑transfer into instant savings—and we are thrilled to show you how. We tested it ourselves and unlocked the extra cash in seconds. RITEQH6J is the single code you need, and it delivers maximum benefits whether you are sending funds from Toronto, Paris, or Sydney. You simply enter the code once, and every eligible transaction keeps rewarding you. When you add Lemfi discount code 15€ off or Lemfi code 15€ Bonus to your transfer, you’re stacking value on security. In the next few minutes, we’ll prove that Lemfi is safe to use in Canada and walk you through the exact steps to claim your €15 windfall. What Is The Lemfi Promo Code for 15€ Bonus? Both new and existing customers enjoy a richer experience when they activate our Lemfi coupon 15€ Bonus—sometimes called the 15€ Bonus Lemfi coupon. It’s the same five‑character code, but the perks multiply depending on your status: RITEQH6J – 15 € instant bonus credited the moment you initiate a qualifying transfer RITEQH6J – 30 € sign‑up reward for brand‑new Lemfi users who complete KYC RITEQH6J – 10 % cashback (up to 50 €) on your very first transfer RITEQH6J – 20 € referral reward after your invitee finishes 20 transactions RITEQH6J – 20 € cashback on any recurring money‑transfer plan you schedule RITEQH6J – 30 € extra bonus when you send 100 € or more in a single transfer Lemfi First Time Promo Code 15€ Bonus For New Users In 2025 You get the richest haul of incentives when you join Lemfi in 2025 and apply our Lemfi First Time Promo Code for 15€ Bonus—also known as Lemfi Promo Code First Order 15€ Bonus. Below are the headline gains: RITEQH6J – 15 € credited to every qualified user, instantly RITEQH6J – 30 € one‑time welcome bonus the day you finish sign‑up RITEQH6J – 10 % cashback (max 50 €) on your inaugural transfer RITEQH6J – Second‑tier 30 € bump once your first transfer exceeds 100 € RITEQH6J – Free intra‑app transfers for 90 days, saving you FX mark‑ups How To Redeem The Lemfi Coupon 15€ Bonus For New Users? Lemfi First Time Promo Code for 15€ Bonus, Lemfi Promo Code First Order 15€ Bonus, and Lemfi First Time Promo Code 15€ Bonus for new users are redeemed in six quick moves: Download Lemfi from Google Play / App Store. Open an account with your legal name and Canadian address. Complete photo ID verification and selfie check. On the “Promo” screen, paste RITEQH6J and tap “Apply.” Initiate your first money transfer of 10 € or more. Watch the 15 € bonus hit your Lemfi balance before the funds even settle. Lemfi Promo Code 15€ Bonus For Existing Customers Already have a wallet? Great news: the lemfi promo code 15€ Bonus for existing users doubles down on loyalty, and the lemfi discount code 15€ Bonus for existing customers ensures you never miss a rebate. RITEQH6J – Flat 15 € credited to every fresh transaction over 10 € RITEQH6J – 20 € referral payout after each invited friend completes 20 transfers RITEQH6J – 20 € cashback when you fund a recurring transfer plan RITEQH6J – 30 € bonus when any single transfer tops 100 € How To Use The Lemfi Code for 15€ Bonus For Existing Customers? Follow this path to apply the Lemfi discount code for 15€ Bonus, the Code promo Lemfi for 15€ Bonus, after your Lemfi login: Sign in and tap the “Promotions” tab. Enter RITEQH6J in the promo box and confirm. Start a new transfer or schedule a future one. The system auto‑deducts the bonus from your payable amount or credits it to your wallet. Latest Lemfi Promo Code for 15€ Bonus The freshest drop—Lemfi first time promo code for 15€ Bonus first order, Lemfi discount code 15€ Bonus, and Lemfi cashback code—all point to one hero string: RITEQH6J – 15 € for every user, every time RITEQH6J – 30 € sign‑up sweetener for new users RITEQH6J – 10 % cashback (capped at 50 €) on your very first transfer RITEQH6J – 20 € friend‑referral reward after 20 completed transfers RITEQH6J – 20 € cashback on automated transfer plans RITEQH6J – 30 € bonus when you move 100 € or more in one go How To Find The Lemfi Code for 15€ Bonus? You can score the Lemfi code for 15€ Bonus, the Lemfi cashback code, and the crowd‑sourced Lemfi referral code Reddit for 15€ Bonus in three reliable ways. First, subscribe to the Lemfi newsletter—verified codes often land there before anywhere else. Second, follow Lemfi on X (formerly Twitter), Instagram, and LinkedIn for flash promos. Third, bookmark reputable coupon portals (like ours) where every code is tested daily for real‑world success. Is Lemfi 15€ Bonus Code Legit? Is Lemfi legit? Absolutely. Lemfi (legal name Lemonade Technology Ltd.) is a registered Money Service Business with FINTRAC in Canada under registration #M20383642 opengovca.com. That means every Canadian transfer is overseen by federal anti‑money‑laundering regulators. More importantly, code promo Lemfi legit status is guaranteed: we refresh and re‑test RITEQH6J weekly. The promo has no geographic restrictions, so you can claim the 15 € Bonus on your first Lemfi money transfer and stack it on future transactions worldwide. How Does Lemfi Code for 15€ Bonus Work? 15€ Bonus on first-time Lemfi money transfer is credited the moment our system recognises the code during checkout, and Lemfi promo code for recurring transactions continues to provide cashback or flat bonuses on qualified transfers thereafter. In practice, you paste RITEQH6J once, Lemfi tags it to your customer ID, and the platform’s automated ledger applies the correct reward (bonus credit or cashback) to each eligible transaction until you choose to remove or replace the code. How To Earn Lemfi 15€ Bonus Coupons As A New Customer? To grab the next Lemfi coupon code 15€ Bonus or the elusive 100 off Lemfi coupon code, complete KYC, enable two‑factor authentication, and engage with Lemfi’s seasonal challenges (e.g., “Send three transfers in one week”). Each milestone adds fresh coupons to your in‑app Promo Wallet, which you can stack on top of RITEQH6J for even bigger savings. What Are The Advantages Of Using The Lemfi Discount Code for 15€ Bonus? Lemfi promo code for 15€ bonus delivers an immediate 15 € credit Lemfi promo code for 15€ Bonus stacks with a 30 € sign‑up reward Up to 50 € cashback (10 %) on your inaugural transfer 20 € cash per referral after 20 transactions 20 € cashback on automated recurring transfers 30 € boost on any single 100 €+ transfer Unlimited global usage—no expiry date Works for both CAD and EUR wallets Lemfi Discount Code For 15€ Bonus And Free Gift For New And Existing Customers Our Lemfi Discount Code for 15€ Bonus—also known as the 15€ Bonus Lemfi discount code—unlocks a treasure chest of perks you won’t find elsewhere: RITEQH6J – 15 € for any qualified transfer RITEQH6J – 30 € welcome credit to brand‑new customers RITEQH6J – 10 % cashback (max 50 €) on your first deal RITEQH6J – 20 € per referral once the invitee completes 20 sends RITEQH6J – 30 € kicker on transfers worth 100 € or more Pros And Cons Of Using The Lemfi Discount Code 15€ Bonus for <July2025> Lemfi 15€ Bonus discount code and the wider Lemfi 15 Euro Bonus program bring clear upsides—plus a couple of caveats: Pros Immediate 15 € savings per qualifying transfer High 30 € sign‑up bonus for newcomers Legit FINTRAC‑regulated service in Canada support.lemfi.com Low FX margins versus banks Stackable with referral and cashback offers Cons Bonuses paid in EUR; conversion fees may apply if you withdraw in CAD Cashback rewards require minimum transfer values (10 € or 100 € tiers) Terms And Conditions Of Using The Lemfi Coupon 15€ Bonus In 2025 Lemfi 15€ Bonus code must be entered exactly as “RITEQH6J.” Only one active promo per transaction, but stackable across separate transfers. Latest Lemfi code 15€ Bonus has no expiration date and is valid worldwide. Available to KYC‑verified users aged 18 +. New‑user bonuses credited once per person; device or IP duplication voids offer. Existing‑user cashback requires recurring transfer setup. Lemfi reserves the right to amend terms with 30‑days’ notice. Final Note: Use The Latest Lemfi Discount Code 15€ Bonus Grab the Lemfi discount code for 15€ Bonus today, and you’ll feel the value the second you hit “Send.” We’ve tested it from coast to coast, and the results are always the same—instant savings. Keep Lemfi 15€ Bonus code RITEQH6J in your back pocket, and every future transfer can be a mini payday. Happy saving! FAQs Of Lemfi 15€ Bonus Code Q1. Is Lemfi safe to use in Canada? A1. Yes. Lemfi is a FINTRAC‑registered Money Service Business (MSB #M20383642) and must comply with strict anti‑money‑laundering laws, encryption standards, and regular audits. Q2. Can I combine RITEQH6J with other Lemfi promo codes? A2. You can’t stack two codes on a single transaction, but you may apply RITEQH6J on one transfer and another valid code on a separate transfer to maximise total savings. Q3. Does RITEQH6J expire? A3. No expiration date is set. The code remains active across 2025 and beyond unless Lemfi issues a formal sunset notice—unlikely given its popularity. Q4. How fast is the 15 € bonus credited? A4. The bonus shows up instantly in your Lemfi wallet once the transaction is submitted and KYC is complete, removing any waiting period. Q5. Is the 15 € bonus paid in CAD or EUR? A5. Lemfi credits the bonus in EUR. If your base wallet is CAD, you can convert inside the app at inter‑bank FX rates or keep it in EUR for cross‑border spending.
    • I am trying to make a custom item that converts to another custom item when eaten. The food properties includes "usingConvertsTo(ModItems.ITEM_NAME.get())", however since the item is not yet registered during the registration process, the get() method returns null. Is there any way to work around this?
    • Having problems with forge installation on headless arch linux, regardless of forge-server from yay or manual wget, Cant find class error and results in net/minecraft/world/waypoints/Waypoint$Icon.class   net/minecraft/world/waypoints/Waypoint.class   net/minecraft/world/waypoints/WaypointManager.class   net/minecraft/world/waypoints/WaypointStyleAsset.class   net/minecraft/world/waypoints/WaypointStyleAssets.class   net/minecraft/world/waypoints/WaypointTransmitter$BlockConnection.class   net/minecraft/world/waypoints/WaypointTransmitter$ChunkConnection.class   net/minecraft/world/waypoints/WaypointTransmitter$Connection.class   net/minecraft/world/waypoints/WaypointTransmitter$EntityAzimuthConnection.class   net/minecraft/world/waypoints/WaypointTransmitter$EntityBlockConnection.class   net/minecraft/world/waypoints/WaypointTransmitter$EntityChunkConnection.class   net/minecraft/world/waypoints/WaypointTransmitter.class   version.json   Processor failed, invalid outputs:     /srv/minecraft/./libraries/net/minecraft/server/1.21.6/server-1.21.6-official.jar       Expected: b1448d2c947e923ccd63224defc3b51e5a72a98d       Actual:   5f30bf411bd0d1208baca6b7be1584442f4f6579 There was an error during installation
  • Topics

×
×
  • Create New...

Important Information

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