Jump to content

Packet Handling with many mods problem


Kloonder

Recommended Posts

I have a few problems with my mod while testing it with other mods

 

when I'm trying to do something in my container, it gives me a little error that causes disconnecting

 

It is in my container, while taking somethibng out of my Furnance slot

 

java.lang.IndexOutOfBoundsException: Index: 47, Size: 45

at java.util.ArrayList.rangeCheck(Unknown Source) ~[?:1.8.0_51]

at java.util.ArrayList.get(Unknown Source) ~[?:1.8.0_51]

at net.minecraft.inventory.Container.func_75144_a(SourceFile:206) ~[zs.class:?]

at net.minecraft.network.NetHandlerPlayServer.func_147351_a(NetHandlerPlayServer.java:883) ~[nh.class:?]

at net.minecraft.network.play.client.C0EPacketClickWindow.func_148833_a(SourceFile:32) ~[ix.class:?]

at net.minecraft.network.play.client.C0EPacketClickWindow.func_148833_a(SourceFile:10) ~[ix.class:?]

at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:212) ~[ej.class:?]

at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:165) [nc.class:?]

at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:659) [MinecraftServer.class:?]

at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:334) [lt.class:?]

at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:547) [MinecraftServer.class:?]

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:427) [MinecraftServer.class:?]

at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:685) [li.class:?]

[11:17:06] [server thread/INFO] [net.minecraft.network.NetHandlerPlayServer]: Intektor lost connection: TextComponent{text='Internal server error', siblings=[], style=Style{hasParent=false, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null}}

 

package de.intektor.modarmor.container;

import de.intektor.modarmor.advanced.AdvancedContainer;
import de.intektor.modarmor.advanced.AdvancedResultSlot;
import de.intektor.modarmor.advanced.AdvancedSlot;
import de.intektor.modarmor.tileentity.TileEntityArmorModifier;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.init.Items;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.FurnaceRecipes;
import net.minecraft.tileentity.TileEntityFurnace;

public class ContainerArmorModifier extends AdvancedContainer{

ItemStack spaceHolderStack = new ItemStack(Items.bed);

public ContainerArmorModifier(InventoryPlayer invPlayer, TileEntityArmorModifier te) {
	tileEntity = te;
	te.container = this;
	theUser = invPlayer.player;
	tileEntity.specialEvent(2, theUser);
	this.addSlotToContainer(new AdvancedSlot(te, 0, 48, 35));
	this.addSlotToContainer(new AdvancedSlot(te, 1, 79, 14));
	this.addSlotToContainer(new AdvancedResultSlot(invPlayer.player, te, 2, 108, 36));
	int i;
	int j;
	for (i = 0; i < 3; ++i)
	{
		for (j = 0; j < 3; ++j)
		{
			this.addSlotToContainer(new AdvancedSlot(te, j + i * 3 + 3, 30 + j * 18, 17 + i * 18));
		}
	}

	this.addSlotToContainer(new AdvancedResultSlot(invPlayer.player, te, 12, 124, 35));

	for (i = 0; i < 3; ++i)
	{
		for (j = 0; j < 9; ++j)
		{
			this.addSlotToContainer(new Slot(invPlayer, j + i * 9 + 9, 8 + j * 18, 84 + i * 18));
		}
	}

	for (i = 0; i < 9; ++i)
	{
		this.addSlotToContainer(new Slot(invPlayer, i, 8 + i * 18, 142));
	}
}

@Override
public ItemStack transferStackInSlot(EntityPlayer p_82846_1_, int p_82846_2_)
{
	ItemStack itemstack = null;
	Slot slot = (Slot)this.inventorySlots.get(p_82846_2_);

	if (slot != null && slot.getHasStack())
	{
		ItemStack itemstack1 = slot.getStack();
		itemstack = itemstack1.copy();

		if (p_82846_2_ == 2)
		{
			if (!this.mergeItemStack(itemstack1, 3, 39, true))
			{
				return null;
			}

			slot.onSlotChange(itemstack1, itemstack);
		}
		else if (p_82846_2_ != 1 && p_82846_2_ != 0)
		{
			if (FurnaceRecipes.smelting().getSmeltingResult(itemstack1) != null)
			{
				if (!this.mergeItemStack(itemstack1, 0, 1, false))
				{
					return null;
				}
			}
			else if (TileEntityFurnace.isItemFuel(itemstack1))
			{
				if (!this.mergeItemStack(itemstack1, 1, 2, false))
				{
					return null;
				}
			}
			else if (p_82846_2_ >= 3 && p_82846_2_ < 30)
			{
				if (!this.mergeItemStack(itemstack1, 30, 39, false))
				{
					return null;
				}
			}
			else if (p_82846_2_ >= 30 && p_82846_2_ < 39 && !this.mergeItemStack(itemstack1, 3, 30, false))
			{
				return null;
			}
		}
		else if (!this.mergeItemStack(itemstack1, 3, 39, false))
		{
			return null;
		}

		if (itemstack1.stackSize == 0)
		{
			slot.putStack((ItemStack)null);
		}
		else
		{
			slot.onSlotChanged();
		}

		if (itemstack1.stackSize == itemstack.stackSize)
		{
			return null;
		}

		slot.onPickupFromSlot(p_82846_1_, itemstack1);
	}

	return itemstack;
}

@Override
public boolean canInteractWith(EntityPlayer playerIn) {
	return true;
	System.cu
}

@Override
public ItemStack slotClick(int num1, int num2, int num3, EntityPlayer player) {
	tileEntity.specialEvent(2, theUser);
	if(tileEntity instanceof TileEntityArmorModifier){
		TileEntityArmorModifier tileEntity = (TileEntityArmorModifier) this.tileEntity;
		if(player.inventory.getItemStack() == null){
			if(num1 == 2 || num1 == 12){
				if(num1 == 2){
					if(tileEntity.slots[2] != null){
						//							ModArmMod.network.sendToServer(new ClientToServerMessage(1));
						tileEntity.specialEvent(0, null);
					}
				}else if (num1 == 12){
					if(tileEntity.slots[12] != null){
						tileEntity.specialEvent(1, null);
					}
				}
			}
		}
	}
	super.slotClick(num1, num2, num3, player);

	return null;

}


}

 

The whole thing does only happen while plaing with other mods, thats why I didn't see it while coding

 

whole log

 

 

[11:15:07] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLServerTweaker

[11:15:07] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLServerTweaker

[11:15:07] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLServerTweaker

[11:15:08] [main/INFO] [FML]: Forge Mod Loader version 7.99.30.1492 for Minecraft 1.7.10 loading

[11:15:08] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.8.0_51, running on Windows 8.1:amd64:6.3, installed at C:\Program Files\Java\jre1.8.0_51

[11:15:09] [main/WARN] [FML]: The coremod codechicken.core.launch.CodeChickenCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft

[11:15:09] [main/WARN] [FML]: The coremod cofh.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft

[11:15:09] [main/WARN] [FML]: The coremod codechicken.nei.asm.NEICorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft

[11:15:09] [main/WARN] [FML]: The coremod openblocks.OpenBlocksCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft

[11:15:09] [main/WARN] [FML]: The coremod openmods.core.OpenModsCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft

[11:15:09] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[11:15:09] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker

[11:15:09] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[11:15:09] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[11:15:09] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[11:15:10] [main/INFO] [FML]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557

[11:15:10] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[11:15:10] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[11:15:10] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[11:15:10] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[11:15:10] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[11:15:10] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[11:15:10] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker

[11:15:10] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[11:15:10] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker

[11:15:11] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker

[11:15:11] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer}

[11:15:13] [main/WARN] [FML]: =============================================================

[11:15:13] [main/WARN] [FML]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML!

[11:15:13] [main/WARN] [FML]: Offendor: net/minecraft/server/gui/MinecraftServerGui$1.windowClosing(Ljava/awt/event/WindowEvent;)V

[11:15:13] [main/WARN] [FML]: Use FMLCommonHandler.exitJava instead

[11:15:13] [main/WARN] [FML]: =============================================================

[11:15:13] [server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Starting minecraft server version 1.7.10

[11:15:13] [server console handler/ERROR] [net.minecraft.server.dedicated.DedicatedServer]: Exception handling console input

java.io.IOException: Das Handle ist ungültig

at java.io.FileInputStream.readBytes(Native Method) ~[?:1.8.0_51]

at java.io.FileInputStream.read(Unknown Source) ~[?:1.8.0_51]

at java.io.BufferedInputStream.read1(Unknown Source) ~[?:1.8.0_51]

at java.io.BufferedInputStream.read(Unknown Source) ~[?:1.8.0_51]

at sun.nio.cs.StreamDecoder.readBytes(Unknown Source) ~[?:1.8.0_51]

at sun.nio.cs.StreamDecoder.implRead(Unknown Source) ~[?:1.8.0_51]

at sun.nio.cs.StreamDecoder.read(Unknown Source) ~[?:1.8.0_51]

at java.io.InputStreamReader.read(Unknown Source) ~[?:1.8.0_51]

at java.io.BufferedReader.fill(Unknown Source) ~[?:1.8.0_51]

at java.io.BufferedReader.readLine(Unknown Source) ~[?:1.8.0_51]

at java.io.BufferedReader.readLine(Unknown Source) ~[?:1.8.0_51]

at net.minecraft.server.dedicated.DedicatedServer$2.run(DedicatedServer.java:97) [lv.class:?]

[11:15:13] [server thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization

[11:15:13] [server thread/INFO] [FML]: MinecraftForge v10.13.4.1492 Initialized

[11:15:13] [server thread/INFO] [FML]: Replaced 183 ore recipies

[11:15:13] [server thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization

[11:15:14] [server thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer

[11:15:14] [server thread/INFO] [FML]: Searching C:\Users\Tim\Desktop\Server\mods for mods

[11:15:14] [server thread/INFO] [FML]: Also searching C:\Users\Tim\Desktop\Server\mods\1.7.10 for mods

[11:15:15] [server thread/WARN] [D3Core]: Mod D3Core is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.1.0.29

[11:15:16] [server thread/WARN] [ExtraUtilities]: Mod ExtraUtilities is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.9

[11:15:16] [server thread/WARN] [Lumberjack]: Mod Lumberjack is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.1.0.21

[11:15:16] [server thread/INFO] [FML]: Forge Mod Loader has identified 57 mods to load

[11:15:16] [server thread/INFO] [FML]: Found mod(s) [ExtraUtilities] containing declared API package baubles.api (owned by Baubles) without associated API reference

[11:15:17] [server thread/INFO] [FML]: FML has found a non-mod file CodeChickenLib-1.7.10-1.1.3.136-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.

[11:15:17] [server thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, CodeChickenCore, NotEnoughItems, OpenModsCore, <CoFH ASM>, m0diarm0r, zeldaswordskills, BuildCraft|Factory, BuildCraft|Energy, BuildCraft|Silicon, BuildCraft|Builders, BuildCraft|Core, BuildCraft|Robotics, BuildCraft|Transport, chisel, CoFHCore, BuildMod, CoroAI, ExtendedRenderer, ConfigMod, CustomSpawner, D3Core, MoCreatures, EnderIO, ExtraUtilities, Lumberjack, Mantle, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTConstruct, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, OpenBlocks, OpenMods, ProjectE, stillhungry, TConstruct, ThermalExpansion, ThermalFoundation, Waila, ZAMod] at CLIENT

[11:15:17] [server thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, CodeChickenCore, NotEnoughItems, OpenModsCore, <CoFH ASM>, m0diarm0r, zeldaswordskills, BuildCraft|Factory, BuildCraft|Energy, BuildCraft|Silicon, BuildCraft|Builders, BuildCraft|Core, BuildCraft|Robotics, BuildCraft|Transport, chisel, CoFHCore, BuildMod, CoroAI, ExtendedRenderer, ConfigMod, CustomSpawner, D3Core, MoCreatures, EnderIO, ExtraUtilities, Lumberjack, Mantle, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTConstruct, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, OpenBlocks, OpenMods, ProjectE, stillhungry, TConstruct, ThermalExpansion, ThermalFoundation, Waila, ZAMod] at SERVER

[11:15:19] [server thread/INFO] [TConstruct]: Preparing to take over the world

[11:15:20] [server thread/INFO] [FML]: Processing ObjectHolder annotations

[11:15:20] [server thread/INFO] [FML]: Found 337 ObjectHolder annotations

[11:15:20] [server thread/INFO] [FML]: Identifying ItemStackHolder annotations

[11:15:20] [server thread/INFO] [FML]: Found 0 ItemStackHolder annotations

[11:15:20] [server thread/INFO] [FML]: Configured a dormant chunk cache size of 0

[11:15:20] [server thread/INFO] [zeldaswordskills]: Reading config: C:\Users\Tim\Desktop\Server\config\zeldaswordskills.cfg

[11:15:20] [server thread/INFO] [zeldaswordskills]: Registered Epona's Song as 'epona' with notes [D2-natural, B2-natural, A2-natural, D2-natural, B2-natural, A2-natural]

[11:15:20] [server thread/INFO] [zeldaswordskills]: Registered Song of Healing as 'healing' with notes [b2-natural, A2-natural, F1-natural, B2-natural, A2-natural, F1-natural]

[11:15:20] [server thread/INFO] [zeldaswordskills]: Registered Saria's Song as 'saria' with notes [F1-natural, A2-natural, B2-natural, F1-natural, A2-natural, B2-natural]

[11:15:20] [server thread/INFO] [zeldaswordskills]: Registered Song of Soaring as 'soaring' with notes [F1-natural, B2-natural, D2-natural, F1-natural, B2-natural, D2-natural]

[11:15:20] [server thread/INFO] [zeldaswordskills]: Registered Song of Storms as 'storms' with notes [D1-natural, F1-natural, D2-natural, D1-natural, F1-natural, D2-natural]

[11:15:20] [server thread/INFO] [zeldaswordskills]: Registered Sun's Song as 'sun' with notes [A2-natural, F1-natural, D2-natural, A2-natural, F1-natural, D2-natural]

[11:15:20] [server thread/INFO] [zeldaswordskills]: Registered Song of Time as 'time' with notes [A2-natural, D1-natural, F1-natural, A2-natural, D1-natural, F1-natural]

[11:15:20] [server thread/INFO] [zeldaswordskills]: Registered Bolero of Fire as 'bolero' with notes [F1-natural, D1-natural, F1-natural, D1-natural, A2-natural, F1-natural, A2-natural, F1-natural]

[11:15:20] [server thread/INFO] [zeldaswordskills]: Registered Minuet of Forest as 'minuet' with notes [D1-natural, D2-natural, B2-natural, A2-natural, B2-natural, A2-natural]

[11:15:20] [server thread/INFO] [zeldaswordskills]: Registered Prelude of Light as 'prelude' with notes [D2-natural, A2-natural, D2-natural, A2-natural, B2-natural, D2-natural]

[11:15:20] [server thread/INFO] [zeldaswordskills]: Registered Oath to Order as 'oath' with notes [A2-natural, F1-natural, D1-natural, F1-natural, A2-natural, D2-natural]

[11:15:20] [server thread/INFO] [zeldaswordskills]: Registered Nocturne of Shadow as 'nocturne' with notes [b2-natural, A2-natural, A2-natural, D1-natural, B2-natural, A2-natural, F1-natural]

[11:15:20] [server thread/INFO] [zeldaswordskills]: Registered Requiem of Spirit as 'requiem' with notes [D1-natural, F1-natural, D1-natural, A2-natural, F1-natural, D1-natural]

[11:15:20] [server thread/INFO] [zeldaswordskills]: Registered Serenade of Water as 'serenade' with notes [D1-natural, F1-natural, A2-natural, A2-natural, B2-natural]

[11:15:20] [server thread/INFO] [zeldaswordskills]: Registered Zelda's Lullaby as 'lullaby' with notes [b2-natural, D2-natural, A2-natural, B2-natural, D2-natural, A2-natural]

[11:15:20] [server thread/INFO] [zeldaswordskills]: Registered Scarecrow's Song as 'scarecrow' with notes []

[11:15:21] [server thread/INFO] [CoFHWorld]: Registering Default Templates.

[11:15:21] [server thread/INFO] [CoFHWorld]: Registering default generators

[11:15:21] [server thread/INFO] [CoFHWorld]: Complete

[11:15:21] [server thread/INFO] [buildCraft]: Starting BuildCraft 7.0.17

[11:15:21] [server thread/INFO] [buildCraft]: Copyright © SpaceToad, 2011-2015

[11:15:21] [server thread/INFO] [buildCraft]: http://www.mod-buildcraft.com

[11:15:21] [Thread-9/INFO] [buildCraft]: Beginning version check

[11:15:21] [Thread-9/WARN] [buildCraft]: Using outdated version [7.0.17] for Minecraft 1.7.10. Consider updating to 7.0.20.

[11:15:24] [server thread/INFO] [EnderIO]: XP Juice regististration left to Open Blocks.

[11:15:24] [server thread/INFO] [Mantle]: Mantle (1.7.10-0.3.2.jenkins184) -- Preparing for launch.

[11:15:24] [server thread/INFO] [Mantle]: Entering preinitialization phase.

[11:15:24] [server thread/INFO] [Mantle]: Loading configuration from disk.

[11:15:24] [server thread/INFO] [Mantle]: Configuration load completed.

[11:15:25] [server thread/INFO] [ThermalFoundation]: Loading Plugins...

[11:15:25] [server thread/INFO] [ThermalFoundation]: Finished Loading Plugins.

[11:15:25] [server thread/INFO] [ThermalExpansion]: Loading Plugins...

[11:15:25] [server thread/INFO] [ThermalExpansion]: Finished Loading Plugins.

[11:15:25] [server thread/INFO] [PulseManager-TConstruct]: Skipping Pulse Tinkers Thaumcraft Compatibility; missing dependency: Thaumcraft

[11:15:25] [server thread/INFO] [PulseManager-TConstruct]: Skipping Pulse Tinkers AE2 Compatibility; missing dependency: appliedenergistics2

[11:15:25] [server thread/INFO] [PulseManager-TConstruct]: Skipping Pulse Tinkers IC2 Compatibility; missing dependency: IC2

[11:15:25] [server thread/INFO] [PulseManager-TConstruct]: Skipping Pulse Tinkers Mystcraft Compatibility; missing dependency: Mystcraft

[11:15:25] [server thread/INFO] [PulseManager-TConstruct]: Skipping Pulse Tinkers FMP Compatibility; missing dependency: ForgeMultipart

[11:15:25] [server thread/INFO] [PulseManager-TConstruct]: Skipping Pulse Tinkers' Underground Biomes Compatiblity; missing dependency: UndergroundBiomes

[11:15:25] [server thread/INFO] [TConstruct]: Gear module active. Adding gear cast.

[11:15:26] [server thread/INFO] [extrautils]: Hello World

[11:15:26] [server thread/INFO] [extrautils]: Registering Packet class  with discriminator: 0

[11:15:26] [server thread/INFO] [extrautils]: Registering Packet class PacketAngelRingNotifier with discriminator: 1

[11:15:26] [server thread/INFO] [extrautils]: Registering Packet class PacketGUIWidget with discriminator: 2

[11:15:26] [server thread/INFO] [extrautils]: Registering Packet class PacketParticle with discriminator: 3

[11:15:26] [server thread/INFO] [extrautils]: Registering Packet class PacketParticleCurve with discriminator: 4

[11:15:26] [server thread/INFO] [extrautils]: Registering Packet class PacketParticleEvent with discriminator: 5

[11:15:26] [server thread/INFO] [extrautils]: Registering Packet class PacketParticleLine with discriminator: 6

[11:15:26] [server thread/INFO] [extrautils]: Registering Packet class PacketPlaySound with discriminator: 7

[11:15:26] [server thread/INFO] [extrautils]: Registering Packet class PacketRain with discriminator: 8

[11:15:26] [server thread/INFO] [extrautils]: Registering Packet class PacketTempChat with discriminator: 9

[11:15:26] [server thread/INFO] [extrautils]: Registering Packet class PacketTempChatMultiline with discriminator: 10

[11:15:26] [server thread/INFO] [extrautils]: Registering Packet class PacketTime with discriminator: 11

[11:15:26] [server thread/INFO] [extrautils]: Registering Packet class PacketUseItemAlt with discriminator: 12

[11:15:26] [server thread/INFO] [extrautils]: Registering Packet class PacketVillager with discriminator: 13

[11:15:26] [server thread/INFO] [extrautils]: Registering Packet class PacketVillagerReturn with discriminator: 14

[11:15:26] [server thread/INFO] [extrautils]: Detected wrench class: buildcraft.api.tools.IToolWrench

[11:15:26] [server thread/INFO] [extrautils]: Detected wrench class: cofh.api.item.IToolHammer

[11:15:26] [server thread/INFO] [extrautils]: Detected wrench class: powercrystals.minefactoryreloaded.api.IMFRHammer

[11:15:26] [server thread/INFO] [extrautils]: Detected wrench class: crazypants.enderio.api.tool.ITool

[11:15:26] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:extractor_base_remote.0 will now be used in the Ender Constructor

[11:15:26] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:extractor_base_remote.6 will now be used in the Ender Constructor

[11:15:26] [server thread/INFO] [extrautils]: Recipes constructing item.extrautils:nodeUpgrade.5 will now be used in the Ender Constructor

[11:15:26] [server thread/INFO] [extrautils]: Recipes constructing item.extrautils:nodeUpgrade.6 will now be used in the Ender Constructor

[11:15:26] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:magnumTorch will now be used in the Ender Constructor

[11:15:26] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:endMarker will now be used in the Ender Constructor

[11:15:26] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:extractor_base.12 will now be used in the Ender Constructor

[11:15:26] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:enderQuarryUpgrade.0 will now be used in the Ender Constructor

[11:15:26] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:extractor_base.13 will now be used in the Ender Constructor

[11:15:26] [server thread/INFO] [extrautils]: Registering RecipeGlove to RecipeSorter

[11:15:26] [server thread/INFO] [extrautils]: Registering RecipeSoul to RecipeSorter

[11:15:26] [server thread/INFO] [extrautils]: Registering RecipeMagicalWood to RecipeSorter

[11:15:26] [server thread/INFO] [extrautils]: Registering RecipeCustomOres to RecipeSorter

[11:15:26] [server thread/INFO] [extrautils]: Registering RecipeFilterInvert to RecipeSorter

[11:15:26] [server thread/INFO] [extrautils]: Registering RecipeEnchantCrafting to RecipeSorter

[11:15:26] [server thread/INFO] [extrautils]: Registering RecipeHorseTransmutation to RecipeSorter

[11:15:26] [server thread/INFO] [extrautils]: Registering RecipeUnsigil to RecipeSorter

[11:15:26] [server thread/INFO] [extrautils]: Registering RecipeUnEnchanting to RecipeSorter

[11:15:26] [server thread/INFO] [extrautils]: Registering RecipeUnstableIngotCrafting to RecipeSorter

[11:15:26] [server thread/INFO] [extrautils]: Registering RecipeUnstableNuggetCrafting to RecipeSorter

[11:15:26] [server thread/INFO] [extrautils]: Registering RecipeUnstableCrafting to RecipeSorter

[11:15:26] [server thread/INFO] [extrautils]: Registering RecipeDifficultySpecific to RecipeSorter

[11:15:26] [server thread/INFO] [extrautils]: Registering RecipeBagDye to RecipeSorter

[11:15:26] [server thread/INFO] [extrautils]: Registering RecipeGBEnchanting to RecipeSorter

[11:15:27] [server thread/INFO] [ProjectE]: Loaded configuration file.

[11:15:27] [server thread/INFO] [FML]: Applying holder lookups

[11:15:27] [server thread/INFO] [FML]: Holder lookups applied

[11:15:27] [server thread/INFO] [FML]: Injecting itemstacks

[11:15:27] [server thread/INFO] [FML]: Itemstack injection complete

[11:15:27] [server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Loading properties

[11:15:27] [server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Default game type: SURVIVAL

[11:15:27] [server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Generating keypair

[11:15:28] [server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Starting Minecraft server on *:25565

[11:15:29] [server thread/INFO] [Mantle]: Entering initialization phase.

[11:15:29] [server thread/INFO] [TConstruct]: Waila detected. Registering TConstruct tank blocks with Waila registry.

[11:15:29] [server thread/INFO] [TConstruct]: BuildCraft detected. Registering facades.

[11:15:29] [server thread/INFO] [TConstruct]: MineFactoryReloaded detected. Registering TConstruct farmables/grindables with MFR's Farming Registry.

[11:15:29] [server thread/INFO] [Waila]: Receiving registration request from [ EnderIO ] for method crazypants.enderio.waila.WailaCompat.load

[11:15:29] [server thread/INFO] [Waila]: Receiving registration request from [ chisel ] for method info.jbcs.minecraft.chisel.Waila.register

[11:15:29] [server thread/INFO] [Waila]: Receiving registration request from [ TConstruct ] for method tconstruct.plugins.waila.WailaRegistrar.wailaCallback

[11:15:29] [server thread/INFO] [FML]: Injecting itemstacks

[11:15:29] [server thread/INFO] [FML]: Itemstack injection complete

[11:15:29] [server thread/INFO] [buildCraft]: BuildCraft's fake player: UUID = 77456a1f-b9f9-3f84-8863-ddef5b8e2209, name = '[buildCraft]'!

[11:15:30] [server thread/WARN] [D3Core]: Update available for D3Core (D3Core)! Current version: 1.1.0.29 New version: 1.1.0.30. Please update ASAP!

[11:15:30] [server thread/INFO] [D3Core]: [EndermanGriefing] Added 0 and removed 0 blocks to the Ederman grab list...

[11:15:30] [server thread/INFO] [EnderIO]: Loaded 2 grinding balls from SAG Mill config.

[11:15:30] [server thread/INFO] [EnderIO]: Excluding 6 recipes from grinding balls bonus.

[11:15:30] [server thread/INFO] [EnderIO]: Found 63 valid SAG Mill recipes in config.

[11:15:30] [server thread/WARN] [EnderIO]: Not adding supplied recipe as a recipe already exists for the input: 1xitem.thermalfoundation.material@68

[11:15:30] [server thread/WARN] [EnderIO]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.thermalfoundation.ore@4

[11:15:30] [server thread/WARN] [EnderIO]: Not adding supplied recipe as a recipe already exists for the input: 1xitem.thermalfoundation.material@66

[11:15:30] [server thread/WARN] [EnderIO]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.thermalfoundation.ore@2

[11:15:30] [server thread/WARN] [EnderIO]: Not adding supplied recipe as a recipe already exists for the input: 1xitem.thermalfoundation.material@73

[11:15:30] [server thread/INFO] [EnderIO]: Finished processing SAG Mill recipes. 58 recipes avaliable.

[11:15:30] [server thread/INFO] [EnderIO]: Found 32 valid Alloy Smelter recipes in config.

[11:15:30] [server thread/INFO] [EnderIO]: Finished processing Alloy Smelter recipes. 32 recipes avaliable.

[11:15:30] [server thread/INFO] [EnderIO]: AlloyRecipeManager: Vannila smelting in AlloySmelting enabled=true

[11:15:30] [server thread/INFO] [EnderIO]: Found 4 valid Slice'N'Splice recipes in config.

[11:15:30] [server thread/INFO] [EnderIO]: Finished processing Slice'N'Splice recipes. 4 recipes avaliable.

[11:15:30] [server thread/INFO] [EnderIO]: Found 4 valid Vat recipes in config.

[11:15:30] [server thread/INFO] [EnderIO]: Finished processing Vat recipes. 4 recipes avaliable.

[11:15:30] [server thread/WARN] [EnderIO]: Could not find enchantment with name enchantment.enderzoo.witherArrow when parsing enchanter recipes.

[11:15:30] [server thread/WARN] [EnderIO]: Could not find enchantment with name enchantment.enderzoo.witherWeapon when parsing enchanter recipes.

[11:15:30] [server thread/WARN] [EnderIO]: Could not find enchantment with name enchantment.enderzoo.witherWeapon when parsing enchanter recipes.

[11:15:30] [server thread/WARN] [EnderIO]: Could not find enchantment with name enchantment.repair when parsing enchanter recipes.

[11:15:30] [server thread/INFO] [EnderIO]: Loaded 25 recipes for Enchanter

[11:15:30] [server thread/INFO] [EnderIO]: Registered Capacitor Banks as Tinkers Construct Flux Upgrades

[11:15:30] [server thread/INFO] [Mantle]: Entering postinitialization phase.

[11:15:30] [server thread/INFO] [Mantle]: Loading Manual XML from: /assets/mantle/manuals/test.xml

[11:15:31] [server thread/INFO] [ThermalExpansion]: There are no crafting files present in C:\Users\Tim\Desktop\Server\config\cofh\thermalexpansion\crafting.

[11:15:31] [server thread/WARN] [TConstruct]: Could not find itemResourcefrom thaumcraft.common.config.ConfigItems

[11:15:31] [server thread/WARN] [TConstruct]: Thaumcraft not detected.

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockAir

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockStone

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockGrass

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockDirt

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockWood

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockSapling

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockBush

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.asmhooks.block.BlockTickingWater

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockDynamicLiquid

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockLiquid

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.asmhooks.block.BlockWater

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockStaticLiquid

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockSand

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockFalling

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockGravel

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockOre

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockOldLog

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockLog

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockLog

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockOldLeaf

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockLeaves

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockLeaves

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockSponge

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockGlass

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockBreakable

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockCompressed

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockDispenser

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockDispenser

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockSandStone

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockNote

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockContainer

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockContainer

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockBed

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockBed

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockRailPowered

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockRailBase

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockRailBase

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockRailDetector

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockPistonBase

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockWeb

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockTallGrass

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockTallGrass

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockDeadBush

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockDeadBush

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockPistonExtension

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockPistonExtension

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockColored

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockPistonMoving

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockPistonMoving

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockFlower

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockMushroom

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockStoneSlab

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockSlab

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockTNT

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockTNT

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockBookshelf

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockObsidian

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockTorch

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockFire

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockMobSpawner

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockStairs

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockStairs

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockChest

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockChest

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockRedstoneWire

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockRedstoneWire

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockWorkbench

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockCrops

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockFarmland

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockFurnace

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockFurnace

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockSign

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockDoor

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockDoor

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockLadder

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockRail

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockLever

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockLever

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockPressurePlate

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockBasePressurePlate

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockBasePressurePlate

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockRedstoneOre

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockRedstoneTorch

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockRedstoneTorch

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockButtonStone

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockButton

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockButton

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockSnow

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockSnow

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockIce

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockIce

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockSnowBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockCactus

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockClay

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockReed

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockJukebox

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockJukebox

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockFence

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockPumpkin

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockDirectional

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockNetherrack

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockSoulSand

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockGlowstone

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockPortal

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockCake

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockRedstoneRepeater

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockRedstoneRepeater

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockStainedGlass

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockTrapDoor

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockSilverfish

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockSilverfish

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockStoneBrick

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockHugeMushroom

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockPane

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockMelon

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockStem

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockVine

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockVine

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockFenceGate

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockMycelium

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockLilyPad

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockNetherWart

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockEnchantmentTable

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockBrewingStand

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockBrewingStand

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockCauldron

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockEndPortal

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockEndPortalFrame

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockDragonEgg

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockRedstoneLight

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockWoodSlab

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockCocoa

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockEnderChest

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockTripWireHook

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockTripWireHook

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockTripWire

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockTripWire

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockCommandBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockBeacon

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockWall

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockFlowerPot

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockFlowerPot

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockCarrot

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockPotato

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockButtonWood

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockSkull

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockSkull

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockAnvil

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockPressurePlateWeighted

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockRedstoneComparator

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockRedstoneComparator

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockDaylightDetector

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockCompressedPowered

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockHopper

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockHopper

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockQuartz

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockDropper

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockStainedGlassPane

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockNewLeaf

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockNewLog

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockHeavy

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockPeg

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockCeramicJar

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: zeldaswordskills.block.BlockCeramicJar

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockHay

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockRotatedPillar

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockCarpet

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockHardenedClay

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockPackedIce

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockDoublePlant

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.minecraft.block.BlockDoublePlant

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockChestLocked

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: zeldaswordskills.block.BlockChestLocked

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockChestInvisible

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockPedestal

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: zeldaswordskills.block.BlockPedestal

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockSacredFlame

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockDoorBoss

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockDoorLocked

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: zeldaswordskills.block.BlockDoorLocked

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockSecretStone

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockDungeonCore

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: zeldaswordskills.block.BlockDungeonCore

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockDungeonStone

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockBar

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockTargetDirectional

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockTarget

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockGiantLever

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockTime

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockSongInscription

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockWarpStone

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockGossipStone

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: zeldaswordskills.block.BlockBombFlower

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.core.BlockSpring

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.core.BlockBuildTool

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.core.BlockEngine

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.core.lib.engines.BlockEngineBase

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.core.lib.block.BlockBuildCraft

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: buildcraft.core.lib.block.BlockBuildCraft

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.factory.BlockMiningWell

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: buildcraft.factory.BlockMiningWell

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.factory.BlockPlainPipe

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.factory.BlockAutoWorkbench

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.factory.BlockTank

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: buildcraft.factory.BlockTank

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.factory.BlockPump

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.factory.BlockFloodGate

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.factory.BlockRefinery

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.factory.BlockHopper

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.core.lib.block.BlockBuildCraftFluid

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraftforge.fluids.BlockFluidClassic

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraftforge.fluids.BlockFluidBase

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.silicon.BlockLaser

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.silicon.BlockLaserTable

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.silicon.BlockPackager

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.builders.BlockQuarry

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: buildcraft.builders.BlockQuarry

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.builders.BlockMarker

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.builders.BlockPathMarker

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.builders.BlockConstructionMarker

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: buildcraft.builders.BlockConstructionMarker

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.builders.BlockFiller

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.builders.BlockFrame

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: buildcraft.builders.BlockFrame

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.builders.BlockBuilder

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.builders.BlockArchitect

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.builders.BlockBlueprintLibrary

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.robotics.BlockZonePlan

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.robotics.BlockRequester

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.transport.BlockFilteredBuffer

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: buildcraft.transport.BlockGenericPipe

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: buildcraft.transport.BlockGenericPipe

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockCarvable

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockMarbleSlab

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockMarblePillar

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockMarbleStairs

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockCarvableGlass

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockSnakestone

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockConcrete

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockRoadLine

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockBeaconBase

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockLightstoneCarvable

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockMarbleIce

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: info.jbcs.minecraft.chisel.block.BlockMarbleIce

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockMarbleIceStairs

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: info.jbcs.minecraft.chisel.block.BlockMarbleIceStairs

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockSnakestoneObsidian

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockCarvablePane

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockCarvablePowered

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockHolystone

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockLavastone

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockMarbleTexturedOre

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockTexturedOre

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockMarbleCarpet

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockMarbleBookshelf

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockEldritch

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: info.jbcs.minecraft.chisel.block.BlockCloud

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: drzhark.mocreatures.block.MoCBlockRock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: drzhark.mocreatures.block.MoCBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: drzhark.mocreatures.block.MoCBlockGrass

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: drzhark.mocreatures.block.MoCBlockDirt

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: drzhark.mocreatures.block.MoCBlockLeaf

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: drzhark.mocreatures.block.MoCBlockLeaf

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: drzhark.mocreatures.block.MoCBlockLog

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: drzhark.mocreatures.block.MoCBlockLog

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: drzhark.mocreatures.block.MoCBlockTallGrass

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: drzhark.mocreatures.block.MoCBlockTallGrass

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: drzhark.mocreatures.block.MoCBlockPlanks

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.transport.BlockConveyor

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.BlockFactory

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: powercrystals.minefactoryreloaded.block.BlockFactory

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.decor.BlockFactoryDecoration

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.BlockFactoryMachine

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: powercrystals.minefactoryreloaded.block.BlockFactoryMachine

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.fluid.BlockTank

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.transport.BlockPlasticPipe

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.transport.BlockRedNetCable

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: powercrystals.minefactoryreloaded.block.transport.BlockRedNetCable

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.BlockRedNetLogic

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.BlockRedNetPanel

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.transport.BlockRailCargoPickup

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.transport.BlockFactoryRail

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.transport.BlockRailCargoDropoff

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.transport.BlockRailPassengerPickup

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.transport.BlockRailPassengerDropoff

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.BlockRubberSapling

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.BlockRubberWood

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.BlockRubberLeaves

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: powercrystals.minefactoryreloaded.block.BlockRubberLeaves

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.decor.BlockFactoryGlass

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.decor.BlockFactoryGlassPane

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.transport.BlockFactoryRoad

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.decor.BlockFactoryPlastic

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.decor.BlockDecorativeBricks

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.decor.BlockDecorativeStone

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.decor.BlockPinkSlime

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.BlockVineScaffold

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.BlockFertileSoil

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.BlockDetCord

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.BlockFakeLaser

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.fluid.BlockFactoryFluid

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.core.fluid.BlockFluidCoFHBase

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.fluid.BlockExplodingFluid

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: powercrystals.minefactoryreloaded.block.fluid.BlockExplodingFluid

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: powercrystals.minefactoryreloaded.block.fluid.BlockPinkSlimeFluid

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.generator.stirling.BlockStirlingGenerator

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.AbstractMachineBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.BlockEio

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: crazypants.enderio.BlockEio

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.generator.combustion.BlockCombustionGenerator

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.generator.zombie.BlockZombieGenerator

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.solar.BlockSolarPanel

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.crusher.BlockCrusher

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.alloy.BlockAlloySmelter

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.power.BlockCapacitorBank

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: crazypants.enderio.machine.power.BlockCapacitorBank

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.capbank.BlockCapBank

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: crazypants.enderio.machine.capbank.BlockCapBank

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.painter.BlockPainter

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.painter.BlockPaintedFence

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: crazypants.enderio.machine.painter.BlockPaintedFence

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.painter.BlockPaintedFenceGate

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: crazypants.enderio.machine.painter.BlockPaintedFenceGate

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.painter.BlockPaintedWall

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: crazypants.enderio.machine.painter.BlockPaintedWall

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.painter.BlockPaintedStair

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: crazypants.enderio.machine.painter.BlockPaintedStair

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.painter.BlockPaintedSlab

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: crazypants.enderio.machine.painter.BlockPaintedSlab

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.crafter.BlockCrafter

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.painter.BlockPaintedGlowstone

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.painter.BlockPaintedCarpet

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: crazypants.enderio.machine.painter.BlockPaintedCarpet

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.vat.BlockVat

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.monitor.BlockPowerMonitor

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.farm.BlockFarmStation

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.wireless.BlockWirelessCharger

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.hypercube.BlockHyperCube

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: crazypants.enderio.machine.hypercube.BlockHyperCube

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.tank.BlockTank

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.reservoir.BlockReservoir

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.vacuum.BlockVacuumChest

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.transceiver.BlockTransceiver

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: crazypants.enderio.machine.transceiver.BlockTransceiver

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.buffer.BlockBuffer

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.enderface.BlockEnderIO

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.teleport.BlockTravelAnchor

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.slicensplice.BlockSliceAndSplice

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.soul.BlockSoulBinder

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.spawner.BlockPoweredSpawner

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.killera.BlockKillerJoe

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.attractor.BlockAttractor

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.spawnguard.BlockSpawnGuard

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.xp.BlockExperienceObelisk

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.enchanter.BlockEnchanter

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: crazypants.enderio.machine.enchanter.BlockEnchanter

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.block.BlockDarkSteelPressurePlate

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: crazypants.enderio.block.BlockDarkSteelPressurePlate

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.block.BlockDarkSteelAnvil

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.block.BlockDarkSteelLadder

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.light.BlockElectricLight

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: crazypants.enderio.machine.light.BlockElectricLight

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.machine.light.BlockLightNode

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: crazypants.enderio.machine.light.BlockLightNode

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.block.BlockReinforcedObsidian

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.material.BlockFusedQuartz

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.rail.BlockEnderRail

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: crazypants.enderio.rail.BlockEnderRail

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.conduit.BlockConduitBundle

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: crazypants.enderio.conduit.BlockConduitBundle

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.conduit.facade.BlockConduitFacade

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.item.skull.BlockEndermanSkull

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.fluid.BlockFluidEio

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.material.BlockIngotStorage

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: crazypants.enderio.material.BlockDarkIronBars

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalfoundation.block.BlockOre

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalfoundation.block.BlockStorage

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalfoundation.fluid.BlockFluidRedstone

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalfoundation.fluid.BlockFluidGlowstone

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalfoundation.fluid.BlockFluidEnder

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalfoundation.fluid.BlockFluidPyrotheum

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.core.fluid.BlockFluidInteractive

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalfoundation.fluid.BlockFluidCryotheum

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalfoundation.fluid.BlockFluidAerotheum

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalfoundation.fluid.BlockFluidPetrotheum

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalfoundation.fluid.BlockFluidMana

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalfoundation.fluid.BlockFluidSteam

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalfoundation.fluid.BlockFluidCoal

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.blocks.slime.SlimeFluid

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.world.blocks.MeatBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.blocks.SlabBase

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: mantle.blocks.MantleBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.blocks.traps.Punji

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.blocks.traps.BarricadeBlock

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: tconstruct.blocks.traps.BarricadeBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.world.blocks.SlimeExplosive

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: tconstruct.world.blocks.SlimeExplosive

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.blocks.slime.SlimeGel

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.blocks.TConstructBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.blocks.slime.SlimeGrass

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.blocks.slime.SlimeTallGrass

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.blocks.slime.SlimeLeaves

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.blocks.slime.SlimeSapling

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.world.blocks.ConveyorBase

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.world.blocks.SlimePad

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.world.blocks.StoneTorch

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.world.blocks.StoneLadder

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.tools.blocks.MultiBrick

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.tools.blocks.MultiBrickFancy

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.world.blocks.OreberryBush

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraft.block.BlockLeavesBase

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.world.blocks.OreberryBushEssence

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.smeltery.blocks.MetalOre

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.world.blocks.GravelOre

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.world.blocks.WoodRail

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.world.blocks.TMetalBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.tools.blocks.ToolStationBlock

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: tconstruct.tools.blocks.ToolStationBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.tools.blocks.ToolForgeBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: mantle.blocks.abstracts.InventoryBlock

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: mantle.blocks.abstracts.InventoryBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.tools.blocks.CraftingStationBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.tools.blocks.CraftingSlab

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: tconstruct.tools.blocks.CraftingSlab

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.tools.blocks.FurnaceSlab

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: mantle.blocks.abstracts.InventorySlab

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.tools.blocks.EquipBlock

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: tconstruct.tools.blocks.EquipBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.tools.blocks.BattlesignBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.world.blocks.SoilBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.smeltery.blocks.TConstructFluid

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.smeltery.blocks.BloodBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.smeltery.blocks.GlueFluid

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.minecraftforge.fluids.BlockFluidFinite

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.smeltery.blocks.PigIronMoltenBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.smeltery.blocks.SearedSlab

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.smeltery.blocks.SpeedSlab

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.smeltery.blocks.GlueBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.smeltery.blocks.SmelteryBlock

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: tconstruct.smeltery.blocks.SmelteryBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.smeltery.blocks.LavaTankBlock

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: tconstruct.smeltery.blocks.LavaTankBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.smeltery.blocks.SearedBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.smeltery.blocks.CastingChannelBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.smeltery.blocks.SpeedBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.smeltery.blocks.GlassBlockConnected

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.smeltery.blocks.GlassPaneConnected

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.smeltery.blocks.GlassBlockConnectedMeta

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.smeltery.blocks.GlassPaneStained

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.smeltery.blocks.PaneBase

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.mechworks.blocks.BlockLandmine

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: tconstruct.mechworks.blocks.BlockLandmine

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: tconstruct.armor.blocks.DryingRack

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.tileentity.endercollector.BlockEnderCollector

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: com.rwtema.extrautils.tileentity.endercollector.BlockEnderCollector

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.tileentity.enderconstructor.BlockEnderConstructor

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: com.rwtema.extrautils.tileentity.enderconstructor.BlockEnderConstructor

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.tileentity.enderquarry.BlockEnderMarkers

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockMultiBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockCurtain

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockAngelBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockBUD

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockChandelier

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockDecoration

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockPureLove

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockBedrockium

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockColorData

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockColor

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockCobblestoneCompressed

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockConveyor

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockFilingCabinet

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: com.rwtema.extrautils.block.BlockFilingCabinet

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockGreenScreen

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockPeacefulTable

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockTradingPost

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockSoundMuffler

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.tileentity.transfernodes.BlockTransferNode

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: com.rwtema.extrautils.tileentity.transfernodes.BlockTransferNode

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.tileentity.transfernodes.BlockRetrievalNode

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.tileentity.transfernodes.BlockTransferPipe

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: com.rwtema.extrautils.tileentity.transfernodes.BlockTransferPipe

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockCursedEarth

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockTrashCan

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: com.rwtema.extrautils.block.BlockTrashCan

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockSpike

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: com.rwtema.extrautils.block.BlockSpike

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockSpikeDiamond

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockSpikeGold

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockSpikeWood

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockEnderthermicPump

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.tileentity.enderquarry.BlockEnderQuarry

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.tileentity.enderquarry.BlockQuarryUpgrades

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockMultiBlockSelection

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockEnderLily

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockTimer

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockMagnumTorch

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockDrum

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: com.rwtema.extrautils.block.BlockDrum

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.tileentity.generators.BlockGenerator

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: com.rwtema.extrautils.tileentity.generators.BlockGenerator

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockPortal

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: com.rwtema.extrautils.block.BlockEtherealStone

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockLadder

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockGuide

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.OpenBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openmods.block.OpenBlock

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: openmods.block.OpenBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockElevator

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockHeal

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockTarget

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockGrave

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockFlag

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockTank

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockTrophy

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockBearTrap

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockSprinkler

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockCannon

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockVacuumHopper

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockSponge

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockBigButton

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockImaginary

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockFan

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockXPBottler

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockVillageHighlighter

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockPath

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockAutoAnvil

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockAutoEnchantmentTable

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockXPDrain

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockBlockBreaker

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockBlockPlacer

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockItemDropper

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockRopeLadder

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: openblocks.common.block.BlockRopeLadder

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockDonationStation

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockPaintMixer

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockCanvas

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockPaintCan

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockCanvasGlass

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockProjector

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockDrawingTable

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockSky

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockXPShower

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockGoldenEgg

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: openblocks.common.block.BlockScaffolding

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: moze_intel.projecte.gameObjs.blocks.InterdictionTorch

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: moze_intel.projecte.gameObjs.blocks.CondenserMK2

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: moze_intel.projecte.gameObjs.blocks.Condenser

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: moze_intel.projecte.gameObjs.blocks.Condenser

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: moze_intel.projecte.gameObjs.blocks.MatterFurnace

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: moze_intel.projecte.gameObjs.blocks.MatterFurnace

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: moze_intel.projecte.gameObjs.blocks.Pedestal

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: moze_intel.projecte.gameObjs.blocks.Pedestal

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: moze_intel.projecte.gameObjs.blocks.NovaCatalyst

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: moze_intel.projecte.gameObjs.blocks.NovaCataclysm

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: moze_intel.projecte.gameObjs.blocks.AlchemicalChest

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: moze_intel.projecte.gameObjs.blocks.BlockDirection

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: moze_intel.projecte.gameObjs.blocks.BlockDirection

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: moze_intel.projecte.gameObjs.blocks.TransmutationStone

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: moze_intel.projecte.gameObjs.blocks.MatterBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: moze_intel.projecte.gameObjs.blocks.FuelBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: moze_intel.projecte.gameObjs.blocks.Collector

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: moze_intel.projecte.gameObjs.blocks.Relay

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.seventeencups.stillhungry.block.BlockHedge

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.seventeencups.stillhungry.block.BlockRice

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.seventeencups.stillhungry.block.BlockCrop

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.seventeencups.stillhungry.block.BlockStrawberry

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.seventeencups.stillhungry.block.BlockStove

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.seventeencups.stillhungry.block.BlockStove

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.seventeencups.stillhungry.block.BlockBarrel

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: net.seventeencups.stillhungry.block.BlockBarrel

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: net.seventeencups.stillhungry.block.BlockGrape

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: de.intektor.modarmor.blocks.ArmorModifier

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: de.kloon.klooncore.BasicMachineBlock

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.machine.BlockMachine

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.BlockTEBase

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.core.block.BlockCoFHBase

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: cofh.core.block.BlockCoFHBase

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.device.BlockDevice

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.dynamo.BlockDynamo

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.cell.BlockCell

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.tank.BlockTank

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.strongbox.BlockStrongbox

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.cache.BlockCache

[11:15:31] [server thread/INFO] [extrautils]: Detected special block breaking code in class: cofh.thermalexpansion.block.cache.BlockCache

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.ender.BlockEnder

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.plate.BlockPlate

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.light.BlockLight

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.simple.BlockFrame

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.simple.BlockGlass

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.simple.BlockRockwool

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.sponge.BlockSponge

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.simple.BlockAirSignal

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.simple.BlockAirBase

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.simple.BlockAirLight

[11:15:31] [server thread/INFO] [extrautils]: Checking class for special block breaking code: cofh.thermalexpansion.block.simple.BlockAirBarrier

[11:15:32] [server thread/INFO] [OpenMods]: openmods.integration.Integration.loadModules(Integration.java:32): Condition no met for integration module 'OpenBlocks adapters for OpenPeripheral', not loading

[11:15:32] [server thread/INFO] [OpenMods]: openmods.integration.Integration.loadModules(Integration.java:32): Condition no met for integration module 'OpenBlocks turtles', not loading

[11:15:32] [server thread/INFO] [OpenMods]: openmods.integration.Integration.loadModules(Integration.java:30): Loaded integration module 'BuildCraft pipes'

[11:15:32] [server thread/INFO] [ProjectE]: Registered user-defined NBT whitelist for: TConstruct:pickaxe

[11:15:32] [server thread/INFO] [ProjectE]: Registered user-defined NBT whitelist for: ExtraUtilities:unstableingot

[11:15:32] [server thread/FATAL] [ProjectE]: Error in NBT whitelist file: no item stack found for ExtraUtilities:unstableIngot

[11:15:32] [server thread/FATAL] [ProjectE]: At line: 7

[11:15:32] [server thread/FATAL] [ProjectE]: Error in NBT whitelist file: no item stack found for Botania:specialFlower

[11:15:32] [server thread/FATAL] [ProjectE]: At line: 8

[11:15:32] [server thread/INFO] [FML]:  Unknown recipe class! zeldaswordskills.item.crafting.RecipeCombineBombBag Modder please refer to net.minecraftforge.oredict.RecipeSorter

[11:15:32] [server thread/INFO] [CoFHWorld]: CoFH Core found 2 World Generation files present in C:\Users\Tim\Desktop\Server\config\cofh\world/.

[11:15:32] [server thread/INFO] [CoFHWorld]: Reading world generation info from: C:\Users\Tim\Desktop\Server\config\cofh\world\ThermalFoundation-Ores.json:

[11:15:32] [server thread/INFO] [MineFactoryReloaded]: Load Complete.

[11:15:32] [server thread/INFO] [ThermalFoundation]: [Whitelist] Reading established Whitelist from file.

[11:15:32] [server thread/INFO] [ThermalFoundation]: Thermal Foundation: MineFactoryReloaded Plugin Enabled.

[11:15:32] [server thread/INFO] [ThermalFoundation]: Thermal Foundation: Tinker's Construct Plugin Enabled.

[11:15:32] [server thread/INFO] [ThermalFoundation]: Load Complete.

[11:15:32] [server thread/INFO] [ThermalExpansion]: Thermal Expansion: MineFactoryReloaded Plugin Enabled.

[11:15:32] [server thread/INFO] [ThermalExpansion]: Load Complete.

[11:15:32] [server thread/WARN] [Waila]: [industrialCraft 2] Error while loading generator hooks.java.lang.ClassNotFoundException: ic2.core.block.generator.tileentity.TileEntityBaseGenerator

[11:15:32] [server thread/WARN] [Waila]: [Thaumcraft] Class not found. java.lang.ClassNotFoundException: thaumcraft.common.Thaumcraft

[11:15:32] [server thread/INFO] [Waila]: [EnderStorage] EnderStorage mod not found.

[11:15:32] [server thread/INFO] [Waila]: [GraveStone] GraveStone mod not found.

[11:15:32] [server thread/INFO] [Waila]: [TwilightForestMod] TwilightForestMod mod not found.

[11:15:32] [server thread/WARN] [Waila]: [Thermal Dynamics] Error while loading FluidDuct hooks.java.lang.ClassNotFoundException: cofh.thermaldynamics.ducts.fluid.TileFluidDuct

[11:15:32] [server thread/INFO] [Waila]: [Engineer Toolbox] Engineer Toolbox mod not found.

[11:15:32] [server thread/INFO] [Waila]: [ProjectRed] ProjectRed|Integration mod not found.

[11:15:32] [server thread/INFO] [Waila]: ExtraUtilities mod found.

[11:15:32] [server thread/INFO] [Waila]: OpenBlocks mod found.

[11:15:32] [server thread/INFO] [Waila]: [Railcraft] Railcraft mod not found.

[11:15:32] [server thread/INFO] [Waila]: [PamHarvestCraft] PamHarvestCraft mod not found.

[11:15:32] [server thread/INFO] [Waila]: [MagicalCrops] MagicalCrops mod not found.

[11:15:32] [server thread/INFO] [Waila]: [statues] Statues mod not found.

[11:15:32] [server thread/INFO] [Waila]: [Agriculture] Agriculture mod not found.

[11:15:32] [server thread/INFO] [Waila]: Trying to reflect crazypants.enderio.waila.WailaCompat load

[11:15:32] [server thread/INFO] [Waila]: Success in registering EnderIO

[11:15:32] [server thread/INFO] [Waila]: Trying to reflect info.jbcs.minecraft.chisel.Waila register

[11:15:32] [server thread/INFO] [Waila]: Success in registering chisel

[11:15:32] [server thread/INFO] [Waila]: Trying to reflect tconstruct.plugins.waila.WailaRegistrar wailaCallback

[11:15:32] [server thread/INFO] [TConstruct]: [Waila-Compat] Got registrar: mcp.mobius.waila.api.impl.ModuleRegistrar@44082feb

[11:15:32] [server thread/INFO] [Waila]: Success in registering TConstruct

[11:15:32] [server thread/INFO] [FML]: Forge Mod Loader has successfully loaded 57 mods

[11:15:32] [server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Preparing level "world"

[11:15:32] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance

[11:15:32] [server thread/INFO] [FML]: Applying holder lookups

[11:15:32] [server thread/INFO] [FML]: Holder lookups applied

[11:15:35] [server thread/INFO] [FML]: Loading dimension 0 (world) (net.minecraft.server.dedicated.DedicatedServer@6359e25d)

[11:15:35] [server thread/INFO] [FML]: Loading dimension -17 (world) (net.minecraft.server.dedicated.DedicatedServer@6359e25d)

[11:15:37] [server thread/INFO] [FML]: Loading dimension -100 (world) (net.minecraft.server.dedicated.DedicatedServer@6359e25d)

[11:15:38] [server thread/INFO] [FML]: Loading dimension 1 (world) (net.minecraft.server.dedicated.DedicatedServer@6359e25d)

[11:15:40] [server thread/INFO] [FML]: Loading dimension -1 (world) (net.minecraft.server.dedicated.DedicatedServer@6359e25d)

[11:15:40] [server thread/INFO] [FML]: Loading dimension -112 (world) (net.minecraft.server.dedicated.DedicatedServer@6359e25d)

[11:15:40] [server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing start region for level 0

[11:15:41] [server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 45%

[11:15:42] [server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Done (9,782s)! For help, type "help" or "?"

[11:15:43] [server thread/INFO] [ProjectE]: Starting server-side EMC mapping.

[11:15:43] [server thread/INFO] [ProjectE]: Starting to collect Mappings...

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for TConstruct:SearedBrick(607:5):0/1 to 0.0

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueAfterInherit for TConstruct:SearedBrick(607:5):0/1 to 0/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for TConstruct:GravelOre(608:4):0/1 to 0.0

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueAfterInherit for TConstruct:GravelOre(608:4):0/1 to 0/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for TConstruct:oreBerries(4626:4):0/1 to 0.0

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueAfterInherit for TConstruct:oreBerries(4626:4):0/1 to 0/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for TConstruct:oreBerries(4626:1):0/1 to 0.0

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueAfterInherit for TConstruct:oreBerries(4626:1):0/1 to 0/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for TConstruct:ore.berries.two(606:0):0/1 to 0.0

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueAfterInherit for TConstruct:ore.berries.two(606:0):0/1 to 0/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for TConstruct:materials(4629:40):0/1 to 0.0

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueAfterInherit for TConstruct:materials(4629:40):0/1 to 0/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for TConstruct:materials(4629:42):0/1 to 0.0

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueAfterInherit for TConstruct:materials(4629:42):0/1 to 0/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for minecraft:redstone(331:0):0/1 to 64/1

[11:15:43] [server thread/WARN] [ProjectE]: Removing fixValueAfterInherit for minecraft:redstone(331:0) before: 0/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for minecraft:glowstone_dust(348:0):0/1 to 384/1

[11:15:43] [server thread/WARN] [ProjectE]: Removing fixValueAfterInherit for minecraft:glowstone_dust(348:0) before: 0/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for EnderIO:itemPowderIngot(4470:0):0/1 to 64/1

[11:15:43] [server thread/WARN] [ProjectE]: Removing fixValueAfterInherit for EnderIO:itemPowderIngot(4470:0) before: 0/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for ThermalFoundation:material(4493:2):0/1 to 64/1

[11:15:43] [server thread/WARN] [ProjectE]: Removing fixValueAfterInherit for ThermalFoundation:material(4493:2) before: 0/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for ThermalFoundation:material(4493:3):0/1 to 16/1

[11:15:43] [server thread/WARN] [ProjectE]: Removing fixValueAfterInherit for ThermalFoundation:material(4493:3) before: 0/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for ThermalFoundation:material(4493:16):0/1 to 32/1

[11:15:43] [server thread/WARN] [ProjectE]: Removing fixValueAfterInherit for ThermalFoundation:material(4493:16) before: 0/1

[11:15:43] [server thread/INFO] [ProjectE]: Collected Mappings from moze_intel.projecte.emc.mappers.OreDictionaryMapper

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for minecraft:cobblestone(4:0):1/1 to 1/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for minecraft:stone(1:0):1/1 to 1/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for minecraft:leaves(18:0):1/1 to 1/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for minecraft:leaves2(161:0):1/1 to 1/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for minecraft:stick(280:0):4/1 to 4/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for minecraft:iron_ingot(265:0):256/1 to 256/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for minecraft:gold_ingot(266:0):2048/1 to 2048/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for minecraft:diamond(264:0):8192/1 to 8192/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for minecraft:redstone(331:0):64/1 to 64/1

[11:15:43] [server thread/WARN] [ProjectE]: Overwriting fixValueBeforeInherit for minecraft:glowstone_dust(348:0):384/1 to 384/1

[11:15:43] [server thread/INFO] [ProjectE]: Collected Mappings from moze_intel.projecte.emc.mappers.LazyMapper

[11:15:43] [server thread/INFO] [ProjectE]: Collected Mappings from moze_intel.projecte.emc.mappers.APICustomEMCMapper

[11:15:43] [server thread/INFO] [ProjectE]: Collected Mappings from moze_intel.projecte.emc.mappers.CustomEMCMapper

[11:15:43] [server thread/WARN] [ProjectE]: Ignoring Recipe because outnumber <= 0: {minecraft:filled_map(358:*)=1, minecraft:paper(339:0)=8} -> 0xitem.emptyMap@0

[11:15:43] [ProjectE Update Checker Server/INFO] [ProjectE]: Mod is updated.

[11:15:43] [server thread/WARN] [ProjectE]: Can not map Crafting Recipes with Type: cofh.thermalexpansion.plugins.nei.handlers.NEIRecipeWrapper

[11:15:43] [server thread/WARN] [ProjectE]: Can not map Crafting Recipes with Type: zeldaswordskills.item.crafting.RecipeCombineBombBag

[11:15:43] [server thread/WARN] [ProjectE]: Can not map Crafting Recipes with Type: com.rwtema.extrautils.crafting.RecipeSoul

[11:15:43] [server thread/WARN] [ProjectE]: Can not map Crafting Recipes with Type: com.rwtema.extrautils.crafting.RecipeUnsigil

[11:15:43] [server thread/INFO] [ProjectE]: CraftingMapper Statistics:

[11:15:43] [server thread/INFO] [ProjectE]: Found 2 Recipes of Type class cofh.core.util.crafting.RecipeUpgradeOverride

[11:15:43] [server thread/INFO] [ProjectE]: Found 2 Recipes of Type class crazypants.enderio.machine.UpgradeCapBankRecipe

[11:15:43] [server thread/INFO] [ProjectE]: Found 1 Recipes of Type class com.rwtema.extrautils.crafting.ShapedOreRecipeAlwaysLast

[11:15:43] [server thread/INFO] [ProjectE]: Found 7 Recipes of Type class com.rwtema.extrautils.crafting.RecipeEnchantCrafting

[11:15:43] [server thread/INFO] [ProjectE]: Found 1 Recipes of Type class com.rwtema.extrautils.crafting.RecipeMagicalWood

[11:15:43] [server thread/INFO] [ProjectE]: Found 4 Recipes of Type class com.rwtema.extrautils.crafting.RecipeFilterInvert

[11:15:43] [server thread/INFO] [ProjectE]: Found 856 Recipes of Type class net.minecraft.item.crafting.ShapedRecipes

[11:15:43] [server thread/INFO] [ProjectE]: Found 2 Recipes of Type class com.rwtema.extrautils.crafting.RecipeDifficultySpecific

[11:15:43] [server thread/INFO] [ProjectE]: Found 1 Recipes of Type class openblocks.common.recipe.CrayonGlassesRecipe

[11:15:43] [server thread/INFO] [ProjectE]: Found 16 Recipes of Type class cofh.core.util.crafting.RecipeUpgrade

[11:15:43] [server thread/INFO] [ProjectE]: Found 1 Recipes of Type class com.rwtema.extrautils.crafting.RecipeGlove

[11:15:43] [server thread/INFO] [ProjectE]: Found 35 Recipes of Type class com.rwtema.extrautils.crafting.RecipeUnstableCrafting

[11:15:43] [server thread/INFO] [ProjectE]: Found 1 Recipes of Type class com.rwtema.extrautils.crafting.RecipeUnstableNuggetCrafting

[11:15:43] [server thread/INFO] [ProjectE]: Found 1 Recipes of Type class openblocks.common.recipe.GoldenEyeRechargeRecipe

[11:15:43] [server thread/INFO] [ProjectE]: Found 1 Recipes of Type class com.rwtema.extrautils.crafting.RecipeUnstableIngotCrafting

[11:15:43] [server thread/INFO] [ProjectE]: Found 1 Recipes of Type class powercrystals.minefactoryreloaded.setup.recipe.Vanilla$1

[11:15:43] [server thread/INFO] [ProjectE]: Found 1383 Recipes of Type class net.minecraftforge.oredict.ShapedOreRecipe

[11:15:43] [server thread/INFO] [ProjectE]: Found 1 Recipes of Type class net.minecraft.item.crafting.RecipesMapExtending

[11:15:43] [server thread/INFO] [ProjectE]: Found 15 Recipes of Type class cofh.thermalexpansion.util.crafting.RecipeStyle

[11:15:43] [server thread/INFO] [ProjectE]: Found 1 Recipes of Type class com.rwtema.extrautils.crafting.RecipeCustomOres

[11:15:43] [server thread/INFO] [ProjectE]: Found 43 Recipes of Type class tconstruct.library.crafting.ShapelessToolRecipe

[11:15:43] [server thread/INFO] [ProjectE]: Found 8 Recipes of Type class cofh.core.util.crafting.RecipeAugmentable

[11:15:43] [server thread/INFO] [ProjectE]: Found 1 Recipes of Type class openblocks.common.recipe.MapResizeRecipe

[11:15:43] [server thread/INFO] [ProjectE]: Found 309 Recipes of Type class net.minecraft.item.crafting.ShapelessRecipes

[11:15:43] [server thread/INFO] [ProjectE]: Found 1 Recipes of Type class com.rwtema.extrautils.crafting.RecipeGBEnchanting

[11:15:43] [server thread/INFO] [ProjectE]: Found 1139 Recipes of Type class net.minecraftforge.oredict.ShapelessOreRecipe

[11:15:43] [server thread/INFO] [ProjectE]: Collected Mappings from moze_intel.projecte.emc.mappers.CraftingMapper

[11:15:43] [server thread/INFO] [ProjectE]: Collected Mappings from moze_intel.projecte.emc.mappers.FluidMapper

[11:15:43] [server thread/INFO] [ProjectE]: Collected Mappings from moze_intel.projecte.emc.mappers.SmeltingMapper

[11:15:43] [server thread/INFO] [ProjectE]: Starting to generate Values:

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 1*minecraft:dirt(3:0) + 0*ProjectE:item.pe_arcana_ring(4811:0) => 1*minecraft:grass(2:0)" ingredient cost: 1/1 fixed value of result: 2/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:19) => 1*minecraft:iron_ingot(265:0)" ingredient cost: 252/1 fixed value of result: 256/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*[TConstruct:oreBerries(4626:0), TConstruct:materials(4629:19), ThermalFoundation:material(4493:8)] => 1*minecraft:iron_ingot(265:0)" ingredient cost: 252/1 fixed value of result: 256/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*minecraft:gold_nugget(371:0) => 1*minecraft:gold_ingot(266:0)" ingredient cost: 2043/1 fixed value of result: 2048/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:103) => 1*ThermalFoundation:material(4493:71)" ingredient cost: 1278/1 fixed value of result: 1280/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*[TConstruct:oreBerries(4626:2), TConstruct:materials(4629:20), ThermalFoundation:material(4493:96)] => 1*ThermalFoundation:material(4493:64)" ingredient cost: 126/1 fixed value of result: 128/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:104) => 1*ThermalFoundation:material(4493:72)" ingredient cost: 504/1 fixed value of result: 512/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:99) => 1*ThermalFoundation:material(4493:67)" ingredient cost: 504/1 fixed value of result: 512/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*[TConstruct:materials(4629:31), ThermalFoundation:material(4493:105)] => 1*ThermalFoundation:material(4493:73)" ingredient cost: 153/1 fixed value of result: 160/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:107) => 1*ThermalFoundation:material(4493:75)" ingredient cost: 504/1 fixed value of result: 512/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:108) => 1*ThermalFoundation:material(4493:76)" ingredient cost: 4095/1 fixed value of result: 4096/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:101) => 1*ThermalFoundation:material(4493:69)" ingredient cost: 4095/1 fixed value of result: 4096/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:98) => 1*ThermalFoundation:material(4493:66)" ingredient cost: 504/1 fixed value of result: 512/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:100) => 1*ThermalFoundation:material(4493:68)" ingredient cost: 1017/1 fixed value of result: 1024/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*[TConstruct:oreBerries(4626:3), TConstruct:materials(4629:21), ThermalFoundation:material(4493:97)] => 1*ThermalFoundation:material(4493:65)" ingredient cost: 252/1 fixed value of result: 256/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:106) => 1*ThermalFoundation:material(4493:74)" ingredient cost: 252/1 fixed value of result: 256/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:20) => 1*TConstruct:materials(4629:9)" ingredient cost: 126/1 fixed value of result: 128/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:21) => 1*TConstruct:materials(4629:10)" ingredient cost: 252/1 fixed value of result: 256/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:22) => 1*TConstruct:materials(4629:11)" ingredient cost: 126/1 fixed value of result: 128/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:24) => 1*TConstruct:materials(4629:14)" ingredient cost: 504/1 fixed value of result: 512/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:28) => 1*TConstruct:materials(4629:3)" ingredient cost: 1017/1 fixed value of result: 1024/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:29) => 1*TConstruct:materials(4629:4)" ingredient cost: 1017/1 fixed value of result: 1024/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:32) => 1*TConstruct:materials(4629:15)" ingredient cost: 1017/1 fixed value of result: 1024/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:30) => 1*TConstruct:materials(4629:5)" ingredient cost: 2043/1 fixed value of result: 2048/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:31) => 1*TConstruct:materials(4629:13)" ingredient cost: 153/1 fixed value of result: 160/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*EnderIO:itemMaterial(4468:4) => 1*EnderIO:itemAlloy(4890:2)" ingredient cost: 3519/1 fixed value of result: 3520/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*EnderIO:itemMaterial(4468:3) => 1*EnderIO:itemAlloy(4890:5)" ingredient cost: 1278/1 fixed value of result: 1280/1

[11:15:43] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 1*minecraft:dirt(3:0) + 0*ProjectE:item.pe_arcana_ring(4811:0) => 1*minecraft:grass(2:0)" ingredient cost: 1/1 fixed value of result: 2/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:19) => 1*minecraft:iron_ingot(265:0)" ingredient cost: 252/1 fixed value of result: 256/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*[TConstruct:oreBerries(4626:0), TConstruct:materials(4629:19), ThermalFoundation:material(4493:8)] => 1*minecraft:iron_ingot(265:0)" ingredient cost: 252/1 fixed value of result: 256/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*minecraft:gold_nugget(371:0) => 1*minecraft:gold_ingot(266:0)" ingredient cost: 2043/1 fixed value of result: 2048/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:103) => 1*ThermalFoundation:material(4493:71)" ingredient cost: 1278/1 fixed value of result: 1280/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*[TConstruct:oreBerries(4626:2), TConstruct:materials(4629:20), ThermalFoundation:material(4493:96)] => 1*ThermalFoundation:material(4493:64)" ingredient cost: 126/1 fixed value of result: 128/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:104) => 1*ThermalFoundation:material(4493:72)" ingredient cost: 504/1 fixed value of result: 512/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:99) => 1*ThermalFoundation:material(4493:67)" ingredient cost: 504/1 fixed value of result: 512/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*[TConstruct:materials(4629:31), ThermalFoundation:material(4493:105)] => 1*ThermalFoundation:material(4493:73)" ingredient cost: 153/1 fixed value of result: 160/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:107) => 1*ThermalFoundation:material(4493:75)" ingredient cost: 504/1 fixed value of result: 512/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:108) => 1*ThermalFoundation:material(4493:76)" ingredient cost: 4095/1 fixed value of result: 4096/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:101) => 1*ThermalFoundation:material(4493:69)" ingredient cost: 4095/1 fixed value of result: 4096/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:98) => 1*ThermalFoundation:material(4493:66)" ingredient cost: 504/1 fixed value of result: 512/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:100) => 1*ThermalFoundation:material(4493:68)" ingredient cost: 1017/1 fixed value of result: 1024/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*[TConstruct:oreBerries(4626:3), TConstruct:materials(4629:21), ThermalFoundation:material(4493:97)] => 1*ThermalFoundation:material(4493:65)" ingredient cost: 252/1 fixed value of result: 256/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:106) => 1*ThermalFoundation:material(4493:74)" ingredient cost: 252/1 fixed value of result: 256/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:20) => 1*TConstruct:materials(4629:9)" ingredient cost: 126/1 fixed value of result: 128/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:21) => 1*TConstruct:materials(4629:10)" ingredient cost: 252/1 fixed value of result: 256/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:22) => 1*TConstruct:materials(4629:11)" ingredient cost: 126/1 fixed value of result: 128/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:24) => 1*TConstruct:materials(4629:14)" ingredient cost: 504/1 fixed value of result: 512/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:28) => 1*TConstruct:materials(4629:3)" ingredient cost: 1017/1 fixed value of result: 1024/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:29) => 1*TConstruct:materials(4629:4)" ingredient cost: 1017/1 fixed value of result: 1024/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:32) => 1*TConstruct:materials(4629:15)" ingredient cost: 1017/1 fixed value of result: 1024/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:30) => 1*TConstruct:materials(4629:5)" ingredient cost: 2043/1 fixed value of result: 2048/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:31) => 1*TConstruct:materials(4629:13)" ingredient cost: 153/1 fixed value of result: 160/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*EnderIO:itemMaterial(4468:4) => 1*EnderIO:itemAlloy(4890:2)" ingredient cost: 3519/1 fixed value of result: 3520/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*EnderIO:itemMaterial(4468:3) => 1*EnderIO:itemAlloy(4890:5)" ingredient cost: 1278/1 fixed value of result: 1280/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 1*minecraft:dirt(3:0) + 0*ProjectE:item.pe_arcana_ring(4811:0) => 1*minecraft:grass(2:0)" ingredient cost: 1/1 fixed value of result: 2/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:19) => 1*minecraft:iron_ingot(265:0)" ingredient cost: 252/1 fixed value of result: 256/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*[TConstruct:oreBerries(4626:0), TConstruct:materials(4629:19), ThermalFoundation:material(4493:8)] => 1*minecraft:iron_ingot(265:0)" ingredient cost: 252/1 fixed value of result: 256/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*minecraft:gold_nugget(371:0) => 1*minecraft:gold_ingot(266:0)" ingredient cost: 2043/1 fixed value of result: 2048/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:103) => 1*ThermalFoundation:material(4493:71)" ingredient cost: 1278/1 fixed value of result: 1280/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*[TConstruct:oreBerries(4626:2), TConstruct:materials(4629:20), ThermalFoundation:material(4493:96)] => 1*ThermalFoundation:material(4493:64)" ingredient cost: 126/1 fixed value of result: 128/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:104) => 1*ThermalFoundation:material(4493:72)" ingredient cost: 504/1 fixed value of result: 512/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:99) => 1*ThermalFoundation:material(4493:67)" ingredient cost: 504/1 fixed value of result: 512/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*[TConstruct:materials(4629:31), ThermalFoundation:material(4493:105)] => 1*ThermalFoundation:material(4493:73)" ingredient cost: 153/1 fixed value of result: 160/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:107) => 1*ThermalFoundation:material(4493:75)" ingredient cost: 504/1 fixed value of result: 512/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:108) => 1*ThermalFoundation:material(4493:76)" ingredient cost: 4095/1 fixed value of result: 4096/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:101) => 1*ThermalFoundation:material(4493:69)" ingredient cost: 4095/1 fixed value of result: 4096/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:98) => 1*ThermalFoundation:material(4493:66)" ingredient cost: 504/1 fixed value of result: 512/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:100) => 1*ThermalFoundation:material(4493:68)" ingredient cost: 1017/1 fixed value of result: 1024/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*[TConstruct:oreBerries(4626:3), TConstruct:materials(4629:21), ThermalFoundation:material(4493:97)] => 1*ThermalFoundation:material(4493:65)" ingredient cost: 252/1 fixed value of result: 256/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*ThermalFoundation:material(4493:106) => 1*ThermalFoundation:material(4493:74)" ingredient cost: 252/1 fixed value of result: 256/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:20) => 1*TConstruct:materials(4629:9)" ingredient cost: 126/1 fixed value of result: 128/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:21) => 1*TConstruct:materials(4629:10)" ingredient cost: 252/1 fixed value of result: 256/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:22) => 1*TConstruct:materials(4629:11)" ingredient cost: 126/1 fixed value of result: 128/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:24) => 1*TConstruct:materials(4629:14)" ingredient cost: 504/1 fixed value of result: 512/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:28) => 1*TConstruct:materials(4629:3)" ingredient cost: 1017/1 fixed value of result: 1024/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:29) => 1*TConstruct:materials(4629:4)" ingredient cost: 1017/1 fixed value of result: 1024/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:32) => 1*TConstruct:materials(4629:15)" ingredient cost: 1017/1 fixed value of result: 1024/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:30) => 1*TConstruct:materials(4629:5)" ingredient cost: 2043/1 fixed value of result: 2048/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*TConstruct:materials(4629:31) => 1*TConstruct:materials(4629:13)" ingredient cost: 153/1 fixed value of result: 160/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*EnderIO:itemMaterial(4468:4) => 1*EnderIO:itemAlloy(4890:2)" ingredient cost: 3519/1 fixed value of result: 3520/1

[11:15:44] [server thread/WARN] [ProjectE]: EMC Exploit: "0/1 + 9*EnderIO:itemMaterial(4468:3) => 1*EnderIO:itemAlloy(4890:5)" ingredient cost: 1278/1 fixed value of result: 1280/1

[11:15:44] [server thread/INFO] [ProjectE]: Generated Values...

[11:15:44] [server thread/INFO] [ProjectE]: Registered 2418 EMC values. (took 1096 ms)

[11:15:44] [server thread/INFO] [sTDOUT]: [CoroUtil.forge.CoroAI:initTry:91]: CoroUtil being reinitialized

[11:15:45] [server thread/INFO] [sTDOUT]: [CoroUtil.pathfinding.PFQueue:<init>:138]: Initializing PFQueue

[11:16:22] [user Authenticator #1/INFO] [net.minecraft.server.network.NetHandlerLoginServer]: UUID of player Intektor is c5641ccb-3d6c-4dca-be5e-02c1889e1858

[11:16:22] [Netty IO #1/INFO] [FML]: Client protocol version 2

[11:16:22] [Netty IO #1/INFO] [FML]: Client attempting to join with 58 mods : [email protected],MineFactoryReloaded|[email protected],[email protected],[email protected],BuildCraft|[email protected],BuildCraft|[email protected],[email protected],MineFactoryReloaded|[email protected],[email protected],MineFactoryReloaded|[email protected],[email protected],[email protected],BuildCraft|[email protected],MineFactoryReloaded|[email protected],MineFactoryReloaded|[email protected],MineFactoryReloaded|[email protected],[email protected],MineFactoryReloaded|[email protected],[email protected],[email protected],BuildCraft|[email protected],[email protected],MineFactoryReloaded|[email protected],MineFactoryReloaded|[email protected],[email protected],MineFactoryReloaded|[email protected],[email protected],[email protected],MineFactoryReloaded|[email protected],MineFactoryReloaded|[email protected],MineFactoryReloaded|[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],MineFactoryReloaded|[email protected],[email protected],[email protected],[email protected],MineFactoryReloaded|[email protected],BuildCraft|[email protected],MineFactoryReloaded|[email protected],MineFactoryReloaded|[email protected],[email protected],[email protected],BuildCraft|[email protected],[email protected],<CoFH ASM>@000,[email protected] Bitches 1.7.10 Edition,[email protected],BuildCraft|[email protected],MineFactoryReloaded|[email protected]

[11:16:22] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT

[11:16:23] [server thread/INFO] [FML]: [server thread] Server side modded connection established

[11:16:23] [server thread/INFO] [net.minecraft.server.management.ServerConfigurationManager]: Intektor[/127.0.0.1:56508] logged in with entity id 1887 at (108.20716809904435, 72.0, 258.81588719201994)

[11:16:23] [server thread/INFO] [net.minecraft.server.MinecraftServer]: Intektor joined the game

[11:16:23] [server thread/INFO] [ProjectE]: Sent EMC data packets to: Intektor

[11:16:23] [server thread/INFO] [Waila]: Player EntityPlayerMP['Intektor'/1887, l='world', x=108,21, y=72,00, z=258,82] connected. Sending ping

[11:17:03] [server thread/INFO] [net.minecraft.server.MinecraftServer]: [intektor: Given 24923424 levels to Intektor]

[11:17:06] [server thread/WARN] [net.minecraft.network.NetworkSystem]: Failed to handle packet for /127.0.0.1:56508

java.lang.IndexOutOfBoundsException: Index: 47, Size: 45

at java.util.ArrayList.rangeCheck(Unknown Source) ~[?:1.8.0_51]

at java.util.ArrayList.get(Unknown Source) ~[?:1.8.0_51]

at net.minecraft.inventory.Container.func_75144_a(SourceFile:206) ~[zs.class:?]

at net.minecraft.network.NetHandlerPlayServer.func_147351_a(NetHandlerPlayServer.java:883) ~[nh.class:?]

at net.minecraft.network.play.client.C0EPacketClickWindow.func_148833_a(SourceFile:32) ~[ix.class:?]

at net.minecraft.network.play.client.C0EPacketClickWindow.func_148833_a(SourceFile:10) ~[ix.class:?]

at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:212) ~[ej.class:?]

at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:165) [nc.class:?]

at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:659) [MinecraftServer.class:?]

at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:334) [lt.class:?]

at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:547) [MinecraftServer.class:?]

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:427) [MinecraftServer.class:?]

at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:685) [li.class:?]

[11:17:06] [server thread/INFO] [net.minecraft.network.NetHandlerPlayServer]: Intektor lost connection: TextComponent{text='Internal server error', siblings=[], style=Style{hasParent=false, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null}}

[11:17:06] [server thread/INFO] [net.minecraft.server.MinecraftServer]: Intektor left the game

[11:17:06] [server thread/INFO] [ProjectE]: Removing Intektor from scheduled checklists: Player disconnected.

 

 

Creator of Extra Shoes

 

Watch out, I'm total jerk, and I'll troll anybody if it feels like its necessary. Pls report me then

Link to comment
Share on other sites

For gods sake use spoiler tags

And show the code for ur slot

 

 

I'm sorry

 

package de.intektor.modarmor.advanced;

import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;

public class AdvancedSlot extends Slot{

private int xNormal;
private int yNormal;
public AdvancedSlot(IInventory inventoryIn, int index, int xPosition, int yPosition) {
	super(inventoryIn, index, xPosition, yPosition);
	xNormal = xPosition;
	yNormal = yPosition;
}

public int getNormalX(){
	return xNormal;
}

public int getNormalY(){
	return yNormal;
}

public void setNormalX(int x){
	xNormal = x;
}

public void setNormalY(int y){
	yNormal = y;
}

public void shootToMoon(){
	this.xDisplayPosition = 100000;
	this.yDisplayPosition = 100000;
}

public void setNormal(){
	this.xDisplayPosition = xNormal;
	this.yDisplayPosition = yNormal;
}
}

Creator of Extra Shoes

 

Watch out, I'm total jerk, and I'll troll anybody if it feels like its necessary. Pls report me then

Link to comment
Share on other sites

Its basicly the same

 

package de.intektor.modarmor.advanced;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.SlotFurnace;

public class AdvancedResultSlot extends SlotFurnace{

private int xNormal;
private int yNormal;

public AdvancedResultSlot(EntityPlayer player, IInventory p_i45793_2_, int slotIndex, int xPosition, int yPosition) {
	super(player, p_i45793_2_, slotIndex, xPosition, yPosition);
	xNormal = xPosition;
	yNormal = yPosition;
}

public int getNormalX(){
	return xNormal;
}

public int getNormalY(){
	return yNormal;
}

public void setNormalX(int x){
	xNormal = x;
}

public void setNormalY(int y){
	yNormal = y;
}

public void shootToMoon(){
	this.xDisplayPosition = 100000;
	this.yDisplayPosition = 100000;
}

public void setNormal(){
	this.xDisplayPosition = xNormal;
	this.yDisplayPosition = yNormal;
}
}

Creator of Extra Shoes

 

Watch out, I'm total jerk, and I'll troll anybody if it feels like its necessary. Pls report me then

Link to comment
Share on other sites

So I figured now out how this is happening, not why, when there are another mods installed, it seems like it doesn't sychronize the slots with the server anymnore, why I know this? In fact I installed those mods in my developement mods folder and debuged, but I think, some mod has bad code, ore my mod is bad, so please if you have any Idea why my mod stops synchro, please tell

Creator of Extra Shoes

 

Watch out, I'm total jerk, and I'll troll anybody if it feels like its necessary. Pls report me then

Link to comment
Share on other sites

I fixed that crashing somehow, I don't know, but It doesn't synchro the slots, I mean its working fine when the mod is the only mod, but here, look:

 

@Override
public void updateEntity() {
	System.out.println(slots[0]);
//		if(theUser != null){
//			finishedNBT.setBoolean(theUser.getDisplayName(), true);
//		}
//
//		Side side = FMLCommonHandler.instance().getEffectiveSide();
//		if(side == Side.CLIENT){
//			if(System.currentTimeMillis() - 750 >= switchingTimer){
//				if(switcherNumber == 3){
//					switcherNumber = 0;
//				}else{
//					switcherNumber++;
//				}
//				switchingTimer = System.currentTimeMillis();
//				if(isRecipeinModifierFieldShown){
//					putRecipeinModifierField(currentShownRecipeID);
//				}
//			}
//			if(synchronize){
//				if(areItemStackSaved){
//					loadSaveBack();
//					areItemStackSaved = false;
//				}
//				if(theUser != null){
//					handleResearchState();
//				}
//				if(theUser != null){
//					ItemStack[] sl = new ItemStack[10];
//					for(int i = 0; i < sl.length; i++){
//						sl[i] = slots[i+3];
//						slots[12] = rh2.update(sl, theUser);
//						if(slots[12] != null){
//							if(slots[12].getItem() instanceof ModArmor){
//								if(!slots[12].hasTagCompound()){
//									slots[12].setTagCompound(new NBTTagCompound());
//								}
//								slots[12].getTagCompound().setBoolean(theUser.getDisplayName(), true);
//								slots[12].getTagCompound().setBoolean("FullNow", true);
//							}
//						}
//					}
//					slots[2] = null;
//					if(theUser != null){
//						handleModificationSystem();
//					}
//				}
//			}
//		}
//		if(side == Side.SERVER){
//			if(theUser != null){
//				int research = PlayerProperties.get(theUser).getResearchState();
//				handleResearchState();
//			}
//			if(theUser != null){
//				ItemStack[] sl = new ItemStack[10];
//				for(int i = 0; i < sl.length; i++){
//					sl[i] = slots[i+3];
//				}
//				slots[12] = rh2.update(sl, theUser);
//				if(slots[12] != null){
//					if(slots[12].getItem() instanceof ModArmor){
//						if(!slots[12].hasTagCompound()){
//							slots[12].setTagCompound(new NBTTagCompound());
//						}
//						slots[12].getTagCompound().setBoolean(theUser.getDisplayName(), true);
//						slots[12].getTagCompound().setBoolean("FullNow", true);
//					}
//				}
//			}
//			slots[2] = null;
//			if(theUser != null){
//				handleModificationSystem();
//			}
//		}
}

 

Client:

[15:07:58] [Client thread/INFO] [sTDOUT]: [de.intektor.modarmor.tileentity.TileEntityArmorModifier:updateEntity:87]: 64xtile.stonebrick@0

 

Server:

[15:08:38] [server thread/INFO] [sTDOUT]: [de.intektor.modarmor.tileentity.TileEntityArmorModifier:updateEntity:87]: null

 

 

 

Creator of Extra Shoes

 

Watch out, I'm total jerk, and I'll troll anybody if it feels like its necessary. Pls report me then

Link to comment
Share on other sites

I have no idea what or why you are doing all that.

 

For a container and Gui look at the standard tutorials

Need an inventory

Need a container that utilizes this inventory and the player inventory to build

Need a gui for the above.

Need a guihandler

 

What entity are you updating?  Is this inventory in a custom entity you made or a tilentity?  If its a customentity, you will need a packet to update the client.  If its a tile, then setblockforupdate works fine.

Long time Bukkit & Forge Programmer

Happy to try and help

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Add crash-reports with sites like https://mclo.gs/ Make a test without mowziesmobs
    • playing around then the game crashes while loading a chunk, it isnt the first time heres the crash log ---- Minecraft Crash Report ---- // You're mean. Time: 2024-10-11 11:27:40 Description: Exception generating new chunk java.lang.IllegalStateException: Missing key in ResourceKey[minecraft:root / minecraft:worldgen/structure_set]: ResourceKey[minecraft:worldgen/structure_set / minecraft:village]     at net.minecraft.core.Registry.lambda$getHolderOrThrow$69(Registry.java:617) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at java.util.Optional.orElseThrow(Optional.java:403) ~[?:?] {re:mixin}     at net.minecraft.core.Registry.m_206081_(Registry.java:616) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at com.bobmowzie.mowziesmobs.server.world.feature.structure.MowzieStructure.checkLocation(MowzieStructure.java:113) ~[mowziesmobs-1.6.3.jar%23377!/:1.6.3] {re:classloading}     at com.bobmowzie.mowziesmobs.server.world.feature.structure.MowzieStructure.checkLocation(MowzieStructure.java:69) ~[mowziesmobs-1.6.3.jar%23377!/:1.6.3] {re:classloading}     at com.bobmowzie.mowziesmobs.server.world.feature.structure.MowzieStructure.m_214086_(MowzieStructure.java:56) ~[mowziesmobs-1.6.3.jar%23377!/:1.6.3] {re:classloading}     at net.minecraft.world.level.levelgen.structure.Structure.m_226596_(Structure.java:84) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,xf:fml:forge:structure,re:classloading,xf:fml:forge:structure,pl:mixin:APP:structure_gel.mixins.json:StructureMixin,pl:mixin:A}     at net.minecraft.world.level.chunk.ChunkGenerator.m_223104_(ChunkGenerator.java:638) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:citadel.mixins.json:ChunkGeneratorMixin,pl:mixin:APP:structure_gel.mixins.json:ChunkGeneratorMixin,pl:mixin:APP:the_bumblezone.mixins.json:world.ChunkGeneratorAccessor,pl:mixin:APP:dimdoors-common.mixins.json:accessor.ChunkGeneratorAccessor,pl:mixin:APP:valkyrienskies-common.mixins.json:world.level.chunk.MixinChunkGenerator,pl:mixin:A}     at net.minecraft.world.level.chunk.ChunkGenerator.m_223066_(ChunkGenerator.java:591) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:citadel.mixins.json:ChunkGeneratorMixin,pl:mixin:APP:structure_gel.mixins.json:ChunkGeneratorMixin,pl:mixin:APP:the_bumblezone.mixins.json:world.ChunkGeneratorAccessor,pl:mixin:APP:dimdoors-common.mixins.json:accessor.ChunkGeneratorAccessor,pl:mixin:APP:valkyrienskies-common.mixins.json:world.level.chunk.MixinChunkGenerator,pl:mixin:A}     at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:183) ~[?:?] {}     at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?] {}     at java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) ~[?:?] {}     at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] {}     at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] {}     at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?] {}     at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?] {}     at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] {}     at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?] {}     at net.minecraft.world.level.chunk.ChunkGenerator.m_223164_(ChunkGenerator.java:573) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:citadel.mixins.json:ChunkGeneratorMixin,pl:mixin:APP:structure_gel.mixins.json:ChunkGeneratorMixin,pl:mixin:APP:the_bumblezone.mixins.json:world.ChunkGeneratorAccessor,pl:mixin:APP:dimdoors-common.mixins.json:accessor.ChunkGeneratorAccessor,pl:mixin:APP:valkyrienskies-common.mixins.json:world.level.chunk.MixinChunkGenerator,pl:mixin:A}     at net.minecraft.world.level.chunk.ChunkStatus.m_223360_(ChunkStatus.java:59) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.world.level.chunk.ChunkStatus.m_223279_(ChunkStatus.java:292) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.server.level.ChunkMap.lambda$scheduleChunkGeneration$25(ChunkMap.java:621) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:dimdoors-common.mixins.json:ThreadedAnvilChunkStorageMixin,pl:mixin:APP:valkyrienskies-common.mixins.json:accessors.server.level.ChunkMapAccessor,pl:mixin:APP:valkyrienskies-common.mixins.json:feature.tick_ship_chunks.MixinChunkMap,pl:mixin:APP:valkyrienskies-common.mixins.json:server.world.MixinChunkMap,pl:mixin:APP:ars_nouveau.mixins.json:camera.ChunkMapMixin,pl:mixin:A}     at com.mojang.datafixers.util.Either$Left.map(Either.java:38) ~[datafixerupper-5.0.28.jar%23126!/:?] {}     at net.minecraft.server.level.ChunkMap.lambda$scheduleChunkGeneration$27(ChunkMap.java:619) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:dimdoors-common.mixins.json:ThreadedAnvilChunkStorageMixin,pl:mixin:APP:valkyrienskies-common.mixins.json:accessors.server.level.ChunkMapAccessor,pl:mixin:APP:valkyrienskies-common.mixins.json:feature.tick_ship_chunks.MixinChunkMap,pl:mixin:APP:valkyrienskies-common.mixins.json:server.world.MixinChunkMap,pl:mixin:APP:ars_nouveau.mixins.json:camera.ChunkMapMixin,pl:mixin:A}     at java.util.concurrent.CompletableFuture$UniCompose.tryFire(CompletableFuture.java:1150) ~[?:?] {}     at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {}     at net.minecraft.server.level.ChunkTaskPriorityQueueSorter.m_143188_(ChunkTaskPriorityQueueSorter.java:62) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:classloading}     at net.minecraft.util.thread.ProcessorMailbox.m_18759_(ProcessorMailbox.java:91) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:classloading}     at net.minecraft.util.thread.ProcessorMailbox.m_18747_(ProcessorMailbox.java:146) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:classloading}     at net.minecraft.util.thread.ProcessorMailbox.run(ProcessorMailbox.java:102) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:classloading}     at java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1395) ~[?:?] {}     at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {}     at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {}     at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {re:computing_frames}     at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {re:computing_frames}     at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Server thread Suspected Mod:      Mowzie's Mobs (mowziesmobs), Version: 1.6.3         Issue tracker URL: https://github.com/BobMowzie/MowziesMobs/issues         at TRANSFORMER/[email protected]/com.bobmowzie.mowziesmobs.server.world.feature.structure.MowzieStructure.checkLocation(MowzieStructure.java:113) Stacktrace:     at net.minecraft.core.Registry.lambda$getHolderOrThrow$69(Registry.java:617) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at java.util.Optional.orElseThrow(Optional.java:403) ~[?:?] {re:mixin}     at net.minecraft.core.Registry.m_206081_(Registry.java:616) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at com.bobmowzie.mowziesmobs.server.world.feature.structure.MowzieStructure.checkLocation(MowzieStructure.java:113) ~[mowziesmobs-1.6.3.jar%23377!/:1.6.3] {re:classloading}     at com.bobmowzie.mowziesmobs.server.world.feature.structure.MowzieStructure.checkLocation(MowzieStructure.java:69) ~[mowziesmobs-1.6.3.jar%23377!/:1.6.3] {re:classloading}     at com.bobmowzie.mowziesmobs.server.world.feature.structure.MowzieStructure.m_214086_(MowzieStructure.java:56) ~[mowziesmobs-1.6.3.jar%23377!/:1.6.3] {re:classloading}     at net.minecraft.world.level.levelgen.structure.Structure.m_226596_(Structure.java:84) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,xf:fml:forge:structure,re:classloading,xf:fml:forge:structure,pl:mixin:APP:structure_gel.mixins.json:StructureMixin,pl:mixin:A}     at net.minecraft.world.level.chunk.ChunkGenerator.m_223104_(ChunkGenerator.java:638) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:citadel.mixins.json:ChunkGeneratorMixin,pl:mixin:APP:structure_gel.mixins.json:ChunkGeneratorMixin,pl:mixin:APP:the_bumblezone.mixins.json:world.ChunkGeneratorAccessor,pl:mixin:APP:dimdoors-common.mixins.json:accessor.ChunkGeneratorAccessor,pl:mixin:APP:valkyrienskies-common.mixins.json:world.level.chunk.MixinChunkGenerator,pl:mixin:A}     at net.minecraft.world.level.chunk.ChunkGenerator.m_223066_(ChunkGenerator.java:591) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:citadel.mixins.json:ChunkGeneratorMixin,pl:mixin:APP:structure_gel.mixins.json:ChunkGeneratorMixin,pl:mixin:APP:the_bumblezone.mixins.json:world.ChunkGeneratorAccessor,pl:mixin:APP:dimdoors-common.mixins.json:accessor.ChunkGeneratorAccessor,pl:mixin:APP:valkyrienskies-common.mixins.json:world.level.chunk.MixinChunkGenerator,pl:mixin:A}     at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:183) ~[?:?] {}     at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?] {}     at java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) ~[?:?] {}     at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] {}     at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] {}     at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?] {}     at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?] {}     at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] {}     at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?] {}     at net.minecraft.world.level.chunk.ChunkGenerator.m_223164_(ChunkGenerator.java:573) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:citadel.mixins.json:ChunkGeneratorMixin,pl:mixin:APP:structure_gel.mixins.json:ChunkGeneratorMixin,pl:mixin:APP:the_bumblezone.mixins.json:world.ChunkGeneratorAccessor,pl:mixin:APP:dimdoors-common.mixins.json:accessor.ChunkGeneratorAccessor,pl:mixin:APP:valkyrienskies-common.mixins.json:world.level.chunk.MixinChunkGenerator,pl:mixin:A}     at net.minecraft.world.level.chunk.ChunkStatus.m_223360_(ChunkStatus.java:59) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.world.level.chunk.ChunkStatus.m_223279_(ChunkStatus.java:292) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.server.level.ChunkMap.lambda$scheduleChunkGeneration$25(ChunkMap.java:621) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:dimdoors-common.mixins.json:ThreadedAnvilChunkStorageMixin,pl:mixin:APP:valkyrienskies-common.mixins.json:accessors.server.level.ChunkMapAccessor,pl:mixin:APP:valkyrienskies-common.mixins.json:feature.tick_ship_chunks.MixinChunkMap,pl:mixin:APP:valkyrienskies-common.mixins.json:server.world.MixinChunkMap,pl:mixin:APP:ars_nouveau.mixins.json:camera.ChunkMapMixin,pl:mixin:A}     at com.mojang.datafixers.util.Either$Left.map(Either.java:38) ~[datafixerupper-5.0.28.jar%23126!/:?] {}     at net.minecraft.server.level.ChunkMap.lambda$scheduleChunkGeneration$27(ChunkMap.java:619) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:dimdoors-common.mixins.json:ThreadedAnvilChunkStorageMixin,pl:mixin:APP:valkyrienskies-common.mixins.json:accessors.server.level.ChunkMapAccessor,pl:mixin:APP:valkyrienskies-common.mixins.json:feature.tick_ship_chunks.MixinChunkMap,pl:mixin:APP:valkyrienskies-common.mixins.json:server.world.MixinChunkMap,pl:mixin:APP:ars_nouveau.mixins.json:camera.ChunkMapMixin,pl:mixin:A}     at java.util.concurrent.CompletableFuture$UniCompose.tryFire(CompletableFuture.java:1150) ~[?:?] {}     at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {}     at net.minecraft.server.level.ChunkTaskPriorityQueueSorter.m_143188_(ChunkTaskPriorityQueueSorter.java:62) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:classloading}     at net.minecraft.util.thread.ProcessorMailbox.m_18759_(ProcessorMailbox.java:91) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:classloading}     at net.minecraft.util.thread.ProcessorMailbox.m_18747_(ProcessorMailbox.java:146) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:classloading}     at net.minecraft.util.thread.ProcessorMailbox.run(ProcessorMailbox.java:102) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:classloading} -- Chunk to be generated -- Details:     Location: -141,-144     Position hash: -614180323469     Generator: net.minecraft.world.level.levelgen.NoiseBasedChunkGenerator@7030c35e Stacktrace:     at net.minecraft.server.level.ChunkMap.lambda$scheduleChunkGeneration$25(ChunkMap.java:621) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:dimdoors-common.mixins.json:ThreadedAnvilChunkStorageMixin,pl:mixin:APP:valkyrienskies-common.mixins.json:accessors.server.level.ChunkMapAccessor,pl:mixin:APP:valkyrienskies-common.mixins.json:feature.tick_ship_chunks.MixinChunkMap,pl:mixin:APP:valkyrienskies-common.mixins.json:server.world.MixinChunkMap,pl:mixin:APP:ars_nouveau.mixins.json:camera.ChunkMapMixin,pl:mixin:A}     at com.mojang.datafixers.util.Either$Left.map(Either.java:38) ~[datafixerupper-5.0.28.jar%23126!/:?] {}     at net.minecraft.server.level.ChunkMap.lambda$scheduleChunkGeneration$27(ChunkMap.java:619) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:dimdoors-common.mixins.json:ThreadedAnvilChunkStorageMixin,pl:mixin:APP:valkyrienskies-common.mixins.json:accessors.server.level.ChunkMapAccessor,pl:mixin:APP:valkyrienskies-common.mixins.json:feature.tick_ship_chunks.MixinChunkMap,pl:mixin:APP:valkyrienskies-common.mixins.json:server.world.MixinChunkMap,pl:mixin:APP:ars_nouveau.mixins.json:camera.ChunkMapMixin,pl:mixin:A}     at java.util.concurrent.CompletableFuture$UniCompose.tryFire(CompletableFuture.java:1150) ~[?:?] {}     at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {}     at net.minecraft.server.level.ChunkTaskPriorityQueueSorter.m_143188_(ChunkTaskPriorityQueueSorter.java:62) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:classloading}     at net.minecraft.util.thread.ProcessorMailbox.m_18759_(ProcessorMailbox.java:91) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:classloading}     at net.minecraft.util.thread.ProcessorMailbox.m_18747_(ProcessorMailbox.java:146) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:classloading}     at net.minecraft.util.thread.ProcessorMailbox.run(ProcessorMailbox.java:102) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:classloading}     at java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1395) ~[?:?] {}     at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {}     at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {}     at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {re:computing_frames}     at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {re:computing_frames}     at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {} -- Affected level -- Details:     All players: 1 total; [ServerPlayer['Simsonic321'/584, l='ServerLevel[New World]', x=-1956.21, y=157.02, z=-1987.36]]     Chunk stats: 4035     Level dimension: minecraft:overworld     Level spawn location: World: (80,82,112), Section: (at 0,2,0 in 5,5,7; chunk contains blocks 80,-64,112 to 95,319,127), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511)     Level time: 8391 game time, 8391 day time     Level name: New World     Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: true     Level weather: Rain time: 60834 (now: false), thunder time: 137839 (now: false)     Known server brands: forge     Level was modded: true     Level storage version: 0x04ABD - Anvil Stacktrace:     at net.minecraft.server.MinecraftServer.m_5703_(MinecraftServer.java:869) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_5705_(MinecraftServer.java:806) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at net.minecraft.client.server.IntegratedServer.m_5705_(IntegratedServer.java:84) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:forgematica.mixins.json:MixinIntegratedServer,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:654) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_206580_(MinecraftServer.java:244) ~[client-1.19.2-20220805.130853-srg.jar%23437!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at java.lang.Thread.run(Thread.java:833) [?:?] {re:mixin} -- System Details -- Details:     Minecraft Version: 1.19.2     Minecraft Version ID: 1.19.2     Operating System: Windows 10 (amd64) version 10.0     Java Version: 17.0.8, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 3960102560 bytes (3776 MiB) / 9529458688 bytes (9088 MiB) up to 15032385536 bytes (14336 MiB)     CPUs: 8     Processor Vendor: GenuineIntel     Processor Name: Intel(R) Core(TM) i7-9700K CPU @ 3.60GHz     Identifier: Intel64 Family 6 Model 158 Stepping 12     Microarchitecture: Coffee Lake     Frequency (GHz): 3.60     Number of physical packages: 1     Number of physical CPUs: 8     Number of logical CPUs: 8     Graphics card #0 name: NVIDIA GeForce RTX 2080 Ti     Graphics card #0 vendor: NVIDIA (0x10de)     Graphics card #0 VRAM (MB): 4095.00     Graphics card #0 deviceId: 0x1e07     Graphics card #0 versionInfo: DriverVersion=32.0.15.6590     Memory slot #0 capacity (MB): 16384.00     Memory slot #0 clockSpeed (GHz): 2.13     Memory slot #0 type: DDR4     Memory slot #1 capacity (MB): 16384.00     Memory slot #1 clockSpeed (GHz): 2.13     Memory slot #1 type: DDR4     Virtual memory max (MB): 37683.42     Virtual memory used (MB): 26950.73     Swap memory total (MB): 5000.00     Swap memory used (MB): 150.26     JVM Flags: 9 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx14G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M     Loaded Shaderpack: ComplementaryUnbound_r5.3.zip         Profile: HIGH (+0 options changed by user)     Server Running: true     Player Count: 1 / 8; [ServerPlayer['Simsonic321'/584, l='ServerLevel[New World]', x=-1956.21, y=157.02, z=-1987.36]]     Data Packs: vanilla, mod:hexerei (incompatible), mod:ancient_manuscripts, mod:tropicraft (incompatible), mod:blue_skies, mod:divine_weaponry, mod:playeranimator (incompatible), mod:aether (incompatible), mod:incendium, mod:aquaculturedelight, mod:sophisticatedcore (incompatible), mod:placebo (incompatible), mod:citadel, mod:alexsmobs (incompatible), mod:yungsapi, mod:pyromancer, mod:forgematica (incompatible), mod:mixinextras (incompatible), mod:sophisticatedbackpacks (incompatible), mod:guardvillagers (incompatible), mod:apotheosis (incompatible), mod:balm (incompatible), mod:immersive_armors (incompatible), mod:cloth_config (incompatible), mod:ctov (incompatible), mod:twilightforest (incompatible), mod:embeddium (incompatible), mod:undergardendelight, mod:structure_gel, mod:farmersdelight, mod:ends_delight, mod:torchmaster (incompatible), mod:handcrafted, mod:mafglib (incompatible), mod:yungsbridges, mod:medievalmusic (incompatible), mod:resourcefulconfig, mod:cnb, mod:curios, mod:patchouli (incompatible), mod:oculus, mod:gobber2, mod:enigmaticlegacy (incompatible), mod:resourcefullib (incompatible), mod:theabyss, mod:spirit (incompatible), mod:cumulus_menus, mod:twilightdelight, mod:deeperdarker (incompatible), mod:cfm (incompatible), mod:architectury (incompatible), mod:doapi (incompatible), mod:vinery, mod:voidscape (incompatible), mod:undergarden, mod:biomancy (incompatible), mod:nitrogen_internals, mod:the_bumblezone, mod:runecraft, mod:l2library (incompatible), mod:deep_aether (incompatible), mod:t_and_t, mod:quarkdelight, mod:mcwlights, mod:smartbrainlib, mod:quarkoddities (incompatible), mod:mowziesmobs (incompatible), mod:geckolib3 (incompatible), mod:realmrpg_demons, mod:jei (incompatible), mod:visualworkbench (incompatible), mod:graveyard (incompatible), mod:caelus (incompatible), mod:obscure_api, mod:waystones (incompatible), mod:journeymap (incompatible), mod:comforts, mod:naturescompass (incompatible), mod:enigmaticlegacydelight, mod:sereneseasons, mod:decorative_blocks (incompatible), mod:guideapi_vp (incompatible), mod:starlight (incompatible), mod:explorerscompass (incompatible), mod:davespotioneering (incompatible), mod:medieval_paintings, mod:ars_nouveau, mod:reactive (incompatible), mod:aetherdelight, mod:forge, mod:tarotcards (incompatible), mod:friendsandfoes (incompatible), mod:antiqueatlas (incompatible), mod:dungeons_arise, mod:eidolon (incompatible), mod:sons_of_sins, mod:simplyswords (incompatible), mod:terrablender, mod:biomesoplenty, mod:moonlight (incompatible), mod:endermanoverhaul (incompatible), mod:eccentrictome, mod:psi (incompatible), mod:jade (incompatible), mod:creativecore, mod:spectrelib (incompatible), mod:nethersdelight, mod:aeroblender (incompatible), mod:totemic, mod:kotlinforforge (incompatible), mod:dimdungeons, mod:brewinandchewin (incompatible), mod:whisperwoods (incompatible), mod:farmersrespite (incompatible), mod:flywheel (incompatible), mod:create, mod:reliquary (incompatible), mod:gobberdelight, mod:malum (incompatible), mod:autoreglib (incompatible), mod:quark (incompatible), mod:supplementaries (incompatible), mod:nullscape, mod:ars_elemental, mod:irons_spellbooks (incompatible), mod:miners_delight (incompatible), mod:ars_instrumentum (incompatible), mod:dimdoors (incompatible), mod:modonomicon, mod:wrd, mod:oceansdelight, mod:mvs (incompatible), mod:creeperoverhaul (incompatible), mod:appleskin, mod:alexsdelight, mod:vampirism (incompatible), mod:werewolves (incompatible), mod:ferritecore (incompatible), mod:occultism, mod:ars_ocultas (incompatible), mod:puzzleslib (incompatible), mod:aquaculture, mod:valkyrienskies (incompatible), mod:vs_eureka (incompatible), mod:lodestone (incompatible), mod:crabbersdelight (incompatible), mod:valhelsia_core (incompatible), mod:forbidden_arcanus (incompatible), mod:magipsi (incompatible), mod:undead_unleashed, mod:aquamirae, Supplementaries Generated Pack, builtin/classic, builtin/default, builtin/magipsi_overrides (incompatible), t_and_t_waystones_patch_1.19.2.zip     World Generation: Stable     Type: Integrated Server (map_client.txt)     Is Modded: Definitely; Client brand changed to 'forge'; Server brand changed to 'forge'     Launched Version: 1.19.2-forge-43.4.4     ModLauncher: 10.0.8+10.0.8+main.0ef7e830     ModLauncher launch target: forgeclient     ModLauncher naming: srg     ModLauncher services:          mixin-0.8.5.jar mixin PLUGINSERVICE          eventbus-6.0.3.jar eventbus PLUGINSERVICE          fmlloader-1.19.2-43.4.4.jar slf4jfixer PLUGINSERVICE          fmlloader-1.19.2-43.4.4.jar object_holder_definalize PLUGINSERVICE          fmlloader-1.19.2-43.4.4.jar runtime_enum_extender PLUGINSERVICE          fmlloader-1.19.2-43.4.4.jar capability_token_subclass PLUGINSERVICE          accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE          fmlloader-1.19.2-43.4.4.jar runtimedistcleaner PLUGINSERVICE          modlauncher-10.0.8.jar mixin TRANSFORMATIONSERVICE          modlauncher-10.0.8.jar fml TRANSFORMATIONSERVICE      FML Language Providers:          [email protected]         javafml@null         [email protected]         lowcodefml@null     Mod List:          hexerei-0.3.3.1.jar                               |Hexerei                       |hexerei                       |0.3.3.1             |DONE      |Manifest: NOSIGNATURE         ancient_manuscripts-1.1.6-1.19.jar                |Ancient Manuscripts           |ancient_manuscripts           |1.1.6-1.19          |DONE      |Manifest: NOSIGNATURE         Tropicraft-9.5.2.jar                              |Tropicraft                    |tropicraft                    |9.5.2               |DONE      |Manifest: NOSIGNATURE         blue_skies-1.19.2-1.3.20.jar                      |Blue Skies                    |blue_skies                    |1.3.20              |DONE      |Manifest: NOSIGNATURE         Divine Weaponry v1.4 1.19.2.jar                   |Divine Weaponry               |divine_weaponry               |1.3.0               |DONE      |Manifest: NOSIGNATURE         player-animation-lib-forge-1.0.2.jar              |Player Animator               |playeranimator                |1.0.2               |DONE      |Manifest: NOSIGNATURE         aether-1.19.2-1.5.0-forge.jar                     |The Aether                    |aether                        |0.0NONE             |DONE      |Manifest: NOSIGNATURE         Incendium_1.19.3_v5.1.6.jar                       |Incendium                     |incendium                     |5.1.6               |DONE      |Manifest: NOSIGNATURE         aquaculture_delight_1.0.0_forge_1.19.2.jar        |Aquaculture Delight           |aquaculturedelight            |1.0.0               |DONE      |Manifest: NOSIGNATURE         sophisticatedcore-1.19.2-0.6.4.605.jar            |Sophisticated Core            |sophisticatedcore             |1.19.2-0.6.4.605    |DONE      |Manifest: NOSIGNATURE         Placebo-1.19.2-7.4.0.jar                          |Placebo                       |placebo                       |7.4.0               |DONE      |Manifest: NOSIGNATURE         citadel-2.1.4-1.19.jar                            |Citadel                       |citadel                       |2.1.4               |DONE      |Manifest: NOSIGNATURE         alexsmobs-1.21.1.jar                              |Alex's Mobs                   |alexsmobs                     |1.21.1              |DONE      |Manifest: NOSIGNATURE         YungsApi-1.19.2-Forge-3.8.10.jar                  |YUNG's API                    |yungsapi                      |1.19.2-Forge-3.8.10 |DONE      |Manifest: NOSIGNATURE         pyromancer_1.8.6.jar                              |Pyromancer                    |pyromancer                    |1.8.5               |DONE      |Manifest: NOSIGNATURE         Forgematica-0.1.10-mc1.19.2.jar                   |Forgematica                   |forgematica                   |0.1.10-mc1.19.2     |DONE      |Manifest: NOSIGNATURE         mixinextras-forge-0.2.0-beta.9.jar                |MixinExtras                   |mixinextras                   |0.2.0-beta.9        |DONE      |Manifest: NOSIGNATURE         sophisticatedbackpacks-1.19.2-3.20.2.1035.jar     |Sophisticated Backpacks       |sophisticatedbackpacks        |1.19.2-3.20.2.1035  |DONE      |Manifest: NOSIGNATURE         guardvillagers-1.19.2-1.5.9.jar                   |Guard Villagers               |guardvillagers                |1.19.2-1.5.9        |DONE      |Manifest: NOSIGNATURE         Apotheosis-1.19.2-6.5.2.jar                       |Apotheosis                    |apotheosis                    |6.5.2               |DONE      |Manifest: NOSIGNATURE         balm-forge-1.19.2-4.6.0.jar                       |Balm                          |balm                          |4.6.0               |DONE      |Manifest: NOSIGNATURE         immersive_armors-1.5.6+1.19.2-forge.jar           |Immersive Armors              |immersive_armors              |1.5.6+1.19.2        |DONE      |Manifest: NOSIGNATURE         cloth-config-8.3.134-forge.jar                    |Cloth Config v8 API           |cloth_config                  |8.3.134             |DONE      |Manifest: NOSIGNATURE         ctov-3.2.6c.jar                                   |ChoiceTheorem's Overhauled Vil|ctov                          |3.2.6c              |DONE      |Manifest: NOSIGNATURE         twilightforest-1.19.2-4.2.1518-universal.jar      |The Twilight Forest           |twilightforest                |4.2.1518            |DONE      |Manifest: NOSIGNATURE         embeddium-0.3.18.1+mc1.19.2.jar                   |Embeddium                     |embeddium                     |0.3.18.1+mc1.19.2   |DONE      |Manifest: NOSIGNATURE         undergarden_delight_1.0.0_forge_1.19.2.jar        |Undergarden Delight           |undergardendelight            |1.0.0               |DONE      |Manifest: NOSIGNATURE         structure_gel-1.19.2-2.7.3.jar                    |Structure Gel API             |structure_gel                 |2.7.3               |DONE      |Manifest: NOSIGNATURE         FarmersDelight-1.19.2-1.2.4.jar                   |Farmer's Delight              |farmersdelight                |1.19.2-1.2.4        |DONE      |Manifest: NOSIGNATURE         ends_delight-1.19.2-2.1.jar                       |End's Delight                 |ends_delight                  |1.19.2-2.1          |DONE      |Manifest: NOSIGNATURE         torchmaster-19.2.93.jar                           |Torchmaster                   |torchmaster                   |19.2.93             |DONE      |Manifest: NOSIGNATURE         handcrafted-forge-1.19.2-2.0.6.jar                |Handcrafted                   |handcrafted                   |2.0.6               |DONE      |Manifest: NOSIGNATURE         MaFgLib-0.1.14-mc1.19.2.jar                       |MaFgLib                       |mafglib                       |0.1.14-mc1.19.2     |DONE      |Manifest: NOSIGNATURE         YungsBridges-1.19.2-Forge-3.1.0.jar               |YUNG's Bridges                |yungsbridges                  |1.19.2-Forge-3.1.0  |DONE      |Manifest: NOSIGNATURE         zmedievalmusic-1.19.2-2.0.jar                     |medievalmusic mod             |medievalmusic                 |1.19.2-2.0          |DONE      |Manifest: NOSIGNATURE         resourcefulconfig-forge-1.19.2-1.0.20.jar         |Resourcefulconfig             |resourcefulconfig             |1.0.20              |DONE      |Manifest: NOSIGNATURE         CNB-1.19-1.5.4.jar                                |Creatures and Beasts          |cnb                           |1.5.4               |DONE      |Manifest: NOSIGNATURE         curios-forge-1.19.2-5.1.6.3.jar                   |Curios API                    |curios                        |1.19.2-5.1.6.3      |DONE      |Manifest: NOSIGNATURE         Patchouli-1.19.2-77.jar                           |Patchouli                     |patchouli                     |1.19.2-77           |DONE      |Manifest: NOSIGNATURE         oculus-mc1.19.2-1.6.9.jar                         |Oculus                        |oculus                        |1.6.9               |DONE      |Manifest: NOSIGNATURE         Gobber2-Forge-1.19.2-2.7.32.jar                   |Gobber 2                      |gobber2                       |2.7.32              |DONE      |Manifest: NOSIGNATURE         EnigmaticLegacy-2.26.5.jar                        |Enigmatic Legacy              |enigmaticlegacy               |2.26.5              |DONE      |Manifest: NOSIGNATURE         resourcefullib-forge-1.19.2-1.1.24.jar            |Resourceful Lib               |resourcefullib                |1.1.24              |DONE      |Manifest: NOSIGNATURE         TA-0.9.5-1.19.2.jar                               |TheAbyss                      |theabyss                      |3.0.0               |DONE      |Manifest: NOSIGNATURE         spirit-forge-1.19.2-2.2.7.jar                     |Spirit                        |spirit                        |2.2.7               |DONE      |Manifest: NOSIGNATURE         cumulus_menus-1.19.2-1.0.0-forge.jar              |Cumulus                       |cumulus_menus                 |0.0NONE             |DONE      |Manifest: NOSIGNATURE         twilightdelight-1.4.4.jar                         |Twilight's Flavor & Delight   |twilightdelight               |1.4.4               |DONE      |Manifest: NOSIGNATURE         deeperdarker-forge-1.19.2-1.2.2.jar               |Deeper and Darker             |deeperdarker                  |1.2.2               |DONE      |Manifest: NOSIGNATURE         cfm-7.0.0-pre35-1.19.2.jar                        |MrCrayfish's Furniture Mod    |cfm                           |7.0.0-pre35         |DONE      |Manifest: NOSIGNATURE         architectury-6.6.92-forge.jar                     |Architectury                  |architectury                  |6.6.92              |DONE      |Manifest: NOSIGNATURE         doapi-1.1.0b.jar                                  |Lets Do Api                   |doapi                         |1.1.0b              |DONE      |Manifest: NOSIGNATURE         letsdo-vinery-forge-1.3.12b.jar                   |Vinery                        |vinery                        |1.3.12              |DONE      |Manifest: NOSIGNATURE         Voidscape-1.19.2-0.2.119.jar                      |Voidscape                     |voidscape                     |1.19.2-0.2.119      |DONE      |Manifest: NOSIGNATURE         The_Undergarden-1.19.2-0.8.3.jar                  |The Undergarden               |undergarden                   |0.8.3               |DONE      |Manifest: NOSIGNATURE         biomancy-forge-1.19.2-2.3.2.0.jar                 |Biomancy 2                    |biomancy                      |2.3.2.0             |DONE      |Manifest: NOSIGNATURE         nitrogen_internals-1.19.2-1.0.7-forge.jar         |Nitrogen                      |nitrogen_internals            |0.0NONE             |DONE      |Manifest: NOSIGNATURE         the_bumblezone_forge-6.9.13+1.19.2.jar            |The Bumblezone                |the_bumblezone                |6.9.13+1.19.2       |DONE      |Manifest: NOSIGNATURE         RuneCraft-1.19-(v.3.6.2a).jar                     |RuneCraft                     |runecraft                     |3.6.2a              |DONE      |Manifest: NOSIGNATURE         l2library-1.9.7.jar                               |L2 Library                    |l2library                     |1.9.7               |DONE      |Manifest: NOSIGNATURE         deep_aether-1.19.2-1.0.2.jar                      |Deep Aether                   |deep_aether                   |1.19.2-1.0.2        |DONE      |Manifest: NOSIGNATURE         Towns-and-Towers-v.1.10-_FORGE-1.19.2_.jar        |Towns and Towers              |t_and_t                       |1.10                |DONE      |Manifest: NOSIGNATURE         quark_delight_1.0.0_forge_1.19.2.jar              |Quark Delight                 |quarkdelight                  |1.0.0               |DONE      |Manifest: NOSIGNATURE         mcw-lights-1.1.0-mc1.19.2forge.jar                |Macaw's Lights and Lamps      |mcwlights                     |1.1.0               |DONE      |Manifest: NOSIGNATURE         SmartBrainLib-forge-1.19.2-1.9.jar                |SmartBrainLib                 |smartbrainlib                 |1.9                 |DONE      |Manifest: NOSIGNATURE         QuarkOddities-1.18.jar                            |Quark Oddities                |quarkoddities                 |1.18                |DONE      |Manifest: NOSIGNATURE         mowziesmobs-1.6.3.jar                             |Mowzie's Mobs                 |mowziesmobs                   |1.6.3               |DONE      |Manifest: NOSIGNATURE         geckolib-forge-1.19-3.1.40.jar                    |GeckoLib                      |geckolib3                     |3.1.40              |DONE      |Manifest: NOSIGNATURE         realmrpg_imps_and_demons_0.9.0_forge_1.19.2.jar   |Realm RPG: Imps & Demons      |realmrpg_demons               |0.9.0               |DONE      |Manifest: NOSIGNATURE         jei-1.19.2-forge-11.8.1.1033.jar                  |Just Enough Items             |jei                           |11.8.1.1033         |DONE      |Manifest: NOSIGNATURE         VisualWorkbench-v4.2.4-1.19.2-Forge.jar           |Visual Workbench              |visualworkbench               |4.2.4               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         The_Graveyard_2.5.3_(FORGE)_for_1.19.2..jar       |The Graveyard                 |graveyard                     |2.5.3               |DONE      |Manifest: NOSIGNATURE         caelus-forge-1.19.2-3.0.0.6.jar                   |Caelus API                    |caelus                        |1.19.2-3.0.0.6      |DONE      |Manifest: NOSIGNATURE         obscure_api-15.jar                                |Obscure API                   |obscure_api                   |15                  |DONE      |Manifest: NOSIGNATURE         waystones-forge-1.19.2-11.4.2.jar                 |Waystones                     |waystones                     |11.4.2              |DONE      |Manifest: NOSIGNATURE         journeymap-1.19.2-5.9.8-forge.jar                 |Journeymap                    |journeymap                    |5.9.8               |DONE      |Manifest: NOSIGNATURE         comforts-forge-6.0.7+1.19.2.jar                   |Comforts                      |comforts                      |6.0.7+1.19.2        |DONE      |Manifest: NOSIGNATURE         NaturesCompass-1.19.2-1.10.0-forge.jar            |Nature's Compass              |naturescompass                |1.19.2-1.10.0-forge |DONE      |Manifest: NOSIGNATURE         enigmaticlegacydelight-1.0.1-1.19.2.jar           |Enigmatic Legacy Delight      |enigmaticlegacydelight        |1.0.1-1.19.2        |DONE      |Manifest: NOSIGNATURE         SereneSeasons-1.19.2-8.1.0.24.jar                 |Serene Seasons                |sereneseasons                 |0.0NONE             |DONE      |Manifest: NOSIGNATURE         Decorative Blocks-forge-1.19.2-3.0.0.jar          |Decorative Blocks             |decorative_blocks             |3.0.0               |DONE      |Manifest: NOSIGNATURE         Guide-API-VP-1.19.2-2.2.4.jar                     |Guide-API VP                  |guideapi_vp                   |2.2.4               |DONE      |Manifest: NOSIGNATURE         starlight-1.1.1+forge.cf5b10b.jar                 |Starlight                     |starlight                     |1.1.1+forge.a3aea74 |DONE      |Manifest: NOSIGNATURE         ExplorersCompass-1.19.2-1.3.0-forge.jar           |Explorer's Compass            |explorerscompass              |1.19.2-1.3.0-forge  |DONE      |Manifest: NOSIGNATURE         davespotioneering-1.19.2-3.jar                    |Dave's Potioneering           |davespotioneering             |1.19.2-3            |DONE      |Manifest: NOSIGNATURE         medieval_paintings-1.19.2-7.0.jar                 |Medieval Paintings            |medieval_paintings            |7.0                 |DONE      |Manifest: NOSIGNATURE         ars_nouveau-1.19.2-3.23.0.jar                     |Ars Nouveau                   |ars_nouveau                   |3.23.0              |DONE      |Manifest: NOSIGNATURE         reactive-1.19.2-7e.jar                            |Reactive                      |reactive                      |1.19.2-7e           |DONE      |Manifest: NOSIGNATURE         aether_delight_1.0.0_forge_1.19.2.jar             |Aether Delight                |aetherdelight                 |1.0.0               |DONE      |Manifest: NOSIGNATURE         forge-1.19.2-43.4.4-universal.jar                 |Forge                         |forge                         |43.4.4              |DONE      |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90         tarotcards-1.19.2-1.6.4.jar                       |Tarot Cards                   |tarotcards                    |1.19.2-1.6.4        |DONE      |Manifest: NOSIGNATURE         friendsandfoes-forge-mc1.19.2-3.0.3.jar           |Friends & Foes                |friendsandfoes                |3.0.3               |DONE      |Manifest: NOSIGNATURE         antiqueatlas-8.0.4+itemless-forge-mc1.19.2.jar    |Antique Atlas                 |antiqueatlas                  |8.0.4+itemless-forge|DONE      |Manifest: NOSIGNATURE         DungeonsArise-1.19.2-2.1.56-beta.jar              |When Dungeons Arise           |dungeons_arise                |2.1.56-1.19.2       |DONE      |Manifest: NOSIGNATURE         client-1.19.2-20220805.130853-srg.jar             |Minecraft                     |minecraft                     |1.19.2              |DONE      |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f         eidolon-0.3.6.jar                                 |Eidolon                       |eidolon                       |0.3.6               |DONE      |Manifest: NOSIGNATURE         sons-of-sins-1.19.2-2.1.6.jar                     |Sons of Sins                  |sons_of_sins                  |2.1.6               |DONE      |Manifest: NOSIGNATURE         simplyswords-forge-1.47.0-1.19.2.jar              |Simply Swords                 |simplyswords                  |1.47.0-1.19.2       |DONE      |Manifest: NOSIGNATURE         TerraBlender-forge-1.19.2-2.0.1.166.jar           |TerraBlender                  |terrablender                  |2.0.1.166           |DONE      |Manifest: NOSIGNATURE         BiomesOPlenty-1.19.2-17.1.2.544.jar               |Biomes O' Plenty              |biomesoplenty                 |17.1.2.544          |DONE      |Manifest: NOSIGNATURE         moonlight-1.19.2-2.3.7-forge.jar                  |Moonlight Library             |moonlight                     |1.19.2-2.3.7        |DONE      |Manifest: NOSIGNATURE         endermanoverhaul-forge-1.19.2-0.0.2.jar           |Enderman Overhaul             |endermanoverhaul              |0.0.2               |DONE      |Manifest: NOSIGNATURE         eccentrictome-1.19.2-1.10.2.jar                   |Eccentric Tome                |eccentrictome                 |1.19.2-1.10.2       |DONE      |Manifest: NOSIGNATURE         Psi-1.19-101.jar                                  |Psi                           |psi                           |2.0.0               |DONE      |Manifest: NOSIGNATURE         Jade-1.19.1-forge-8.9.2.jar                       |Jade                          |jade                          |8.9.2               |DONE      |Manifest: NOSIGNATURE         CreativeCore_FORGE_v2.11.28_mc1.19.2.jar          |CreativeCore                  |creativecore                  |2.11.28             |DONE      |Manifest: NOSIGNATURE         spectrelib-forge-0.12.8+1.19.2.jar                |SpectreLib                    |spectrelib                    |0.12.8+1.19.2       |DONE      |Manifest: NOSIGNATURE         NethersDelight-1.19-3.1.jar                       |Nether's Delight              |nethersdelight                |1.19-3.1            |DONE      |Manifest: NOSIGNATURE         aeroblender-1.19.2-1.0.1.jar                      |AeroBlender                   |aeroblender                   |1.19.2-1.0.1        |DONE      |Manifest: NOSIGNATURE         Totemic-forge-1.19.2-0.12.13.jar                  |Totemic                       |totemic                       |1.19.2-0.12.13      |DONE      |Manifest: NOSIGNATURE         kffmod-3.12.0.jar                                 |Kotlin For Forge              |kotlinforforge                |3.12.0              |DONE      |Manifest: NOSIGNATURE         dimdungeons-179-forge-1.19.0.jar                  |Dimensional Dungeons          |dimdungeons                   |179                 |DONE      |Manifest: NOSIGNATURE         BrewinAndChewin-1.19-2.0.jar                      |Brewin' and Chewin'           |brewinandchewin               |1.19-2.0            |DONE      |Manifest: NOSIGNATURE         whisperwoods-1.19-2.1.1-forge.jar                 |Whisperwoods                  |whisperwoods                  |1.19-2.1.1          |DONE      |Manifest: NOSIGNATURE         FarmersRespite-1.19-2.0.jar                       |Farmer's Respite              |farmersrespite                |1.19-2.0            |DONE      |Manifest: NOSIGNATURE         flywheel-forge-1.19.2-0.6.11-22.jar               |Flywheel                      |flywheel                      |0.6.11-22           |DONE      |Manifest: NOSIGNATURE         create-1.19.2-0.5.1.i.jar                         |Create                        |create                        |0.5.1.i             |DONE      |Manifest: NOSIGNATURE         reliquary-1.19.2-2.0.40.1198.jar                  |Reliquary                     |reliquary                     |1.19.2-2.0.40.1198  |DONE      |Manifest: NOSIGNATURE         gobber_delight_2.0.0_forge_1.19.2.jar             |Gobber Delight (by NoCube)    |gobberdelight                 |2.0.0               |DONE      |Manifest: NOSIGNATURE         malum-1.19.2-1.5.0.4.jar                          |Malum                         |malum                         |1.19.2-1.5.0.4-25   |DONE      |Manifest: NOSIGNATURE         AutoRegLib-1.8.2-55.jar                           |AutoRegLib                    |autoreglib                    |1.8.2-55            |DONE      |Manifest: NOSIGNATURE         Quark-3.4-418.jar                                 |Quark                         |quark                         |3.4-418             |DONE      |Manifest: NOSIGNATURE         supplementaries-1.19.2-2.4.20.jar                 |Supplementaries               |supplementaries               |1.19.2-2.4.20       |DONE      |Manifest: NOSIGNATURE         Nullscape_1.19.3_v1.2.2.jar                       |Nullscape                     |nullscape                     |1.2.2               |DONE      |Manifest: NOSIGNATURE         ars_elemental-1.19.2-0.5.9.4.1.jar                |Ars Elemental                 |ars_elemental                 |1.19.2-0.5.9.4.1    |DONE      |Manifest: NOSIGNATURE         irons_spellbooks-1.19.2-3.4.0.jar                 |Iron's Spells 'n Spellbooks   |irons_spellbooks              |1.19.2-3.4.0        |DONE      |Manifest: NOSIGNATURE         miners_delight-1.19.2-1.1.2.jar                   |Miner's Delight               |miners_delight                |1.19.2-1.1.2        |DONE      |Manifest: NOSIGNATURE         ars_instrumentum-1.19.2-3.4.5.jar                 |Ars Instrumentum              |ars_instrumentum              |3.4.5               |DONE      |Manifest: NOSIGNATURE         dimdoors-5.4.1-1.19.2-forge.jar                   |DimensionalDoors              |dimdoors                      |5.4.1               |DONE      |Manifest: NOSIGNATURE         modonomicon-1.19.2-1.34.0.jar                     |Modonomicon                   |modonomicon                   |1.34.0              |DONE      |Manifest: NOSIGNATURE         Wesley's Roguelike Dungeons 1.19.2-2.3.2.jar      |Wesley's Roguelike Dungeons   |wrd                           |2.0.0               |DONE      |Manifest: NOSIGNATURE         oceansdelight-1.0.2-1.19.2.jar                    |Ocean's Delight               |oceansdelight                 |1.0.2-1.19.2        |DONE      |Manifest: NOSIGNATURE         mvs-4.1.4-1.19.2-forge.jar                        |Moog's Voyager Structures     |mvs                           |4.1.4-1.19.2-forge  |DONE      |Manifest: NOSIGNATURE         creeperoverhaul-2.0.9-forge.jar                   |Creeper Overhaul              |creeperoverhaul               |2.0.9               |DONE      |Manifest: NOSIGNATURE         appleskin-forge-mc1.19-2.4.2.jar                  |AppleSkin                     |appleskin                     |2.4.2+mc1.19        |DONE      |Manifest: NOSIGNATURE         alexsdelight-1.4.1.jar                            |Alex's Delight                |alexsdelight                  |1.4.1               |DONE      |Manifest: NOSIGNATURE         Vampirism-1.19.2-1.9.5.jar                        |Vampirism                     |vampirism                     |1.9.5               |DONE      |Manifest: NOSIGNATURE         Werewolves-1.19.2-1.1.0.1.jar                     |Werewolves                    |werewolves                    |1.1.0.1             |DONE      |Manifest: NOSIGNATURE         ferritecore-5.0.3-forge.jar                       |Ferrite Core                  |ferritecore                   |5.0.3               |DONE      |Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a         occultism-1.19.2-1.90.0.jar                       |Occultism                     |occultism                     |1.90.0              |DONE      |Manifest: NOSIGNATURE         ars_ocultas-1.19.2-0.1.1-all.jar                  |Ars Ocultas                   |ars_ocultas                   |1.19.2-0.1.1        |DONE      |Manifest: NOSIGNATURE         PuzzlesLib-v4.4.3-1.19.2-Forge.jar                |Puzzles Lib                   |puzzleslib                    |4.4.3               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         Aquaculture-1.19.2-2.4.17.jar                     |Aquaculture 2                 |aquaculture                   |1.19.2-2.4.17       |DONE      |Manifest: NOSIGNATURE         valkyrienskies-119-2.1.2-beta.1.jar               |Valkyrien Skies 2             |valkyrienskies                |2.1.2-beta.1        |DONE      |Manifest: NOSIGNATURE         eureka-1192-1.5.1-beta.2.jar                      |VS Eureka Mod                 |vs_eureka                     |1.5.1-beta.2        |DONE      |Manifest: NOSIGNATURE         lodestone-1.19.2-1.4.2.90.jar                     |Lodestone                     |lodestone                     |1.19.2-1.4.2.90     |DONE      |Manifest: NOSIGNATURE         CrabbersDelight-1.19.2-1.1.4.jar                  |Crabber's Delight             |crabbersdelight               |1.1.4               |DONE      |Manifest: NOSIGNATURE         valhelsia_core-forge-1.19.2-0.5.0.jar             |Valhelsia Core                |valhelsia_core                |1.19.2-0.5.0        |DONE      |Manifest: NOSIGNATURE         forbidden_arcanus-1.19.2-2.1.5.jar                |Forbidden & Arcanus           |forbidden_arcanus             |1.19.2-2.1.5        |DONE      |Manifest: NOSIGNATURE         magipsi-3.0.0+1.19.2.jar                          |Magical Psi                   |magipsi                       |3.0.0+1.19.2        |DONE      |Manifest: NOSIGNATURE         UndeadUnleashed-1.1.1-1.19.2.jar                  |Undead Unleashed              |undead_unleashed              |1.1.0               |DONE      |Manifest: NOSIGNATURE         aquamirae-6.API15.jar                             |Aquamirae                     |aquamirae                     |6.API15             |DONE      |Manifest: NOSIGNATURE     Crash Report UUID: 173fd5d3-4f06-41cc-b491-2305936fc737     FML: 43.4     Forge: net.minecraftforge:43.4.4     Flywheel Backend: Off
    • Check the server's log files for more detailed error messages.
    • Does it work without any mods? Just Forge? Maybe a mod is not working with this build - balm is mentioned
  • Topics

×
×
  • Create New...

Important Information

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