Jump to content

TheDogePwner

Members
  • Posts

    88
  • Joined

  • Last visited

Everything posted by TheDogePwner

  1. I'm writing a mod for an older modpack, it isn't really my choice.
  2. So, you want to not spam commands without freezing your Minecraft (if I understand correctly)? AFAIK, you could put your loop in a new thread, but Minecraft might not allow it. Worth a try anyways.
  3. Hi, Is it possible to get the modid of an item if you know the item's unlocalized name? For example, I might know that I have an item with an unlocalized name of tile.oreIron, is there some method I can use to tell me that this item was registered by a "mod" with a modid of "minecraft"?
  4. Thanks for your reply, Major Squirrel. It guided me in the right direction and I have now found out my problem: When I was registering the item I was using the wrong name. Thanks for your help, though!
  5. Hey, I have a lang file in my assets (assets/<modid>/lang/en_US.lang). It looks like this: language.name=English language.region=US language.code=en_US item.RubyGem.name=Ruby Gem Where RubyGem is the localized name of the item. But in-game, its name appears as "item.RubyGem.name". Why is this? Thanks, TDP
  6. Hello, Although I'm a mod programmer myself, this exception has got me stumped. You can go to the pastebin with the crash report here: http://pastebin.com/gQ70nNR5 I can tell it's something with Waila, but I don't know what it is. Thanks for your help!
  7. Alright, I just renamed SteelIngot.png just in case. The name was correct. I then did a Project -> Clean. Still didn't help. The problem remains unfixed
  8. It's all correct. Here is my ENTIRE project: https://www.dropbox.com/s/e17jjavnzj3fdtk/MekanismNuclear.zip?dl=0
  9. No, it's actually "mekanismnuclear". I'm creating a mod using the Mekanism API- everywhere it says "modid" is actually "mekanismnuclear".
  10. In the source folder of your project, there's a folder called logs. Please send us the text file called "fml-client-latest". Preferably on pastebin.com.
  11. Yeah, I'm using Eclipse, so that won't work. Thanks for your answer though.
  12. Hey, So, I have an Item class I use that looks like this (except this is significantly more simplified): public class MNItem extends Item { private String name; public MNItem(String name, CreativeTabs tab) { this.name = name; setUnlocalizedName(name); setCreativeTab(tab); setTextureName("modid:" + name); setMaxStackSize(64); } public String getName() { return this.name; } public MNItem(String name, CreativeTabs tab, int stackSize) { this(name, tab); setMaxStackSize(stackSize); } } And I create an item in my main class like this: @EventHandler public void preinit(FMLPreInitializationEvent event) { GameRegistry.registerItem(new MNItem("SteelIngot", myCustomCreativeTab), "SteelIngot"); } Here is my folder layout: src main java .... resources assets modid textures items SteelIngot.png Here is the error report: [20:49:46] [Client thread/ERROR] [TEXTURE ERRORS]: domain modid is missing 1 texture [20:49:46] [Client thread/ERROR] [TEXTURE ERRORS]: domain modid is missing a resource manager - it is probably a side-effect of automatic texture processing [20:49:46] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [20:49:46] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain modid are: [20:49:46] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/SteelIngot.png [20:49:46] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- Why is this? Thanks for your help!
  13. These ideas worked. Thanks! EDIT: The second answer is incorrect, this returns ".". I went through every element in that array and none of them gave me the path to the folder. The first answer doesn't give me what I need. I need a String/java.io.File of the path to the .minecraft or mods directory dynamically.
  14. Hello, After I have compiled and exported my mod as a .jar file to be put in the mods folder, I would like it to get the directory it's in. i.e. C:\Users\Bob\AppData\Roaming\.minecraft\mods\. Thanks!
  15. Hi, I have a problem with my custom GUI. Here is my TileNuclearBoiler: package com.mod.gui.boiler; import java.util.Arrays; import net.minecraft.block.Block; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.init.Blocks; import net.minecraft.init.Items; import net.minecraft.inventory.IInventory; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagIntArray; import net.minecraft.nbt.NBTTagList; import net.minecraft.network.NetworkManager; import net.minecraft.network.Packet; import net.minecraft.network.play.server.S35PacketUpdateTileEntity; import net.minecraft.server.gui.IUpdatePlayerListBox; import net.minecraft.tileentity.TileEntity; import net.minecraft.tileentity.TileEntityFurnace; import net.minecraft.util.ChatComponentText; import net.minecraft.util.ChatComponentTranslation; import net.minecraft.util.IChatComponent; import net.minecraft.util.MathHelper; import net.minecraft.world.EnumSkyBlock; import com.mod.block.NCBlock; import com.mod.main.NuclearCraft; /** * User: brandon3055 Date: 06/01/2015 * * TileInventorySmelting is an advanced sided inventory that works like a * vanilla furnace except that it has 5 input and output slots, 4 fuel slots and * cooks at up to four times the speed. The input slots are used sequentially * rather than in parallel, i.e. the first slot cooks, then the second, then the * third, etc The fuel slots are used in parallel. The more slots burning in * parallel, the faster the cook time. The code is heavily based on * TileEntityFurnace. */ public class TileNuclearBoiler extends TileEntity implements IInventory, IUpdatePlayerListBox { // Create and initialize the itemStacks variable that will store store the // itemStacks public static final Item[] itemList = { NuclearCraft.uraniumIngot, Item.getItemFromBlock(NuclearCraft.uraniumBlock) }; public static final Item[] validFuels = { Items.lava_bucket }; public static final int FUEL_SLOTS_COUNT = 1; public static final int INPUT_SLOTS_COUNT = 1; public static final int OUTPUT_SLOTS_COUNT = 1; public static final int TOTAL_SLOTS_COUNT = FUEL_SLOTS_COUNT + INPUT_SLOTS_COUNT + OUTPUT_SLOTS_COUNT; public static final int FIRST_FUEL_SLOT = 0; public static final int FIRST_INPUT_SLOT = FIRST_FUEL_SLOT + FUEL_SLOTS_COUNT; public static final int FIRST_OUTPUT_SLOT = FIRST_INPUT_SLOT + INPUT_SLOTS_COUNT; private ItemStack[] itemStacks = new ItemStack[TOTAL_SLOTS_COUNT]; /** The number of burn ticks remaining on the current piece of fuel */ private int[] burnTimeRemaining = new int[FUEL_SLOTS_COUNT]; /** * The initial fuel value of the currently burning fuel (in ticks of burn * duration) */ private int[] burnTimeInitialValue = new int[FUEL_SLOTS_COUNT]; /** The number of ticks the current item has been cooking */ private short cookTime; /** The number of ticks required to cook an item */ private static final short COOK_TIME_FOR_COMPLETION = 800; // vanilla value // is 200 = 10 // seconds private int cachedNumberOfBurningSlots = -1; /** * Returns the amount of fuel remaining on the currently burning item in the * given fuel slot. * * @fuelSlot the number of the fuel slot (0..3) * @return fraction remaining, between 0 - 1 */ public double fractionOfFuelRemaining(int fuelSlot) { if (burnTimeInitialValue[fuelSlot] <= 0) return 0; double fraction = burnTimeRemaining[fuelSlot] / (double) burnTimeInitialValue[fuelSlot]; return MathHelper.clamp_double(fraction, 0.0, 1.0); } /** * return the remaining burn time of the fuel in the given slot * * @param fuelSlot * the number of the fuel slot (0..3) * @return seconds remaining */ public int secondsOfFuelRemaining(int fuelSlot) { if (burnTimeRemaining[fuelSlot] <= 0) return 0; return burnTimeRemaining[fuelSlot] / 20; // 20 ticks per second } /** * Get the number of slots which have fuel burning in them. * * @return number of slots with burning fuel, 0 - FUEL_SLOTS_COUNT */ public int numberOfBurningFuelSlots() { int burningCount = 0; for (int burnTime : burnTimeRemaining) { if (burnTime > 0) ++burningCount; } return burningCount; } /** * Returns the amount of cook time completed on the currently cooking item. * * @return fraction remaining, between 0 - 1 */ public double fractionOfCookTimeComplete() { double fraction = cookTime / (double) COOK_TIME_FOR_COMPLETION; return MathHelper.clamp_double(fraction, 0.0, 1.0); } // This method is called every tick to update the tile entity, i.e. // - see if the fuel has run out, and if so turn the furnace "off" and // slowly uncook the current item (if any) // - see if any of the items have finished smelting // It runs both on the server and the client. @Override public void update() { // If there is nothing to smelt or there is no room in the output, reset // cookTime and return if (canSmelt()) { int numberOfFuelBurning = burnFuel(); // If fuel is available, keep cooking the item, otherwise start // "uncooking" it at double speed if (numberOfFuelBurning > 0) { cookTime += numberOfFuelBurning; } else { cookTime -= 2; } if (cookTime < 0) cookTime = 0; // If cookTime has reached maxCookTime smelt the item and reset // cookTime if (cookTime >= COOK_TIME_FOR_COMPLETION) { smeltItem(); cookTime = 0; } } else { cookTime = 0; } // when the number of burning slots changes, we need to force the block // to re-render, otherwise the change in // state will not be visible. Likewise, we need to force a lighting // recalculation. // The block update (for renderer) is only required on client side, but // the lighting is required on both, since // the client needs it for rendering and the server needs it for crop // growth etc int numberBurning = numberOfBurningFuelSlots(); if (cachedNumberOfBurningSlots != numberBurning) { cachedNumberOfBurningSlots = numberBurning; if (worldObj.isRemote) { worldObj.markBlockForUpdate(pos); } worldObj.checkLightFor(EnumSkyBlock.BLOCK, pos); } } /** * for each fuel slot: decreases the burn time, checks if burnTimeRemaining * = 0 and tries to consume a new piece of fuel if one is available * * @return the number of fuel slots which are burning */ private int burnFuel() { int burningCount = 0; boolean inventoryChanged = false; // Iterate over all the fuel slots for (int i = 0; i < FUEL_SLOTS_COUNT; i++) { int fuelSlotNumber = i + FIRST_FUEL_SLOT; if (burnTimeRemaining[i] > 0) { --burnTimeRemaining[i]; ++burningCount; } if (burnTimeRemaining[i] == 0) { if (itemStacks[fuelSlotNumber] != null && getItemBurnTime(itemStacks[fuelSlotNumber]) > 0) { // If the stack in this slot is not null and is fuel, set // burnTimeRemaining & burnTimeInitialValue to the // item's burn time and decrease the stack size burnTimeRemaining[i] = burnTimeInitialValue[i] = getItemBurnTime(itemStacks[fuelSlotNumber]); --itemStacks[fuelSlotNumber].stackSize; ++burningCount; inventoryChanged = true; // If the stack size now equals 0 set the slot contents to // the items container item. This is for fuel // items such as lava buckets so that the bucket is not // consumed. If the item dose not have // a container item getContainerItem returns null which sets // the slot contents to null if (itemStacks[fuelSlotNumber].stackSize == 0) { itemStacks[fuelSlotNumber] = itemStacks[fuelSlotNumber] .getItem().getContainerItem( itemStacks[fuelSlotNumber]); } } } } if (inventoryChanged) markDirty(); return burningCount; } /** * Check if any of the input items are smeltable and there is sufficient * space in the output slots * * @return true if smelting is possible */ private boolean canSmelt() { return smeltItem(false); } /** * Smelt an input item into an output slot, if possible */ private void smeltItem() { smeltItem(true); } /** * checks that there is an item to be smelted in one of the input slots and * that there is room for the result in the output slots If desired, * performs the smelt * * @param performSmelt * if true, perform the smelt. if false, check whether smelting * is possible, but don't change the inventory * @return false if no items can be smelted, true otherwise */ private boolean smeltItem(boolean performSmelt) { Integer firstSuitableInputSlot = null; Integer firstSuitableOutputSlot = null; ItemStack result = null; // finds the first input slot which is smeltable and whose result fits // into an output slot (stacking if possible) for (int inputSlot = FIRST_INPUT_SLOT; inputSlot < FIRST_INPUT_SLOT + INPUT_SLOTS_COUNT; inputSlot++) { if (itemStacks[inputSlot] != null) { result = getSmeltingResultForItem(itemStacks[inputSlot]); if (result != null) { // find the first suitable output slot- either empty, or // with identical item that has enough space for (int outputSlot = FIRST_OUTPUT_SLOT; outputSlot < FIRST_OUTPUT_SLOT + OUTPUT_SLOTS_COUNT; outputSlot++) { ItemStack outputStack = itemStacks[outputSlot]; if (outputStack == null) { firstSuitableInputSlot = inputSlot; firstSuitableOutputSlot = outputSlot; break; } if (outputStack.getItem() == result.getItem() && (!outputStack.getHasSubtypes() || outputStack .getMetadata() == outputStack .getMetadata()) && ItemStack.areItemStackTagsEqual(outputStack, result)) { int combinedSize = itemStacks[outputSlot].stackSize + result.stackSize; if (combinedSize <= getInventoryStackLimit() && combinedSize <= itemStacks[outputSlot] .getMaxStackSize()) { firstSuitableInputSlot = inputSlot; firstSuitableOutputSlot = outputSlot; break; } } } if (firstSuitableInputSlot != null) break; } } } if (firstSuitableInputSlot == null) return false; if (!performSmelt) return true; // alter input and output itemStacks[firstSuitableInputSlot].stackSize--; if (itemStacks[firstSuitableInputSlot].stackSize <= 0) itemStacks[firstSuitableInputSlot] = null; if (itemStacks[firstSuitableOutputSlot] == null) { itemStacks[firstSuitableOutputSlot] = result.copy(); // Use deep // .copy() // to avoid // altering // the // recipe } else { itemStacks[firstSuitableOutputSlot].stackSize += result.stackSize; } markDirty(); return true; } // returns the smelting result for the given stack. Returns null if the // given stack can not be smelted public static ItemStack getSmeltingResultForItem(ItemStack stack) { Item input = stack.getItem(); if (input == Item.getItemFromBlock(NuclearCraft.uraniumOre)) { return new ItemStack(NuclearCraft.plutoniumIngot); } return null; } // returns the number of ticks the given item will burn. Returns 0 if the // given item is not a valid fuel public static short getItemBurnTime(ItemStack stack) { int burntime; Item inputFuel = stack.getItem(); if (inputFuel == NuclearCraft.plutoniumExtraction) { return 1600; } return 0; } // Gets the number of slots in the inventory @Override public int getSizeInventory() { return itemStacks.length; } // Gets the stack in the given slot @Override public ItemStack getStackInSlot(int i) { return itemStacks[i]; } /** * Removes some of the units from itemstack in the given slot, and returns * as a separate itemstack * * @param slotIndex * the slot number to remove the items from * @param count * the number of units to remove * @return a new itemstack containing the units removed from the slot */ @Override public ItemStack decrStackSize(int slotIndex, int count) { ItemStack itemStackInSlot = getStackInSlot(slotIndex); if (itemStackInSlot == null) return null; ItemStack itemStackRemoved; if (itemStackInSlot.stackSize <= count) { itemStackRemoved = itemStackInSlot; setInventorySlotContents(slotIndex, null); } else { itemStackRemoved = itemStackInSlot.splitStack(count); if (itemStackInSlot.stackSize == 0) { setInventorySlotContents(slotIndex, null); } } markDirty(); return itemStackRemoved; } // overwrites the stack in the given slotIndex with the given stack @Override public void setInventorySlotContents(int slotIndex, ItemStack itemstack) { itemStacks[slotIndex] = itemstack; if (itemstack != null && itemstack.stackSize > getInventoryStackLimit()) { itemstack.stackSize = getInventoryStackLimit(); } markDirty(); } // This is the maximum number if items allowed in each slot // This only affects things such as hoppers trying to insert items you need // to use the container to enforce this for players // inserting items via the gui @Override public int getInventoryStackLimit() { return 64; } // Return true if the given player is able to use this block. In this case // it checks that // 1) the world tileentity hasn't been replaced in the meantime, and // 2) the player isn't too far away from the centre of the block @Override public boolean isUseableByPlayer(EntityPlayer player) { if (this.worldObj.getTileEntity(this.pos) != this) return false; final double X_CENTRE_OFFSET = 0.5; final double Y_CENTRE_OFFSET = 0.5; final double Z_CENTRE_OFFSET = 0.5; final double MAXIMUM_DISTANCE_SQ = 8.0 * 8.0; return player.getDistanceSq(pos.getX() + X_CENTRE_OFFSET, pos.getY() + Y_CENTRE_OFFSET, pos.getZ() + Z_CENTRE_OFFSET) < MAXIMUM_DISTANCE_SQ; } // Return true if the given stack is allowed to be inserted in the given // slot // Unlike the vanilla furnace, we allow anything to be placed in the fuel // slots static public boolean isItemValidForFuelSlot(ItemStack itemStack) { return true; } // Return true if the given stack is allowed to be inserted in the given // slot // Unlike the vanilla furnace, we allow anything to be placed in the fuel // slots static public boolean isItemValidForInputSlot(ItemStack itemStack) { return true; } // Return true if the given stack is allowed to be inserted in the given // slot // Unlike the vanilla furnace, we allow anything to be placed in the fuel // slots static public boolean isItemValidForOutputSlot(ItemStack itemStack) { return false; } // ------------------------------ // This is where you save any data that you don't want to lose when the tile // entity unloads // In this case, it saves the state of the furnace (burn time etc) and the // itemstacks stored in the fuel, input, and output slots @Override public void writeToNBT(NBTTagCompound parentNBTTagCompound) { super.writeToNBT(parentNBTTagCompound); // The super call is required to // save and load the tiles // location // // Save the stored item stacks // to use an analogy with Java, this code generates an array of hashmaps // The itemStack in each slot is converted to an NBTTagCompound, which // is effectively a hashmap of key->value pairs such // as slot=1, id=2353, count=1, etc // Each of these NBTTagCompound are then inserted into NBTTagList, which // is similar to an array. NBTTagList dataForAllSlots = new NBTTagList(); for (int i = 0; i < this.itemStacks.length; ++i) { if (this.itemStacks[i] != null) { NBTTagCompound dataForThisSlot = new NBTTagCompound(); dataForThisSlot.setByte("Slot", (byte) i); this.itemStacks[i].writeToNBT(dataForThisSlot); dataForAllSlots.appendTag(dataForThisSlot); } } // the array of hashmaps is then inserted into the parent hashmap for // the container parentNBTTagCompound.setTag("Items", dataForAllSlots); // Save everything else parentNBTTagCompound.setShort("CookTime", cookTime); parentNBTTagCompound.setTag("burnTimeRemaining", new NBTTagIntArray( burnTimeRemaining)); parentNBTTagCompound.setTag("burnTimeInitial", new NBTTagIntArray( burnTimeInitialValue)); } // This is where you load the data that you saved in writeToNBT @Override public void readFromNBT(NBTTagCompound nbtTagCompound) { super.readFromNBT(nbtTagCompound); // The super call is required to save // and load the tiles location final byte NBT_TYPE_COMPOUND = 10; // See NBTBase.createNewByType() for // a listing NBTTagList dataForAllSlots = nbtTagCompound.getTagList("Items", NBT_TYPE_COMPOUND); Arrays.fill(itemStacks, null); // set all slots to empty for (int i = 0; i < dataForAllSlots.tagCount(); ++i) { NBTTagCompound dataForOneSlot = dataForAllSlots.getCompoundTagAt(i); byte slotNumber = dataForOneSlot.getByte("Slot"); if (slotNumber >= 0 && slotNumber < this.itemStacks.length) { this.itemStacks[slotNumber] = ItemStack .loadItemStackFromNBT(dataForOneSlot); } } // Load everything else. Trim the arrays (or pad with 0) to make sure // they have the correct number of elements cookTime = nbtTagCompound.getShort("CookTime"); burnTimeRemaining = Arrays.copyOf( nbtTagCompound.getIntArray("burnTimeRemaining"), FUEL_SLOTS_COUNT); burnTimeInitialValue = Arrays .copyOf(nbtTagCompound.getIntArray("burnTimeInitial"), FUEL_SLOTS_COUNT); cachedNumberOfBurningSlots = -1; } // When the world loads from disk, the server needs to send the TileEntity // information to the client // it uses getDescriptionPacket() and onDataPacket() to do this @Override public Packet getDescriptionPacket() { NBTTagCompound nbtTagCompound = new NBTTagCompound(); writeToNBT(nbtTagCompound); final int METADATA = 0; return new S35PacketUpdateTileEntity(this.pos, METADATA, nbtTagCompound); } @Override public void onDataPacket(NetworkManager net, S35PacketUpdateTileEntity pkt) { readFromNBT(pkt.getNbtCompound()); } // ------------------------ // set all slots to empty @Override public void clear() { Arrays.fill(itemStacks, null); } // will add a key for this container to the lang file so we can name it in // the GUI @Override public String getName() { return "Nuclear Boiler"; } @Override public boolean hasCustomName() { return false; } // standard code to look up what the human-readable name is @Override public IChatComponent getDisplayName() { return this.hasCustomName() ? new ChatComponentText(this.getName()) : new ChatComponentTranslation(this.getName()); } // Fields are used to send non-inventory information from the server to // interested clients // The container code caches the fields and sends the client any fields // which have changed. // The field ID is limited to byte, and the field value is limited to short. // (if you use more than this, they get cast down // in the network packets) // If you need more than this, or shorts are too small, use a custom packet // in your container instead. private static final byte COOK_FIELD_ID = 0; private static final byte FIRST_BURN_TIME_REMAINING_FIELD_ID = 1; private static final byte FIRST_BURN_TIME_INITIAL_FIELD_ID = FIRST_BURN_TIME_REMAINING_FIELD_ID + (byte) FUEL_SLOTS_COUNT; private static final byte NUMBER_OF_FIELDS = FIRST_BURN_TIME_INITIAL_FIELD_ID + (byte) FUEL_SLOTS_COUNT; @Override public int getField(int id) { if (id == COOK_FIELD_ID) return cookTime; if (id >= FIRST_BURN_TIME_REMAINING_FIELD_ID && id < FIRST_BURN_TIME_REMAINING_FIELD_ID + FUEL_SLOTS_COUNT) { return burnTimeRemaining[id - FIRST_BURN_TIME_REMAINING_FIELD_ID]; } if (id >= FIRST_BURN_TIME_INITIAL_FIELD_ID && id < FIRST_BURN_TIME_INITIAL_FIELD_ID + FUEL_SLOTS_COUNT) { return burnTimeInitialValue[id - FIRST_BURN_TIME_INITIAL_FIELD_ID]; } throw new IllegalArgumentException( "Invalid field ID in TileNuclearBoiler.getField:" + id); } @Override public void setField(int id, int value) { if (id == COOK_FIELD_ID) { cookTime = (short) value; } else if (id >= FIRST_BURN_TIME_REMAINING_FIELD_ID && id < FIRST_BURN_TIME_REMAINING_FIELD_ID + FUEL_SLOTS_COUNT) { burnTimeRemaining[id - FIRST_BURN_TIME_REMAINING_FIELD_ID] = value; } else if (id >= FIRST_BURN_TIME_INITIAL_FIELD_ID && id < FIRST_BURN_TIME_INITIAL_FIELD_ID + FUEL_SLOTS_COUNT) { burnTimeInitialValue[id - FIRST_BURN_TIME_INITIAL_FIELD_ID] = value; } else { System.err .println("Invalid field ID in TileInventorySmelting.setField:" + id); } } @Override public int getFieldCount() { return NUMBER_OF_FIELDS; } // ----------------------------------------------------------------------------------------------------------- // The following methods are not needed for this example but are part of // IInventory so they must be implemented // Unused unless your container specifically uses it. // Return true if the given stack is allowed to go in the given slot @Override public boolean isItemValidForSlot(int slotIndex, ItemStack itemstack) { return false; } /** * This method removes the entire contents of the given slot and returns it. * Used by containers such as crafting tables which return any items in * their slots when you close the GUI * * @param slotIndex * @return */ @Override public ItemStack getStackInSlotOnClosing(int slotIndex) { ItemStack itemStack = getStackInSlot(slotIndex); if (itemStack != null) setInventorySlotContents(slotIndex, null); return itemStack; } @Override public void openInventory(EntityPlayer player) { } @Override public void closeInventory(EntityPlayer player) { } } Here is my NuclearBoilrt class: package com.mod.gui.boiler; import net.minecraft.block.BlockContainer; import net.minecraft.block.material.Material; import net.minecraft.block.properties.IProperty; import net.minecraft.block.properties.PropertyInteger; import net.minecraft.block.state.BlockState; import net.minecraft.block.state.IBlockState; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.inventory.IInventory; import net.minecraft.inventory.InventoryHelper; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.BlockPos; import net.minecraft.util.EnumFacing; import net.minecraft.util.EnumWorldBlockLayer; import net.minecraft.util.MathHelper; import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; import com.mod.main.GuiHandler; import com.mod.main.NuclearCraft; public class NuclearBoiler extends BlockContainer { public NuclearBoiler() { super(Material.rock); setCreativeTab(NuclearCraft.nuclearTab); setUnlocalizedName("NuclearBoiler"); } @Override public TileEntity createNewTileEntity(World worldIn, int meta) { return new TileNuclearBoiler(); } @Override public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumFacing side, float hitX, float hitY, float hitZ) { if (worldIn.isRemote) return true; playerIn.openGui(NuclearCraft.instance, GuiHandler.getGuiID(), worldIn, pos.getX(), pos.getY(), pos.getZ()); return true; } @Override public void breakBlock(World worldIn, BlockPos pos, IBlockState state) { TileEntity tileEntity = worldIn.getTileEntity(pos); if (tileEntity instanceof IInventory) { InventoryHelper.dropInventoryItems(worldIn, pos, (IInventory) tileEntity); } super.breakBlock(worldIn, pos, state); } @Override public IBlockState getActualState(IBlockState state, IBlockAccess worldIn, BlockPos pos) { TileEntity tileEntity = worldIn.getTileEntity(pos); if (tileEntity instanceof TileNuclearBoiler) { TileNuclearBoiler tileInventoryFurnace = (TileNuclearBoiler) tileEntity; int burningSlots = tileInventoryFurnace.numberOfBurningFuelSlots(); burningSlots = MathHelper.clamp_int(burningSlots, 0, 4); return getDefaultState().withProperty(BURNING_SIDES_COUNT, burningSlots); } return state; } @Override public IBlockState getStateFromMeta(int meta) { return this.getDefaultState(); // return this.getDefaultState().withProperty(BURNING_SIDES_COUNT, // Integer.valueOf(meta)); } @Override public int getMetaFromState(IBlockState state) { return 0; } @Override protected BlockState createBlockState() { return new BlockState(this, new IProperty[] { BURNING_SIDES_COUNT }); } public static final PropertyInteger BURNING_SIDES_COUNT = PropertyInteger .create("burnbving_sides_count", 0, 4); private static final int LIGHT_VALUE = 15; // light value for a // single side burning public int getLightValue(IBlockAccess world, BlockPos pos) { int lightValue = 0; IBlockState blockState = getActualState(getDefaultState(), world, pos); int burningSides = (Integer) blockState.getValue(BURNING_SIDES_COUNT); if (burningSides == 0) { lightValue = 0; } else { lightValue = 15; } lightValue = MathHelper.clamp_int(lightValue, 0, LIGHT_VALUE); return lightValue; } @SideOnly(Side.CLIENT) public EnumWorldBlockLayer getBlockLayer() { return EnumWorldBlockLayer.SOLID; } @Override public boolean isOpaqueCube() { return false; } @Override public boolean isFullCube() { return false; } @Override public int getRenderType() { return 3; } } Here is my GuiNuclearBoiler class: package com.mod.gui.boiler; import java.awt.Color; import java.util.ArrayList; import java.util.List; import com.mod.gui.refinery.TileRefinery; import com.mod.main.NuclearCraft; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.inventory.GuiContainer; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.entity.player.InventoryPlayer; import net.minecraft.inventory.Container; import net.minecraft.util.ResourceLocation; public class GuiNuclearBoiler extends GuiContainer { private static final ResourceLocation texture = new ResourceLocation( NuclearCraft.MODID, "textures/gui/NuclearBoiler.png"); private TileNuclearBoiler tileEntity; final int COOK_BAR_XPOS = 42; final int COOK_BAR_YPOS = 34; final int COOK_BAR_ICON_U = 177; // texture position of white arrow icon on // GUI background image final int COOK_BAR_ICON_V = 14; final int COOK_BAR_WIDTH = 66; final int COOK_BAR_HEIGHT = 19; final int FLAME_XPOS = 64; final int FLAME_YPOS = 21; final int FLAME_ICON_U = 176; final int FLAME_ICON_V = 0; final int FLAME_WIDTH = 14; final int FLAME_HEIGHT = 14; final int FLAME_X_SPACING = 18; public GuiNuclearBoiler(InventoryPlayer invPlayer, TileNuclearBoiler tile) { super(new ContainerNuclearBoiler(invPlayer, tile)); this.tileEntity = tile; // width and height xSize = 176; ySize = 207; } @Override protected void drawGuiContainerBackgroundLayer(float partialTicks, int mouseX, int mouseY) { // Bind the image texture Minecraft.getMinecraft().getTextureManager().bindTexture(texture); // Draw the image GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F); drawTexturedModalRect(guiLeft, guiTop, 0, 0, xSize, ySize); // get cook progress as a double between 0 and 1 double cookProgress = tileEntity.fractionOfCookTimeComplete(); // draw the cook progress bar drawTexturedModalRect(guiLeft + COOK_BAR_XPOS, guiTop + COOK_BAR_YPOS, COOK_BAR_ICON_U, COOK_BAR_ICON_V, (int) (cookProgress * COOK_BAR_WIDTH), COOK_BAR_HEIGHT); // draw the fuel remaining bar for each fuel slot flame drawTexturedModalRect(guiLeft + (FLAME_XPOS - 1), guiTop + FLAME_YPOS, FLAME_ICON_U, FLAME_ICON_V, FLAME_WIDTH, FLAME_HEIGHT); } @Override protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY) { super.drawGuiContainerForegroundLayer(mouseX, mouseY); final int LABEL_XPOS = 65; final int LABEL_YPOS = 5; fontRendererObj.drawString(tileEntity.getDisplayName() .getUnformattedText(), LABEL_XPOS, LABEL_YPOS, Color.darkGray .getRGB()); List<String> hoveringText = new ArrayList<String>(); // If the mouse is over the progress bar add the progress bar hovering // text if (isInRect(guiLeft + COOK_BAR_XPOS, guiTop + COOK_BAR_YPOS, COOK_BAR_WIDTH, COOK_BAR_HEIGHT, mouseX, mouseY)) { int cookPercentage = (int) (tileEntity.fractionOfCookTimeComplete() * 100); hoveringText.add("Progress: " + cookPercentage + "%"); } // If the mouse is over one of the burn time indicator add the burn time // indicator hovering text if (isInRect(guiLeft + (FLAME_XPOS - 1), guiTop + FLAME_YPOS, FLAME_WIDTH, FLAME_HEIGHT, mouseX, mouseY)) { hoveringText.add("Fuel time: " + tileEntity.secondsOfFuelRemaining(0) + "s"); } // If hoveringText is not empty draw the hovering text if (!hoveringText.isEmpty()) { drawHoveringText(hoveringText, mouseX - guiLeft, mouseY - guiTop, fontRendererObj); } } // Returns true if the given x,y coordinates are within the given rectangle public static boolean isInRect(int x, int y, int xSize, int ySize, int mouseX, int mouseY) { return ((mouseX >= x && mouseX <= x + xSize) && (mouseY >= y && mouseY <= y + ySize)); } } And my ContainerNuclearBoiler class: package com.mod.gui.boiler; import com.mod.gui.refinery.TileRefinery; import com.mod.gui.refinery.ContainerRefinery.SlotFuel; import com.mod.gui.refinery.ContainerRefinery.SlotOutput; import com.mod.gui.refinery.ContainerRefinery.SlotSmeltableInput; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.InventoryPlayer; import net.minecraft.inventory.Container; import net.minecraft.inventory.ICrafting; import net.minecraft.inventory.IInventory; import net.minecraft.inventory.Slot; import net.minecraft.item.ItemStack; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; public class ContainerNuclearBoiler extends Container { // Stores the tile entity instance for later use private TileNuclearBoiler tile; private int[] cachedFields; private final int HOTBAR_SLOT_COUNT = 9; private final int PLAYER_INVENTORY_ROW_COUNT = 3; private final int PLAYER_INVENTORY_COLUMN_COUNT = 9; private final int PLAYER_INVENTORY_SLOT_COUNT = PLAYER_INVENTORY_COLUMN_COUNT * PLAYER_INVENTORY_ROW_COUNT; private final int VANILLA_SLOT_COUNT = HOTBAR_SLOT_COUNT + PLAYER_INVENTORY_SLOT_COUNT; public final int FUEL_SLOTS_COUNT = TileNuclearBoiler.FUEL_SLOTS_COUNT; public final int INPUT_SLOTS_COUNT = TileNuclearBoiler.INPUT_SLOTS_COUNT; public final int OUTPUT_SLOTS_COUNT = TileNuclearBoiler.OUTPUT_SLOTS_COUNT; public final int FURNACE_SLOTS_COUNT = FUEL_SLOTS_COUNT + INPUT_SLOTS_COUNT + OUTPUT_SLOTS_COUNT; // slot index is the unique index for all slots in this container i.e. 0 - // 35 for invPlayer then 36 - 49 for tileInventoryFurnace private final int VANILLA_FIRST_SLOT_INDEX = 0; private final int FIRST_FUEL_SLOT_INDEX = VANILLA_FIRST_SLOT_INDEX + VANILLA_SLOT_COUNT; private final int FIRST_INPUT_SLOT_INDEX = FIRST_FUEL_SLOT_INDEX + FUEL_SLOTS_COUNT; private final int FIRST_OUTPUT_SLOT_INDEX = FIRST_INPUT_SLOT_INDEX + INPUT_SLOTS_COUNT; // slot number is the slot number within each component; i.e. invPlayer // slots 0 - 35, and tileInventoryFurnace slots 0 - 14 private final int FIRST_FUEL_SLOT_NUMBER = 0; private final int FIRST_INPUT_SLOT_NUMBER = FIRST_FUEL_SLOT_NUMBER + FUEL_SLOTS_COUNT; private final int FIRST_OUTPUT_SLOT_NUMBER = FIRST_INPUT_SLOT_NUMBER + INPUT_SLOTS_COUNT; public ContainerNuclearBoiler(InventoryPlayer invPlayer, TileNuclearBoiler tile) { this.tile = tile; final int SLOT_X_SPACING = 18; final int SLOT_Y_SPACING = 18; final int HOTBAR_XPOS = 8; final int HOTBAR_YPOS = 142; // Add the players hotbar to the gui - the [xpos, ypos] location of each // item for (int x = 0; x < HOTBAR_SLOT_COUNT; x++) { int slotNumber = x; addSlotToContainer(new Slot(invPlayer, slotNumber, HOTBAR_XPOS + SLOT_X_SPACING * x, HOTBAR_YPOS)); } final int PLAYER_INVENTORY_XPOS = 8; final int PLAYER_INVENTORY_YPOS = 84; // Add the rest of the players inventory to the gui for (int y = 0; y < PLAYER_INVENTORY_ROW_COUNT; y++) { for (int x = 0; x < PLAYER_INVENTORY_COLUMN_COUNT; x++) { int slotNumber = HOTBAR_SLOT_COUNT + y * PLAYER_INVENTORY_COLUMN_COUNT + x; int xpos = PLAYER_INVENTORY_XPOS + x * SLOT_X_SPACING; int ypos = PLAYER_INVENTORY_YPOS + y * SLOT_Y_SPACING; addSlotToContainer(new Slot(invPlayer, slotNumber, xpos, ypos)); } } // FUEL SLOTS addSlotToContainer(new SlotFuel(tile, 0, 44, 18)); //addSlotToContainer(new SlotFuel(tile, 1, 79, 18)); // INPUT SLOTS addSlotToContainer(new SlotSmeltableInput(tile, 2, 21, 35)); // OUTPUT SLOT addSlotToContainer(new SlotOutput(tile, 3, 114, 35)); } // Checks each tick to make sure the player is still able to access the // inventory and if not closes the gui @Override public boolean canInteractWith(EntityPlayer player) { return tile.isUseableByPlayer(player); } // This is where you specify what happens when a player shift clicks a slot // in the gui // (when you shift click a slot in the TileEntity Inventory, it moves it to // the first available position in the hotbar and/or // player inventory. When you you shift-click a hotbar or player inventory // item, it moves it to the first available // position in the TileEntity inventory - either input or fuel as // appropriate for the item you clicked) // At the very least you must override this and return null or the game will // crash when the player shift clicks a slot // returns null if the source slot is empty, or if none of the source slot // items could be moved. // otherwise, returns a copy of the source stack @Override public ItemStack transferStackInSlot(EntityPlayer player, int sourceSlotIndex) { Slot sourceSlot = (Slot) inventorySlots.get(sourceSlotIndex); if (sourceSlot == null || !sourceSlot.getHasStack()) return null; ItemStack sourceStack = sourceSlot.getStack(); ItemStack copyOfSourceStack = sourceStack.copy(); // Check if the slot clicked is one of the vanilla container slots if (sourceSlotIndex >= VANILLA_FIRST_SLOT_INDEX && sourceSlotIndex < VANILLA_FIRST_SLOT_INDEX + VANILLA_SLOT_COUNT) { // This is a vanilla container slot so merge the stack into one of // the furnace slots // If the stack is smeltable try to merge merge the stack into the // input slots if (TileRefinery.getSmeltingResultForItem(sourceStack) != null) { if (!mergeItemStack(sourceStack, FIRST_INPUT_SLOT_INDEX, FIRST_INPUT_SLOT_INDEX + INPUT_SLOTS_COUNT, false)) { return null; } } else if (TileRefinery.getItemBurnTime(sourceStack) > 0) { if (!mergeItemStack(sourceStack, FIRST_FUEL_SLOT_INDEX, FIRST_FUEL_SLOT_INDEX + FUEL_SLOTS_COUNT, true)) { // Setting the boolean to true places the stack in the // bottom slot first return null; } } else { return null; } } else if (sourceSlotIndex >= FIRST_FUEL_SLOT_INDEX && sourceSlotIndex < FIRST_FUEL_SLOT_INDEX + FURNACE_SLOTS_COUNT) { // This is a furnace slot so merge the stack into the players // inventory: try the hotbar first and then the main inventory // because the main inventory slots are immediately after the hotbar // slots, we can just merge with a single call if (!mergeItemStack(sourceStack, VANILLA_FIRST_SLOT_INDEX, VANILLA_FIRST_SLOT_INDEX + VANILLA_SLOT_COUNT, false)) { return null; } } else { System.err.print("Invalid slotIndex:" + sourceSlotIndex); return null; } // If stack size == 0 (the entire stack was moved) set slot contents to // null if (sourceStack.stackSize == 0) { sourceSlot.putStack(null); } else { sourceSlot.onSlotChanged(); } sourceSlot.onPickupFromSlot(player, sourceStack); return copyOfSourceStack; } /* Client Synchronization */ // This is where you check if any values have changed and if so send an // update to any clients accessing this container // The container itemstacks are tested in Container.detectAndSendChanges, so // we don't need to do that // We iterate through all of the TileEntity Fields to find any which have // changed, and send them. // You don't have to use fields if you don't wish to; just manually match // the ID in sendProgressBarUpdate with the value in // updateProgressBar() // The progress bar values are restricted to shorts. If you have a larger // value (eg int), it's not a good idea to try and split it // up into two shorts because the progress bar values are sent // independently, and unless you add synchronisation logic at the // receiving side, your int value will be wrong until the second short // arrives. Use a custom packet instead. @Override public void detectAndSendChanges() { super.detectAndSendChanges(); boolean allFieldsHaveChanged = false; boolean fieldHasChanged[] = new boolean[tile.getFieldCount()]; if (cachedFields == null) { cachedFields = new int[tile.getFieldCount()]; allFieldsHaveChanged = true; } for (int i = 0; i < cachedFields.length; ++i) { if (allFieldsHaveChanged || cachedFields[i] != tile.getField(i)) { cachedFields[i] = tile.getField(i); fieldHasChanged[i] = true; } } // go through the list of crafters (players using this container) and // update them if necessary for (int i = 0; i < this.crafters.size(); ++i) { ICrafting icrafting = (ICrafting) this.crafters.get(i); for (int fieldID = 0; fieldID < tile.getFieldCount(); ++fieldID) { if (fieldHasChanged[fieldID]) { // Note that although sendProgressBarUpdate takes 2 ints on // a server these are truncated to shorts icrafting.sendProgressBarUpdate(this, fieldID, cachedFields[fieldID]); } } } } // Called when a progress bar update is received from the server. The two // values (id and data) are the same two // values given to sendProgressBarUpdate. In this case we are using fields // so we just pass them to the tileEntity. @SideOnly(Side.CLIENT) @Override public void updateProgressBar(int id, int data) { tile.setField(id, data); } // SlotFuel is a slot for fuel items public class SlotFuel extends Slot { public SlotFuel(IInventory inventoryIn, int index, int xPosition, int yPosition) { super(inventoryIn, index, xPosition, yPosition); } // if this function returns false, the player won't be able to insert // the given item into this slot @Override public boolean isItemValid(ItemStack stack) { return TileRefinery.isItemValidForFuelSlot(stack); } } // SlotSmeltableInput is a slot for input items public class SlotSmeltableInput extends Slot { public SlotSmeltableInput(IInventory inventoryIn, int index, int xPosition, int yPosition) { super(inventoryIn, index, xPosition, yPosition); } // if this function returns false, the player won't be able to insert // the given item into this slot @Override public boolean isItemValid(ItemStack stack) { return TileRefinery.isItemValidForInputSlot(stack); } } // SlotOutput is a slot that will not accept any items public class SlotOutput extends Slot { public SlotOutput(IInventory inventoryIn, int index, int xPosition, int yPosition) { super(inventoryIn, index, xPosition, yPosition); } // if this function returns false, the player won't be able to insert // the given item into this slot @Override public boolean isItemValid(ItemStack stack) { return TileRefinery.isItemValidForOutputSlot(stack); } } } Here is the crash stacktrace: [10:20:44] [main/INFO] [GradleStart]: Extra: [] [10:20:44] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/student/.gradle/caches/minecraft/assets, --assetIndex, 1.8, --accessToken, {REDACTED}, --version, 1.8, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [10:20:44] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [10:20:44] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [10:20:44] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [10:20:44] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [10:20:44] [main/INFO] [FML]: Forge Mod Loader version 8.99.116.1449 for Minecraft 1.8 loading [10:20:44] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_31, running on Windows 8.1:amd64:6.3, installed at C:\Program Files\Java\jre1.8.0_31 [10:20:44] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [10:20:44] [main/WARN] [FML]: The coremod codechicken.core.launch.CodeChickenCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [10:20:44] [main/WARN] [FML]: The coremod codechicken.lib.asm.CCLCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [10:20:44] [main/WARN] [FML]: The coremod codechicken.lib.asm.CCLCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [10:20:44] [main/WARN] [FML]: The coremod codechicken.nei.asm.NEICorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [10:20:44] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [10:20:44] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [10:20:44] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [10:20:44] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.core.asm.MCPDeobfuscationTransformer.LoadPlugin [10:20:44] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.lib.asm.CCLCorePlugin [10:20:44] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.core.launch.CodeChickenCorePlugin [10:20:44] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.lib.asm.CCLCorePlugin [10:20:44] [main/INFO] [GradleStart]: Injecting location in coremod codechicken.nei.asm.NEICorePlugin [10:20:44] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [10:20:44] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [10:20:44] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [10:20:44] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [10:20:44] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [10:20:44] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [10:20:44] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [10:20:45] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [10:20:45] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [10:20:45] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [10:20:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [10:20:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [10:20:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [10:20:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [10:20:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [10:20:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [10:20:46] [main/INFO] [GradleStart]: Remapping AccessTransformer rules... [10:20:46] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [10:20:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [10:20:46] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [10:20:47] [Client thread/INFO]: Setting user: Player85 [10:20:50] [Client thread/INFO]: LWJGL Version: 2.9.1 [10:20:51] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:235]: ---- Minecraft Crash Report ---- WARNING: coremods are present: CCLCorePlugin (CodeChickenLib-1.8-1.1.2.133-dev.jar) CodeChickenCorePlugin (CodeChickenCore-1.8-1.0.5.36-universal.jar) CCCDeobfPlugin (unknown) NEICorePlugin (NotEnoughItems-1.8-1.0.5.104-universal.jar) Contact their authors BEFORE contacting forge // You should try our sister game, Minceraft! Time: 6/19/15 10:20 AM Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.8 Operating System: Windows 8.1 (amd64) version 6.3 Java Version: 1.8.0_31, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 798468864 bytes (761 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): CCLCorePlugin (CodeChickenLib-1.8-1.1.2.133-dev.jar) codechicken.lib.asm.ClassHeirachyManager codechicken.lib.asm.RenderHookTransformer CodeChickenCorePlugin (CodeChickenCore-1.8-1.0.5.36-universal.jar) codechicken.core.asm.InterfaceDependancyTransformer codechicken.core.asm.TweakTransformer codechicken.core.asm.DelegatedTransformer codechicken.core.asm.DefaultImplementationTransformer CCCDeobfPlugin (unknown) NEICorePlugin (NotEnoughItems-1.8-1.0.5.104-universal.jar) codechicken.nei.asm.NEITransformer GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 350.12' Renderer: 'GeForce GT 755M/PCIe/SSE2' [10:20:51] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [10:20:51] [Client thread/INFO] [FML]: MinecraftForge v11.14.3.1449 Initialized [10:20:51] [Client thread/INFO] [FML]: Replaced 204 ore recipies [10:20:51] [Client thread/INFO] [FML]: Preloading CrashReport classes [10:20:51] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [10:20:51] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [10:20:51] [Client thread/INFO] [FML]: Searching C:\Users\student\Desktop\Lucas B\forge-1.8-11.14.3.1449-src\eclipse\mods for mods [10:20:51] [Client thread/INFO] [FML]: Also searching C:\Users\student\Desktop\Lucas B\forge-1.8-11.14.3.1449-src\eclipse\mods\1.8 for mods [10:20:52] [Client thread/INFO] [FML]: Forge Mod Loader has identified 6 mods to load [10:20:52] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, CodeChickenCore, NotEnoughItems, nuclearcraft] at CLIENT [10:20:52] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, CodeChickenCore, NotEnoughItems, nuclearcraft] at SERVER [10:20:53] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Not Enough Items, FMLFileResourcePack:NuclearCraft [10:20:53] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [10:20:53] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations [10:20:53] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [10:20:53] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [10:20:53] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [10:20:53] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:preinit:75]: Entering preinitalization phase.. [10:20:53] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:preinit:76]: Registering items... [10:20:53] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:preinit:91]: Items registered. [10:20:53] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:preinit:92]: Registering blocks... [10:20:53] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:preinit:104]: Blocks registered. [10:20:53] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:preinit:105]: Registering tile entities... [10:20:53] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:preinit:110]: Tile entities registered. [10:20:53] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:preinit:111]: Registering gui handler... [10:20:53] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:preinit:116]: Gui handler registered. [10:20:53] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:preinit:117]: Registering fuel handler... [10:20:53] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:preinit:119]: Fuel handler registered. [10:20:53] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:preinit:120]: Preinitalization phase ended. [10:20:53] [Client thread/INFO] [FML]: Applying holder lookups [10:20:53] [Client thread/INFO] [FML]: Holder lookups applied [10:20:53] [Client thread/INFO] [FML]: Injecting itemstacks [10:20:53] [Client thread/INFO] [FML]: Itemstack injection complete [10:20:53] [sound Library Loader/INFO]: Starting up SoundSystem... [10:20:53] [Thread-10/INFO]: Initializing LWJGL OpenAL [10:20:53] [Thread-10/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [10:20:53] [Thread-10/INFO]: OpenAL initialized. [10:20:54] [sound Library Loader/INFO]: Sound engine started [10:20:55] [Client thread/INFO]: Created: 512x512 textures-atlas [10:20:56] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:NuclearBoiler#burnbving_sides_count=3 not found [10:20:56] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:NuclearBoiler#burnbving_sides_count=2 not found [10:20:56] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:NuclearBoiler#burnbving_sides_count=4 not found [10:20:56] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:Refinery#burnbving_sides_count=0 not found [10:20:56] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:Refinery#burnbving_sides_count=2 not found [10:20:56] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:Refinery#burnbving_sides_count=1 not found [10:20:56] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:NuclearBoiler#inventory not found [10:20:56] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:Refinery#burnbving_sides_count=4 not found [10:20:56] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:Refinery#burnbving_sides_count=3 not found [10:20:56] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:NuclearBoiler#burnbving_sides_count=1 not found [10:20:56] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:NuclearBoiler#burnbving_sides_count=0 not found [10:20:57] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:init:125]: Entering initalization phase... [10:20:57] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:init:126]: Texturing items... [10:20:57] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:init:128]: Items textured. [10:20:57] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:init:129]: Texturing blocks... [10:20:57] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:init:131]: Blocks textured. [10:20:57] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:init:132]: Registering ore generator... [10:20:57] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:init:134]: Ore generator registered. [10:20:57] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:init:135]: Initalization phase ended. [10:20:57] [Client thread/INFO] [FML]: Injecting itemstacks [10:20:57] [Client thread/INFO] [FML]: Itemstack injection complete [10:20:57] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:postinit:140]: Entering postinitalization phase... [10:20:57] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:postinit:141]: Registering item recipes... [10:20:57] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:postinit:143]: Item recipes registered. [10:20:57] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:postinit:144]: Registering block recipes... [10:20:57] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:postinit:146]: Block recipes registered. [10:20:57] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:postinit:147]: Registering smelting recipes... [10:20:57] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:postinit:149]: Smelting recipes registered. [10:20:57] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:postinit:150]: Registering special names.. [10:20:57] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:postinit:152]: Special names registered. [10:20:57] [Client thread/INFO] [sTDOUT]: [com.mod.main.NuclearCraft:postinit:153]: Postinitalization phase ended. [10:20:57] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 6 mods [10:20:57] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Not Enough Items, FMLFileResourcePack:NuclearCraft [10:20:57] [Client thread/INFO]: SoundSystem shutting down... [10:20:57] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com [10:20:57] [sound Library Loader/INFO]: Starting up SoundSystem... [10:20:57] [Thread-13/INFO]: Initializing LWJGL OpenAL [10:20:57] [Thread-13/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [10:20:57] [Thread-13/INFO]: OpenAL initialized. [10:20:58] [sound Library Loader/INFO]: Sound engine started [10:20:59] [Client thread/INFO]: Created: 512x512 textures-atlas [10:20:59] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:NuclearBoiler#burnbving_sides_count=3 not found [10:20:59] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:NuclearBoiler#burnbving_sides_count=2 not found [10:20:59] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:NuclearBoiler#burnbving_sides_count=4 not found [10:20:59] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:Refinery#burnbving_sides_count=0 not found [10:20:59] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:Refinery#burnbving_sides_count=2 not found [10:20:59] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:Refinery#burnbving_sides_count=1 not found [10:20:59] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:NuclearBoiler#inventory not found [10:20:59] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:Refinery#burnbving_sides_count=4 not found [10:20:59] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:Refinery#burnbving_sides_count=3 not found [10:20:59] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:NuclearBoiler#burnbving_sides_count=1 not found [10:20:59] [Client thread/ERROR] [FML]: Model definition for location nuclearcraft:NuclearBoiler#burnbving_sides_count=0 not found [10:21:17] [server thread/INFO]: Starting integrated minecraft server version 1.8 [10:21:17] [server thread/INFO]: Generating keypair [10:21:17] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance [10:21:17] [server thread/INFO] [FML]: Applying holder lookups [10:21:17] [server thread/INFO] [FML]: Holder lookups applied [10:21:18] [server thread/INFO] [FML]: Loading dimension 0 (Swag) (net.minecraft.server.integrated.IntegratedServer@57ab7ad9) [10:21:18] [server thread/INFO] [FML]: Loading dimension 1 (Swag) (net.minecraft.server.integrated.IntegratedServer@57ab7ad9) [10:21:18] [server thread/INFO] [FML]: Loading dimension -1 (Swag) (net.minecraft.server.integrated.IntegratedServer@57ab7ad9) [10:21:18] [server thread/INFO]: Preparing start region for level 0 [10:21:19] [server thread/INFO]: Changing view distance to 12, from 10 [10:21:20] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2 [10:21:20] [Netty Server IO #1/INFO] [FML]: Client protocol version 2 [10:21:20] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 6 mods : CodeChickenCore@1.0.5.36,NotEnoughItems@1.0.5.104,FML@8.0.99.99,Forge@11.14.3.1449,mcp@9.05,nuclearcraft@1.0.0 [10:21:20] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established [10:21:20] [server thread/INFO] [FML]: [server thread] Server side modded connection established [10:21:20] [server thread/INFO]: Player85[local:E:686f6c5a] logged in with entity id 119 at (-135.1219394250137, 67.0, 164.79377712835569) [10:21:20] [server thread/INFO]: Player85 joined the game [10:21:22] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@203a658f[id=c843d906-43ab-3137-9682-b42949d12a2f,name=Player85,properties={},legacy=false] com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:65) ~[YggdrasilAuthenticationService.class:?] at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:158) [YggdrasilMinecraftSessionService.class:?] at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:53) [YggdrasilMinecraftSessionService$1.class:?] at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:50) [YggdrasilMinecraftSessionService$1.class:?] at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3524) [guava-17.0.jar:?] at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2317) [guava-17.0.jar:?] at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2280) [guava-17.0.jar:?] at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2195) [guava-17.0.jar:?] at com.google.common.cache.LocalCache.get(LocalCache.java:3934) [guava-17.0.jar:?] at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938) [guava-17.0.jar:?] at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821) [guava-17.0.jar:?] at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4827) [guava-17.0.jar:?] at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:148) [YggdrasilMinecraftSessionService.class:?] at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:138) [skinManager$3.class:?] at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) [?:1.8.0_31] at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_31] at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_31] at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_31] at java.lang.Thread.run(Unknown Source) [?:1.8.0_31] [10:21:22] [server thread/FATAL] [FML]: Exception caught executing FutureTask: java.util.concurrent.ExecutionException: java.lang.ArrayIndexOutOfBoundsException: 3 java.util.concurrent.ExecutionException: java.lang.ArrayIndexOutOfBoundsException: 3 at java.util.concurrent.FutureTask.report(Unknown Source) ~[?:1.8.0_31] at java.util.concurrent.FutureTask.get(Unknown Source) ~[?:1.8.0_31] at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:715) [FMLCommonHandler.class:?] at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:727) [MinecraftServer.class:?] at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669) [MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171) [integratedServer.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540) [MinecraftServer.class:?] at java.lang.Thread.run(Unknown Source) [?:1.8.0_31] Caused by: java.lang.ArrayIndexOutOfBoundsException: 3 at com.mod.gui.boiler.TileNuclearBoiler.getStackInSlot(TileNuclearBoiler.java:354) ~[TileNuclearBoiler.class:?] at net.minecraft.inventory.Slot.getStack(Slot.java:79) ~[slot.class:?] at net.minecraft.inventory.Container.getInventory(Container.java:75) ~[Container.class:?] at net.minecraft.inventory.Container.addCraftingToCrafters(Container.java:61) ~[Container.class:?] at net.minecraftforge.fml.common.network.internal.FMLNetworkHandler.openGui(FMLNetworkHandler.java:92) ~[FMLNetworkHandler.class:?] at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2577) ~[EntityPlayer.class:?] at com.mod.gui.boiler.NuclearBoiler.onBlockActivated(NuclearBoiler.java:44) ~[NuclearBoiler.class:?] at net.minecraft.server.management.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:476) ~[itemInWorldManager.class:?] at net.minecraft.network.NetHandlerPlayServer.processPlayerBlockPlacement(NetHandlerPlayServer.java:624) ~[NetHandlerPlayServer.class:?] at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:67) ~[C08PacketPlayerBlockPlacement.class:?] at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:114) ~[C08PacketPlayerBlockPlacement.class:?] at net.minecraft.network.PacketThreadUtil$1.run(PacketThreadUtil.java:24) ~[PacketThreadUtil$1.class:?] at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) ~[?:1.8.0_31] at java.util.concurrent.FutureTask.run(Unknown Source) ~[?:1.8.0_31] at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:714) ~[FMLCommonHandler.class:?] ... 5 more [10:21:22] [server thread/ERROR]: Encountered an unexpected exception net.minecraft.util.ReportedException: Ticking entity at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:781) ~[MinecraftServer.class:?] at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669) ~[MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171) ~[integratedServer.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540) [MinecraftServer.class:?] at java.lang.Thread.run(Unknown Source) [?:1.8.0_31] Caused by: java.lang.ArrayIndexOutOfBoundsException: 3 at com.mod.gui.boiler.TileNuclearBoiler.getStackInSlot(TileNuclearBoiler.java:354) ~[TileNuclearBoiler.class:?] at net.minecraft.inventory.Slot.getStack(Slot.java:79) ~[slot.class:?] at net.minecraft.inventory.Container.detectAndSendChanges(Container.java:97) ~[Container.class:?] at com.mod.gui.boiler.ContainerNuclearBoiler.detectAndSendChanges(ContainerNuclearBoiler.java:196) ~[ContainerNuclearBoiler.class:?] at net.minecraft.entity.player.EntityPlayerMP.onUpdate(EntityPlayerMP.java:263) ~[EntityPlayerMP.class:?] at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2031) ~[World.class:?] at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:758) ~[WorldServer.class:?] at net.minecraft.world.World.updateEntity(World.java:1997) ~[World.class:?] at net.minecraft.world.World.updateEntities(World.java:1823) ~[World.class:?] at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:587) ~[WorldServer.class:?] at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:775) ~[MinecraftServer.class:?] ... 4 more [10:21:22] [server thread/ERROR]: This crash report has been saved to: C:\Users\student\Desktop\Lucas B\forge-1.8-11.14.3.1449-src\eclipse\.\crash-reports\crash-2015-06-19_10.21.22-server.txt [10:21:22] [server thread/INFO]: Stopping server [10:21:22] [server thread/INFO]: Saving players [10:21:23] [server thread/INFO]: Saving worlds [10:21:23] [server thread/INFO]: Saving chunks for level 'Swag'/Overworld [10:21:23] [server thread/INFO]: Saving chunks for level 'Swag'/Nether [10:21:23] [server thread/INFO]: Saving chunks for level 'Swag'/The End [10:21:23] [server thread/INFO] [FML]: Unloading dimension 0 [10:21:23] [server thread/INFO] [FML]: Unloading dimension -1 [10:21:23] [server thread/INFO] [FML]: Unloading dimension 1 [10:21:23] [server thread/INFO] [FML]: Applying holder lookups [10:21:23] [server thread/INFO] [FML]: Holder lookups applied [10:21:23] [server thread/INFO] [FML]: The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded.
  16. Well, I mean, I don't want to have to remove Mekanism, and Tinker's Construct, and Minefactory Reloaded, and Steve's Carts... isn't there any other way?
  17. Nope. Still didn't work. Here's the new log: [17:48:26] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLServerTweaker [17:48:26] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLServerTweaker [17:48:26] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLServerTweaker [17:48:27] [main/INFO] [FML]: Forge Mod Loader version 7.10.114.1388 for Minecraft 1.7.10 loading [17:48:27] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_75, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7 [17:48:27] [main/INFO] [FML]: [AppEng] Core Init [17:48:28] [main/WARN] [FML]: The coremod codechicken.core.launch.CodeChickenCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:48:29] [main/WARN] [FML]: The coremod cofh.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:48:29] [main/WARN] [FML]: The coremod codechicken.core.launch.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:48:29] [main/WARN] [FML]: The coremod mods.immibis.core.ICCoreMod does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:48:29] [main/WARN] [FML]: The coremod ic2.core.coremod.IC2core does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:48:29] [main/WARN] [FML]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:48:29] [main/WARN] [FML]: The coremod mekanism.common.asm.LoadingHook does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:48:29] [main/WARN] [FML]: The coremod mrtjp.core.handler.CorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:48:29] [main/WARN] [FML]: The coremod codechicken.nei.asm.NEICorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:48:29] [main/WARN] [FML]: The coremod openblocks.OpenBlocksCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:48:29] [main/WARN] [FML]: The coremod openmods.core.OpenModsCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:48:29] [main/WARN] [FML]: The coremod codechicken.core.launch.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:48:29] [main/WARN] [FML]: The coremod xreliquary.common.asm.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:48:29] [main/WARN] [FML]: The coremod portablejim.veinminer.asm.VeinMinerCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:48:29] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [17:48:29] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [17:48:29] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [17:48:29] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [17:48:29] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:31] [main/INFO] [FML]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557 [17:48:31] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:31] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:31] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:31] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:31] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:31] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:31] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:31] [main/INFO] [iC2-core]: Loaded library EJML-core-0.26.jar. [17:48:31] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:31] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:31] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:33] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:33] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [17:48:33] [main/INFO] [sTDOUT]: [cofh.asm.CoFHAccessTransformer:readMappingFile:40]: Adding Accesstransformer map: CoFH_at.cfg [17:48:33] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [17:48:34] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [17:48:34] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [17:48:35] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer} [17:48:38] [server thread/INFO]: Starting minecraft server version 1.7.10 [17:48:38] [server thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [17:48:38] [server thread/INFO] [FML]: MinecraftForge v10.13.3.1388 Initialized [17:48:39] [server thread/INFO] [FML]: Replaced 183 ore recipies [17:48:39] [server thread/INFO] [FML]: Preloading CrashReport classes [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.World$1 [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.World$2 [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.World$3 [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.World$4 [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.chunk.Chunk$1 [17:48:39] [server thread/INFO] [FML]: net.minecraft.crash.CrashReportCategory$1 [17:48:39] [server thread/INFO] [FML]: net.minecraft.crash.CrashReportCategory$2 [17:48:39] [server thread/INFO] [FML]: net.minecraft.crash.CrashReportCategory$3 [17:48:39] [server thread/INFO] [FML]: net.minecraft.entity.Entity$1 [17:48:39] [server thread/INFO] [FML]: net.minecraft.entity.Entity$2 [17:48:39] [server thread/INFO] [FML]: net.minecraft.entity.EntityTracker$1 [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.gen.layer.GenLayer$1 [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.gen.layer.GenLayer$2 [17:48:39] [server thread/INFO] [FML]: net.minecraft.entity.player.InventoryPlayer$1 [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.gen.structure.MapGenStructure$1 [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.gen.structure.MapGenStructure$2 [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.gen.structure.MapGenStructure$3 [17:48:39] [server thread/INFO] [FML]: net.minecraft.server.MinecraftServer$3 [17:48:39] [server thread/INFO] [FML]: net.minecraft.server.MinecraftServer$4 [17:48:39] [server thread/INFO] [FML]: net.minecraft.server.MinecraftServer$5 [17:48:39] [server thread/INFO] [FML]: net.minecraft.nbt.NBTTagCompound$1 [17:48:39] [server thread/INFO] [FML]: net.minecraft.nbt.NBTTagCompound$2 [17:48:39] [server thread/INFO] [FML]: net.minecraft.network.NetHandlerPlayServer$2 [17:48:39] [server thread/INFO] [FML]: net.minecraft.network.NetworkSystem$3 [17:48:39] [server thread/INFO] [FML]: net.minecraft.tileentity.TileEntity$1 [17:48:39] [server thread/INFO] [FML]: net.minecraft.tileentity.TileEntity$2 [17:48:39] [server thread/INFO] [FML]: net.minecraft.tileentity.TileEntity$3 [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$1 [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$2 [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$3 [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$4 [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$5 [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$6 [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$7 [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$8 [17:48:39] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$9 [17:48:39] [server thread/INFO] [FML]: net.minecraft.server.dedicated.DedicatedServer$3 [17:48:39] [server thread/INFO] [FML]: net.minecraft.server.dedicated.DedicatedServer$4 [17:48:39] [server thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [17:48:39] [server thread/INFO] [FML]: [AppEng] Core Init [17:48:39] [server thread/INFO] [FML]: Searching C:\Users\Lucas\Desktop\Server\mods for mods [17:48:39] [server thread/INFO] [FML]: Also searching C:\Users\Lucas\Desktop\Server\mods\1.7.10 for mods [17:48:41] [server thread/WARN] [ChiselFacades]: Mod ChiselFacades is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.7.10-2.10-cricket [17:48:41] [server thread/INFO] [debug]: Mod debug is missing the required element 'name'. Substituting debug [17:48:41] [server thread/WARN] [debug]: Mod debug is missing the required element 'version' and no fallback can be found. Substituting '1.0'. [17:48:41] [server thread/WARN] [EnderStorage]: Mod EnderStorage is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.4.7.36 [17:48:42] [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.5 [17:48:43] [server thread/WARN] [neiintegration]: Mod neiintegration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.0.9 [17:48:43] [server thread/WARN] [ProjRed|Core]: Mod ProjRed|Core is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [17:48:43] [server thread/WARN] [ProjRed|Compatibility]: Mod ProjRed|Compatibility is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [17:48:43] [server thread/WARN] [ProjRed|Integration]: Mod ProjRed|Integration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [17:48:43] [server thread/WARN] [ProjRed|Transmission]: Mod ProjRed|Transmission is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [17:48:43] [server thread/WARN] [ProjRed|Illumination]: Mod ProjRed|Illumination is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [17:48:43] [server thread/WARN] [ProjRed|Expansion]: Mod ProjRed|Expansion is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [17:48:43] [server thread/WARN] [ProjRed|Transportation]: Mod ProjRed|Transportation is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [17:48:43] [server thread/WARN] [ProjRed|Exploration]: Mod ProjRed|Exploration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [17:48:43] [server thread/WARN] [simplyjetpacks]: Mod simplyjetpacks is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.4.1 [17:48:44] [server thread/WARN] [ThermalSmeltery]: Mod ThermalSmeltery is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.7.10-1.2.1 [17:48:44] [server thread/WARN] [ForgeMicroblock]: Mod ForgeMicroblock is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.344 [17:48:44] [server thread/WARN] [ForgeMultipart]: Mod ForgeMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.344 [17:48:44] [server thread/WARN] [McMultipart]: Mod McMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.344 [17:48:44] [server thread/WARN] [MrTJPCoreMod]: Mod MrTJPCoreMod is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.0.8.16 [17:48:44] [server thread/INFO] [FML]: Forge Mod Loader has identified 125 mods to load [17:48:44] [server thread/INFO] [FML]: Found mod(s) [ExtraUtilities] containing declared API package baubles.api (owned by Baubles) without associated API reference [17:48:44] [server thread/INFO] [FML]: Found mod(s) [EnderIO] containing declared API package mekanism.api.transmitters (owned by Mekanism) without associated API reference [17:48:44] [server thread/INFO] [FML]: Found mod(s) [EnderIO] containing declared API package com.cricketcraft.chisel.api (owned by Chisel) without associated API reference [17:48:44] [server thread/INFO] [FML]: Found mod(s) [stevesAddons] containing declared API package mcp.mobius.waila.api (owned by Waila) without associated API reference [17:48:44] [server thread/INFO] [FML]: Found mod(s) [exastris] containing declared API package cofh.api.energy (owned by CoFHAPI) without associated API reference [17:48:44] [server thread/INFO] [FML]: Found mod(s) [recycling] containing declared API package cofh.api.energy (owned by CoFHAPI) without associated API reference [17:48:44] [server thread/INFO] [FML]: Found mod(s) [simplyjetpacks] containing declared API package cofh.api (owned by CoFHLib) without associated API reference [17:48:44] [server thread/INFO] [FML]: Found mod(s) [EnderIO] containing declared API package mekanism.api (owned by Mekanism) without associated API reference [17:48:44] [server thread/INFO] [FML]: Found mod(s) [EnderIO] containing declared API package mekanism.api.gas (owned by Mekanism) without associated API reference [17:48:45] [server thread/INFO] [FML]: FML has found a non-mod file COFHLIB-[1.7.10]1.0.2-160.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible. [17:48:45] [server thread/INFO] [FML]: FML has found a non-mod file INDUSTRIALCRAFT-2-2.2.727-EXPERIMENTAL-API.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible. [17:48:45] [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. [17:48:45] [server thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, appliedenergistics2-core, CodeChickenCore, NotEnoughItems, VeinMiner_coremod, OpenModsCore, <CoFH ASM>, AdvancedMachines, ae2stuff, arsmagica2, AnimationAPI, appliedenergistics2, ArchimedesShips, asielib, bdlib, BigReactors, BuildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Silicon, BuildCraft|Core, BuildCraft|Transport, BuildCraft|Compat, bcadditions, CarpentersBlocks, chisel, ChiselFacades, CoFHCore, CompactMachines, ComputerCraft, computronics, debug, denseores, DraconicEvolution, EnderIO, EnderStorage, eureka, exastris, exnihilo, extracells, ExtraTiC, ExtraUtilities, advgenerators, HydCraft, IC2NuclearControl, ImmibisCore, ImmibisPeripherals, IC2, inventorytweaks, iridiummod, IronChest, JABBA, k4lib, magicalcrops, Mantle, Mekanism, MekanismGenerators, MekanismTools, Metallurgy, MetallurgyCore, meteors, 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, MineTweaker3, morechisels, NEIAddons, NEIAddons|AppEng, NEIAddons|Botany, NEIAddons|Forestry, NEIAddons|CraftingTables, NEIAddons|ExNihilo, neiintegration, NetherOres, OpenBlocks, OpenMods, ProjRed|Core, ProjRed|Compatibility, ProjRed|Integration, ProjRed|Transmission, ProjRed|Illumination, ProjRed|Expansion, ProjRed|Transportation, ProjRed|Exploration, xreliquary, simplyjetpacks, StevesAddons, StevesCarts, StevesFactoryManager, StevesWorkshop, TConstruct, ThermalDynamics, ThermalExpansion, ThermalFoundation, recycling, ThermalSmeltery, VeinMiner, VeinMinerModSupport, Waila, WailaHarvestability, WailaNBT, weaponmod, ForgeMicroblock, ForgeMultipart, McMultipart, libsandstone, MrTJPCoreMod] at CLIENT [17:48:45] [server thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, appliedenergistics2-core, CodeChickenCore, NotEnoughItems, VeinMiner_coremod, OpenModsCore, <CoFH ASM>, AdvancedMachines, ae2stuff, arsmagica2, AnimationAPI, appliedenergistics2, ArchimedesShips, asielib, bdlib, BigReactors, BuildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Silicon, BuildCraft|Core, BuildCraft|Transport, BuildCraft|Compat, bcadditions, CarpentersBlocks, chisel, ChiselFacades, CoFHCore, CompactMachines, ComputerCraft, computronics, debug, denseores, DraconicEvolution, EnderIO, EnderStorage, eureka, exastris, exnihilo, extracells, ExtraTiC, ExtraUtilities, advgenerators, HydCraft, IC2NuclearControl, ImmibisCore, ImmibisPeripherals, IC2, inventorytweaks, iridiummod, IronChest, JABBA, k4lib, magicalcrops, Mantle, Mekanism, MekanismGenerators, MekanismTools, Metallurgy, MetallurgyCore, meteors, 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, MineTweaker3, morechisels, NEIAddons, NEIAddons|AppEng, NEIAddons|Botany, NEIAddons|Forestry, NEIAddons|CraftingTables, NEIAddons|ExNihilo, neiintegration, NetherOres, OpenBlocks, OpenMods, ProjRed|Core, ProjRed|Compatibility, ProjRed|Integration, ProjRed|Transmission, ProjRed|Illumination, ProjRed|Expansion, ProjRed|Transportation, ProjRed|Exploration, xreliquary, simplyjetpacks, StevesAddons, StevesCarts, StevesFactoryManager, StevesWorkshop, TConstruct, ThermalDynamics, ThermalExpansion, ThermalFoundation, recycling, ThermalSmeltery, VeinMiner, VeinMinerModSupport, Waila, WailaHarvestability, WailaNBT, weaponmod, ForgeMicroblock, ForgeMultipart, McMultipart, libsandstone, MrTJPCoreMod] at SERVER [17:48:46] [server thread/INFO] [FML]: InvTweaks: net.minecraft.inventory.Container [17:48:47] [server thread/INFO] [sTDOUT]: [mods.immibis.core.ImmibisCore:initPreferredEnergySystem:163]: [immibis Core] Preferred energy system set to: ic2 [17:48:48] [server thread/INFO] [FML]: InvTweaks: net.minecraft.inventory.ContainerWorkbench [17:48:48] [server thread/INFO] [FML]: InvTweaks: net.minecraft.inventory.ContainerRepair [17:48:49] [server thread/INFO] [Draconic Evolution]: Hello Minecraft!!! [17:48:49] [server thread/INFO] [TConstruct]: Preparing to take over the world [17:48:50] [server thread/WARN] [FML]: ============================================================= [17:48:50] [server thread/WARN] [FML]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML! [17:48:50] [server thread/WARN] [FML]: Offendor: thirdParty/truetyper/TrueTypeFont.loadImage(Ljava/awt/image/BufferedImage;)I [17:48:50] [server thread/WARN] [FML]: Use FMLCommonHandler.exitJava instead [17:48:50] [server thread/WARN] [FML]: ============================================================= [17:48:51] [server thread/INFO] [FML]: Processing ObjectHolder annotations [17:48:52] [server thread/INFO] [FML]: Found 518 ObjectHolder annotations [17:48:52] [server thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [17:48:54] [server thread/INFO] [AE2:S]: Pre Initialization ( started ) [17:48:55] [server thread/INFO] [AE2-CORE]: func_145841_b(Lnet/minecraft/nbt/NBTTagCompound;)V - Transformed [17:48:55] [server thread/INFO] [AE2-CORE]: func_145839_a(Lnet/minecraft/nbt/NBTTagCompound;)V - Transformed [17:48:55] [server thread/INFO] [AE2-CORE]: Allowing Interface ic2.api.energy.tile.IEnergySink from appeng/tile/powersink/IC2 because IC2 integration is enabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Removing Interface Reika.RotaryCraft.API.Power.AdvancedShaftPowerReceiver from appeng/tile/powersink/RotaryCraft because RotaryCraft integration is disabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Removing Interface Reika.RotaryCraft.API.Interfaces.Transducerable from appeng/tile/powersink/RotaryCraft because RotaryCraft integration is disabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Removing Method Tick_RotaryCraft from appeng/tile/powersink/RotaryCraft because RotaryCraft integration is disabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Updated appeng/tile/powersink/RotaryCraft [17:48:55] [server thread/INFO] [AE2-CORE]: Allowing Interface cofh.api.energy.IEnergyReceiver from appeng/tile/powersink/RedstoneFlux because RF integration is enabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Allowing Interface mekanism.api.energy.IStrictEnergyAcceptor from appeng/tile/powersink/MekJoules because Mekanism integration is enabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Allowing Interface powercrystals.minefactoryreloaded.api.rednet.connectivity.IRedNetConnection from appeng/block/networking/BlockCableBus because MFR integration is enabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Allowing Method getConnectionType from appeng/block/networking/BlockCableBus because MFR integration is enabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Allowing Interface buildcraft.api.tools.IToolWrench from appeng/items/tools/quartz/ToolQuartzWrench because BC integration is enabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Allowing Interface ic2.api.item.ISpecialElectricItem from appeng/items/tools/powered/powersink/IC2 because IC2 integration is enabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Allowing Interface ic2.api.item.IElectricItemManager from appeng/items/tools/powered/powersink/IC2 because IC2 integration is enabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Allowing Method getManager from appeng/items/tools/powered/powersink/IC2 because IC2 integration is enabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Allowing Interface cofh.api.energy.IEnergyContainerItem from appeng/items/tools/powered/powersink/RedstoneFlux because RFItem integration is enabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Allowing Interface buildcraft.api.tools.IToolWrench from appeng/items/tools/ToolNetworkTool because BC integration is enabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Allowing Interface buildcraft.api.transport.IPipeConnection from appeng/parts/misc/PartStorageBus because BC integration is enabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Allowing Method overridePipeConnection from appeng/parts/misc/PartStorageBus because BC integration is enabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Allowing Interface buildcraft.api.transport.IPipeConnection from appeng/parts/p2p/PartP2PItems because BC integration is enabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Allowing Method overridePipeConnection from appeng/parts/p2p/PartP2PItems because BC integration is enabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Allowing Interface ic2.api.energy.tile.IEnergySink from appeng/parts/p2p/PartP2PIC2Power because IC2 integration is enabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Allowing Interface ic2.api.energy.tile.IEnergySource from appeng/parts/p2p/PartP2PIC2Power because IC2 integration is enabled. [17:48:55] [server thread/INFO] [AE2-CORE]: Allowing Interface cofh.api.energy.IEnergyReceiver from appeng/parts/p2p/PartP2PRFPower because RF integration is enabled. [17:48:55] [server thread/INFO] [AE2:S]: Starting AE2 VersionChecker [17:48:55] [server thread/INFO] [AE2:S]: Pre Initialization ( ended after 1901ms ) [17:48:55] [server thread/INFO] [bdlib]: bdlib 1.8.2.90 loaded [17:48:55] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.IllegalArgumentException: Raw channel stable did not contain any of the pre-programmed types. [17:48:55] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at appeng.services.version.VersionParser.parseChannel(VersionParser.java:117) [17:48:55] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at appeng.services.version.VersionParser.parseVersion(VersionParser.java:72) [17:48:55] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at appeng.services.version.VersionParser.parse(VersionParser.java:34) [17:48:55] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at appeng.services.version.ModVersionFetcher.get(ModVersionFetcher.java:34) [17:48:55] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at appeng.services.VersionChecker.processInterval(VersionChecker.java:106) [17:48:55] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at appeng.services.VersionChecker.run(VersionChecker.java:86) [17:48:55] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.run(Unknown Source) [17:48:56] [server thread/INFO] [bdlib]: Initialized network channel 'bdew.multiblock' for mod 'bdlib' [17:48:56] [server thread/INFO] [bdlib]: Loading internal config files for mod AE2 Stuff [17:48:56] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/AE2STUFF-0.3.0.30-MC1.7.10.jar!/assets/ae2stuff/config/tuning.cfg [17:48:56] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/AE2STUFF-0.3.0.30-MC1.7.10.jar!/assets/ae2stuff/config/recipes.cfg [17:48:57] [server thread/INFO] [bdlib]: Loading user config files for mod AE2 Stuff [17:48:57] [server thread/INFO] [bdlib]: Config loading for mod AE2 Stuff finished [17:48:57] [server thread/INFO] [bdlib]: Loaded creative tabs for ae2stuff [17:48:57] [server thread/INFO] [FML]: Ars Magica >> Extending Potions Array [17:48:57] [server thread/INFO] [FML]: Ars Magica >> injecting potions starting from index 32 [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Attempting to set enchantment magic_resist to ID 100 (configured currently as 100) [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Successfully registered enchanment! [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Attempting to set enchantment soulbound to ID 101 (configured currently as 101) [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Successfully registered enchanment! [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_phy [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_drn [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_fall [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_exp [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_fire [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_frst [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_mage [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_litn [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: mn_reg [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: bn_red [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: soulbnd [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: fl_lure [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: mg_xp [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: pp_ore [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: mg_gog [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: tc_nrv [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: stp_up [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: run_spd [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dispel [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: fallprot [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: fireprot [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: freedom [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: healing [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: hungerup [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: highjump [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: lifesave [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: lightstep [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: minespd [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: recoil [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: swimspd [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: wtrbrth [17:48:57] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: wtrwalk [17:48:57] [server thread/INFO] [CoFHWorld]: Registering Default Templates. [17:48:57] [server thread/INFO] [CoFHWorld]: Registering default generators [17:48:57] [server thread/INFO] [CoFHWorld]: Complete [17:48:58] [server thread/INFO] [ThermalFoundation]: Loading Plugins... [17:48:58] [server thread/INFO] [sTDOUT]: [cofh.thermalfoundation.plugins.mfr.MFRPlugin:preInit:14]: should work [17:48:58] [server thread/INFO] [ThermalFoundation]: Finished Loading Plugins. [17:48:59] [server thread/INFO] [ThermalExpansion]: Loading Plugins... [17:48:59] [server thread/INFO] [ThermalExpansion]: Finished Loading Plugins. [17:48:59] [server thread/INFO] [ThermalExpansion]: There are no crafting files present in C:\Users\Lucas\Desktop\Server\config\cofh\thermalexpansion\crafting. [17:48:59] [server thread/INFO] [buildCraft]: Starting BuildCraft 6.4.16 [17:48:59] [server thread/INFO] [buildCraft]: Copyright (c) SpaceToad, 2011-2015 [17:48:59] [server thread/INFO] [buildCraft]: http://www.mod-buildcraft.com [17:49:00] [server thread/INFO] [buildCraft Additions]: CompatModule 'Buildcraft' activated. [17:49:00] [server thread/INFO] [buildCraft Additions]: CompatModule 'Eureka' activated. [17:49:00] [server thread/ERROR] [buildCraft Additions]: CompatModule 'Framez' is missing a dependency: 'framez'! This module will not be loaded. [17:49:00] [server thread/INFO] [buildCraft Additions]: CompatModule 'Metals' activated. [17:49:00] [server thread/INFO] [buildCraft Additions]: CompatModule 'MineTweaker' activated. [17:49:00] [server thread/ERROR] [buildCraft Additions]: CompatModule 'Railcraft' is missing a dependency: 'Railcraft'! This module will not be loaded. [17:49:00] [server thread/INFO] [buildCraft Additions]: CompatModule 'Waila' activated. [17:49:01] [Thread-7/INFO] [buildCraft Additions]: Trying to get the special list file... [17:49:01] [Thread-7/INFO] [buildCraft Additions]: Successfully downloaded and read the special list file! [17:49:01] [server thread/INFO] [CarpentersBlocks]: Designs found: Bed(6), Chisel(9), FlowerPot(18), Tile(13) [17:49:02] [server thread/INFO] [Chisel 2]: Starting pre-init... [17:49:02] [server thread/INFO] [Chisel 2]: Loading blocks... [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature amber as its required mod Thaumcraft was missing. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature arcane as its required mod Thaumcraft was missing. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature bloodRune as its required mod AWWayofTime was missing. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature bloodBlock as its required mod AWWayofTime was missing. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature railcraft as its required mod Railcraft was missing. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature rcAbyssalBlock as its parent feature railcraft was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature rcBleachedBone as its parent feature railcraft was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature rcBloodStained as its parent feature railcraft was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature rcFrostBoundBlock as its parent feature railcraft was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature rcInfernalStone as its parent feature railcraft was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature rcQuarriedBlock as its parent feature railcraft was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature rcSandyStone as its parent feature railcraft was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature tallow as its required mod Thaumcraft was missing. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature twilghtForest as its required mod TwilightForest was missing. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature tfMazestone as its parent feature twilghtForest was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature tfTowerstone as its parent feature twilghtForest was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature tfUnderBrick as its parent feature twilghtForest was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature thaumium as its required mod Thaumcraft was missing. [17:49:02] [server thread/INFO] [Chisel 2]: 87 Feature's blocks loaded. [17:49:02] [server thread/INFO] [Chisel 2]: Loading Tile Entities... [17:49:02] [server thread/INFO] [Chisel 2]: Tile Entities loaded. [17:49:02] [server thread/INFO] [Chisel 2]: Loading items... [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature amber as its required mod Thaumcraft was missing. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature arcane as its required mod Thaumcraft was missing. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature bloodRune as its required mod AWWayofTime was missing. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature bloodBlock as its required mod AWWayofTime was missing. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature railcraft as its required mod Railcraft was missing. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature rcAbyssalBlock as its parent feature railcraft was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature rcBleachedBone as its parent feature railcraft was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature rcBloodStained as its parent feature railcraft was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature rcFrostBoundBlock as its parent feature railcraft was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature rcInfernalStone as its parent feature railcraft was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature rcQuarriedBlock as its parent feature railcraft was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature rcSandyStone as its parent feature railcraft was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature tallow as its required mod Thaumcraft was missing. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature twilghtForest as its required mod TwilightForest was missing. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature tfMazestone as its parent feature twilghtForest was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature tfTowerstone as its parent feature twilghtForest was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature tfUnderBrick as its parent feature twilghtForest was disabled. [17:49:02] [server thread/INFO] [Chisel 2]: Skipping feature thaumium as its required mod Thaumcraft was missing. [17:49:02] [server thread/INFO] [Chisel 2]: 87 Feature's items loaded. [17:49:02] [server thread/INFO] [Chisel 2]: Pre-init finished. [17:49:03] [server thread/INFO] [Compact Machines]: Registering dimension 3 on server side [17:49:05] [server thread/INFO] [EnderIO]: XP Juice regististration left to Open Blocks. [17:49:05] [server thread/INFO] [computronics]: Multiperipheral system for ComputerCraft engaged. Hooray! [17:49:05] [server thread/INFO] [computronics]: Multiple mods registering peripherals for the same block now won't be a problem anymore. [17:49:06] [server thread/INFO] [Draconic Evolution]: Finished PreInitialization [17:49:06] [server thread/INFO] [Mantle]: Mantle (1.7.10-0.3.2.jenkins184) -- Preparing for launch. [17:49:06] [server thread/INFO] [Mantle]: Entering preinitialization phase. [17:49:06] [server thread/INFO] [Mantle]: Loading configuration from disk. [17:49:06] [server thread/INFO] [Mantle]: Configuration load completed. [17:49:06] [server thread/INFO] [PulseManager-TConstruct]: Skipping Pulse Tinkers Thaumcraft Compatibility; missing dependency: Thaumcraft [17:49:06] [server thread/INFO] [PulseManager-TConstruct]: Skipping Pulse Tinkers Mystcraft Compatibility; missing dependency: Mystcraft [17:49:06] [server thread/INFO] [PulseManager-TConstruct]: Skipping Pulse Tinkers' Underground Biomes Compatiblity; missing dependency: UndergroundBiomes [17:49:09] [server thread/INFO] [extrautils]: Hello World [17:49:09] [server thread/INFO] [extrautils]: Registering Packet class PacketAngelRingNotifier with discriminator: 0 [17:49:09] [server thread/INFO] [extrautils]: Registering Packet class PacketGUIWidget with discriminator: 1 [17:49:09] [server thread/INFO] [extrautils]: Registering Packet class PacketParticle with discriminator: 2 [17:49:09] [server thread/INFO] [extrautils]: Registering Packet class PacketParticleEvent with discriminator: 3 [17:49:09] [server thread/INFO] [extrautils]: Registering Packet class PacketPlaySound with discriminator: 4 [17:49:09] [server thread/INFO] [extrautils]: Registering Packet class PacketRain with discriminator: 5 [17:49:09] [server thread/INFO] [extrautils]: Registering Packet class PacketUseItemAlt with discriminator: 6 [17:49:09] [server thread/INFO] [extrautils]: Registering Packet class PacketVillager with discriminator: 7 [17:49:09] [server thread/INFO] [extrautils]: Registering Packet class PacketVillagerReturn with discriminator: 8 [17:49:09] [server thread/INFO] [extrautils]: Registering Packet class PacketYoink with discriminator: 9 [17:49:09] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:extractor_base_remote.0 will now be used in the Ender Constructor [17:49:09] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:extractor_base_remote.6 will now be used in the Ender Constructor [17:49:09] [server thread/INFO] [extrautils]: Recipes constructing item.extrautils:nodeUpgrade.5 will now be used in the Ender Constructor [17:49:09] [server thread/INFO] [extrautils]: Recipes constructing item.extrautils:nodeUpgrade.6 will now be used in the Ender Constructor [17:49:09] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:magnumTorch will now be used in the Ender Constructor [17:49:09] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:endMarker will now be used in the Ender Constructor [17:49:09] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:extractor_base.12 will now be used in the Ender Constructor [17:49:09] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:enderQuarryUpgrade.0 will now be used in the Ender Constructor [17:49:09] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:extractor_base.13 will now be used in the Ender Constructor [17:49:09] [server thread/INFO] [extrautils]: Registering RecipeGlove to RecipeSorter [17:49:09] [server thread/INFO] [extrautils]: Registering RecipeMicroBlocks to RecipeSorter [17:49:09] [server thread/INFO] [extrautils]: Registering RecipeSoul to RecipeSorter [17:49:09] [server thread/INFO] [extrautils]: Registering RecipeMagicalWood to RecipeSorter [17:49:09] [server thread/INFO] [extrautils]: Registering RecipeCustomOres to RecipeSorter [17:49:09] [server thread/INFO] [extrautils]: Registering RecipeFilterInvert to RecipeSorter [17:49:09] [server thread/INFO] [extrautils]: Registering RecipeEnchantCrafting to RecipeSorter [17:49:09] [server thread/INFO] [extrautils]: Registering RecipeHorseTransmutation to RecipeSorter [17:49:09] [server thread/INFO] [extrautils]: Registering RecipeUnsigil to RecipeSorter [17:49:09] [server thread/INFO] [extrautils]: Registering RecipeUnEnchanting to RecipeSorter [17:49:09] [server thread/INFO] [extrautils]: Registering RecipeUnstableIngotCrafting to RecipeSorter [17:49:09] [server thread/INFO] [extrautils]: Registering RecipeUnstableNuggetCrafting to RecipeSorter [17:49:09] [server thread/INFO] [extrautils]: Registering RecipeUnstableCrafting to RecipeSorter [17:49:09] [server thread/INFO] [extrautils]: Registering RecipeDifficultySpecific to RecipeSorter [17:49:09] [server thread/INFO] [extrautils]: Registering RecipeBagDye to RecipeSorter [17:49:09] [server thread/INFO] [extrautils]: Registering RecipeGBEnchanting to RecipeSorter [17:49:09] [server thread/INFO] [ExtraTiC]: Metallurgy Detected [17:49:09] [server thread/INFO] [ExtraTiC]: Mekanism Detected [17:49:09] [server thread/INFO] [ExtraTiC]: Applied Energistics Detected [17:49:09] [server thread/INFO] [ExtraTiC]: Thaumic Integration / Thermal Smeltery Detected [17:49:09] [server thread/INFO] [ExtraTiC]: Dragonic Evolution Detected [17:49:09] [server thread/INFO] [ExtraTiC]: EnderIO Detected [17:49:09] [server thread/INFO] [ExtraTiC]: BigReactors Detected [17:49:09] [server thread/INFO] [ExtraTiC]: ExtraUtils Detected [17:49:09] [server thread/INFO] [ExtraTiC]: Thermal Foundation Detected [17:49:09] [server thread/INFO] [advgenerators]: IC2 Version: IC2 2.2.727-experimental [17:49:09] [server thread/INFO] [advgenerators]: RF Version: CoFHAPI 1.7.10R1.0.3 [17:49:09] [server thread/INFO] [bdlib]: Loading internal config files for mod Advanced Generators [17:49:09] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/GENERATORS-0.9.13.72-MC1.7.10.jar!/assets/advgenerators/config/generators.cfg [17:49:09] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/GENERATORS-0.9.13.72-MC1.7.10.jar!/assets/advgenerators/config/recipes.cfg [17:49:10] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/GENERATORS-0.9.13.72-MC1.7.10.jar!/assets/advgenerators/config/turbine.cfg [17:49:10] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/GENERATORS-0.9.13.72-MC1.7.10.jar!/assets/advgenerators/config/exchanger.cfg [17:49:10] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/GENERATORS-0.9.13.72-MC1.7.10.jar!/assets/advgenerators/config/syngas.cfg [17:49:10] [server thread/INFO] [bdlib]: Loading user config files for mod Advanced Generators [17:49:10] [server thread/INFO] [bdlib]: Config loading for mod Advanced Generators finished [17:49:10] [server thread/INFO] [bdlib]: Loaded creative tabs for advgenerators [17:49:10] [server thread/INFO] [advgenerators]: Fluid 'syngas' not registered by any other mod, creating... [17:49:10] [server thread/INFO] [advgenerators]: Adding block for fluid 'syngas' [17:49:10] [server thread/INFO] [HydCraft]: Hydraulicraft Starting! [17:49:12] [server thread/INFO] [meteors]: Baubles not found. Baubles integration disabled. [17:49:12] [server thread/INFO] [meteors]: Thaumcraft not found. Thaumcraft integration disabled. [17:49:12] [server thread/INFO] [More Chisels]: Logging is go! [17:49:12] [server thread/INFO] [NEIAddons|AppEng]: Version check success: appliedenergistics2 required / rv2-stable-3 detected [17:49:12] [server thread/INFO] [NEIAddons|Botany]: Wrong side: SERVER, Botany Addon not loading [17:49:12] [server thread/INFO] [NEIAddons|Forestry]: Required mod Forestry is not installed, dependent features will be unavailable [17:49:12] [server thread/ERROR] [NEIAddons|Forestry]: Requirements unmet, Forestry Addon not loading [17:49:12] [server thread/INFO] [NEIAddons|CraftingTables]: Wrong side: SERVER, Crafting Tables Addon not loading [17:49:12] [server thread/INFO] [NEIAddons|ExNihilo]: Wrong side: SERVER, Ex Nihilo Addon not loading [17:49:12] [server thread/INFO] [neiintegration]: Starting NEI Integration [17:49:12] [server thread/INFO] [neiintegration]: Loading configuration files [17:49:13] [server thread/INFO] [FML]: InvTweaks: net.minecraft.inventory.ContainerPlayer [17:49:14] [server thread/WARN] [Project Red]: Failed to load PR Plugin: Treecapitator gem axe compatibility [17:49:14] [server thread/WARN] [Project Red]: Failed to load PR Plugin: CPT Colored Lights Compat for Illumination lighting [17:49:15] [server thread/INFO] [simplyjetpacks]: Starting Simply Jetpacks [17:49:15] [server thread/INFO] [simplyjetpacks]: Loading configuration files [17:49:15] [server thread/INFO] [simplyjetpacks]: Constructing items [17:49:15] [server thread/INFO] [simplyjetpacks]: Registering items [17:49:15] [server thread/INFO] [simplyjetpacks]: Registering handlers [17:49:15] [server thread/INFO] [stevesAddons]: Applying Transformer to vswe.stevesfactory.blocks.BlockCableCluster [17:49:15] [server thread/INFO] [stevesAddons]: Applied CREATE_TE transformer [17:49:15] [server thread/INFO] [stevesAddons]: Applying Transformers to vswe.stevesfactory.blocks.TileEntityManager [17:49:15] [server thread/INFO] [stevesAddons]: Applied ACTIVATE_TRIGGER transformer [17:49:15] [server thread/INFO] [stevesAddons]: Applied MANAGER_INIT transformer [17:49:15] [server thread/INFO] [stevesAddons]: Applied UPDATE_ENTITY transformer [17:49:15] [server thread/INFO] [stevesAddons]: Applying Transformers to vswe.stevesfactory.blocks.TileEntityCluster [17:49:15] [server thread/INFO] [stevesAddons]: Applied PUBLIC_PAIR transformer [17:49:15] [server thread/INFO] [stevesAddons]: Applied GET_PUBLIC_REGISTRATIONS transformer [17:49:15] [server thread/INFO] [stevesAddons]: Applying Transformers to vswe.stevesfactory.blocks.TileEntityRFCluster [17:49:15] [server thread/INFO] [stevesAddons]: Applied GET_REGISTRATIONS transformer [17:49:15] [server thread/INFO] [stevesAddons]: Applied GET_RF_NODE transformer [17:49:15] [server thread/INFO] [stevesAddons]: Applying Transformer to vswe.stevesfactory.blocks.ConnectionBlockType [17:49:15] [server thread/INFO] [stevesAddons]: Applied IS_INSTANCE transformer [17:49:15] [server thread/INFO] [stevesAddons]: Applying Transformer to vswe.stevesfactory.components.ComponentMenuInterval [17:49:15] [server thread/INFO] [stevesAddons]: Applying Transformer to vswe.stevesfactory.components.ComponentMenuItem [17:49:15] [server thread/INFO] [stevesAddons]: Applying Transformers to vswe.stevesfactory.components.ComponentMenuContainerTypes [17:49:15] [server thread/INFO] [stevesAddons]: Applied WRITE_TO_NBT transformer [17:49:15] [server thread/INFO] [stevesAddons]: Applied READ_FROM_NBT transformer [17:49:17] [server thread/INFO] [FML]: Applying holder lookups [17:49:17] [server thread/WARN] [FML]: Unable to lookup CompactMachines:interfaceblock for public static org.dave.CompactMachines.block.BlockCM org.dave.CompactMachines.init.ModBlocks.interfaceblock. Is there something wrong with the registry? [17:49:17] [server thread/WARN] [FML]: Unable to lookup chisel:cobblestoneWall for public static com.cricketcraft.chisel.block.BlockMarbleWall com.cricketcraft.chisel.init.ChiselBlocks.cobblestoneWall. Is there something wrong with the registry? [17:49:17] [server thread/WARN] [FML]: Unable to lookup chisel:obsidian2 for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.obsidian2. Is there something wrong with the registry? [17:49:17] [server thread/WARN] [FML]: Unable to lookup chisel:arcane for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.arcane. Is there something wrong with the registry? [17:49:17] [server thread/WARN] [FML]: Unable to lookup chisel:thaumium for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.thaumium. Is there something wrong with the registry? [17:49:17] [server thread/WARN] [FML]: Unable to lookup chisel:tallow for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.tallow. Is there something wrong with the registry? [17:49:17] [server thread/WARN] [FML]: Unable to lookup chisel:bloodRune for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.bloodRune. Is there something wrong with the registry? [17:49:17] [server thread/WARN] [FML]: Unable to lookup chisel:bloodBrick for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.bloodBrick. Is there something wrong with the registry? [17:49:17] [server thread/INFO] [FML]: Holder lookups applied [17:49:17] [server thread/INFO]: Loading properties [17:49:17] [server thread/INFO]: Default game type: SURVIVAL [17:49:17] [server thread/INFO]: Generating keypair [17:49:17] [server thread/INFO]: Starting Minecraft server on *:25565 [17:49:17] [server thread/INFO] [FML]: InvTweaks: net.minecraft.inventory.ContainerEnchantment [17:49:18] [server thread/INFO] [AE2:S]: Initialization ( started ) [17:49:18] [server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.WoodenGear:0 [17:49:18] [server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.IronNugget:0 [17:49:18] [server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.GoldDust:0 [17:49:18] [server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.IronDust:0 [17:49:18] [server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.Silicon:0 [17:49:18] [server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.Silicon:0 [17:49:18] [server thread/INFO] [AE2:S]: Recipes Loading: Crusher: 9 loaded. [17:49:18] [server thread/INFO] [AE2:S]: Recipes Loading: Pulverizer: 9 loaded. [17:49:18] [server thread/INFO] [AE2:S]: Recipes Loading: Shaped: 202 loaded. [17:49:18] [server thread/INFO] [AE2:S]: Recipes Loading: Macerator: 8 loaded. [17:49:18] [server thread/INFO] [AE2:S]: Recipes Loading: MekCrusher: 3 loaded. [17:49:18] [server thread/INFO] [AE2:S]: Recipes Loading: GrindFZ: 7 loaded. [17:49:18] [server thread/INFO] [AE2:S]: Recipes Loading: MekEnrichment: 2 loaded. [17:49:18] [server thread/INFO] [AE2:S]: Recipes Loading: OreRegistration: 12 loaded. [17:49:18] [server thread/INFO] [AE2:S]: Recipes Loading: Shapeless: 55 loaded. [17:49:18] [server thread/INFO] [AE2:S]: Recipes Loading: Grind: 4 loaded. [17:49:18] [server thread/INFO] [AE2:S]: Recipes Loading: Press: 3 loaded. [17:49:18] [server thread/INFO] [AE2:S]: Recipes Loading: Inscribe: 8 loaded. [17:49:18] [server thread/INFO] [AE2:S]: Recipes Loading: Smelt: 2 loaded. [17:49:18] [server thread/INFO] [AE2:S]: Recipes Loading: HCCrusher: 9 loaded. [17:49:18] [server thread/INFO] [AE2:S]: Initialization ( ended after 534ms ) [17:49:18] [server thread/INFO] [bdlib]: Initialized network channel 'bdew.ae2stuff' for mod 'ae2stuff' [17:49:18] [server thread/WARN] [FML]: Redundant call to BiomeDictionary.registerAllBiomes ignored [17:49:19] [server thread/INFO] [FML]: Ars Magica 2 >> Unregistered spell part in skill trees: am2.spell.components.MeltArmor@6fd8adee [17:49:19] [server thread/INFO] [FML]: Ars Magica 2 >> Unregistered spell part in skill trees: am2.spell.components.ScrambleSynapses@7a831d9f [17:49:19] [server thread/INFO] [FML]: Ars Magica 2 >> Unregistered spell part in skill trees: am2.spell.components.Nauseate@360df08f [17:49:19] [server thread/INFO] [FML]: Ars Magica 2 >> Initializing API Hooks... [17:49:19] [server thread/INFO] [FML]: Ars Magica 2 >> Finished API Initialization [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 1, Name: Iron, Color multiplier: 13815497, Dust type: Metal [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 2, Name: Gold, Color multiplier: 16310039, Dust type: Metal [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 3, Name: Diamond, Color multiplier: 1305852, Dust type: Gem [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 55, Name: Emerald, Color multiplier: 45112, Dust type: Gem [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 56, Name: Coal, Color multiplier: 1776411, Dust type: Coal [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 57, Name: Charcoal, Color multiplier: 5458234, Dust type: Charcoal [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 58, Name: Obsidian, Color multiplier: 1511716, Dust type: Obsidian [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 59, Name: EnderPearl, Color multiplier: 1072721, Dust type: Ender Pearl [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 60, Name: NetherQuartz, Color multiplier: 14404799, Dust type: Nether Quartz [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 83, Name: GildedRedMetal, Color multiplier: 16739867, Dust type: Metal [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: oreRedstone Output: 10xitem.redstone@0 [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: oreCoal Output: 2xitem.coal@0 [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: oreLapis Output: 12xitem.dyePowder@4 [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: oreQuartz Output: 2xitem.netherquartz@0 [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: stone Output: 1xtile.gravel@0 [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: cobblestone Output: 1xtile.sand@0 [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: oreDiamond Output: 2xitem.diamond@0 [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: oreEmerald Output: 2xitem.emerald@0 [17:49:20] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: 1xitem.blazeRod@0 Output: 4xitem.blazePowder@0 [17:49:20] [server thread/INFO] [Chisel 2]: Starting init... [17:49:20] [server thread/INFO] [Chisel 2]: Loading recipes... [17:49:20] [server thread/INFO] [Chisel 2]: Skipping feature amber as its required mod Thaumcraft was missing. [17:49:20] [server thread/INFO] [Chisel 2]: Skipping feature arcane as its required mod Thaumcraft was missing. [17:49:20] [server thread/INFO] [Chisel 2]: Skipping feature bloodRune as its required mod AWWayofTime was missing. [17:49:20] [server thread/INFO] [Chisel 2]: Skipping feature bloodBlock as its required mod AWWayofTime was missing. [17:49:21] [server thread/INFO] [Chisel 2]: Skipping feature railcraft as its required mod Railcraft was missing. [17:49:21] [server thread/INFO] [Chisel 2]: Skipping feature rcAbyssalBlock as its parent feature railcraft was disabled. [17:49:21] [server thread/INFO] [Chisel 2]: Skipping feature rcBleachedBone as its parent feature railcraft was disabled. [17:49:21] [server thread/INFO] [Chisel 2]: Skipping feature rcBloodStained as its parent feature railcraft was disabled. [17:49:21] [server thread/INFO] [Chisel 2]: Skipping feature rcFrostBoundBlock as its parent feature railcraft was disabled. [17:49:21] [server thread/INFO] [Chisel 2]: Skipping feature rcInfernalStone as its parent feature railcraft was disabled. [17:49:21] [server thread/INFO] [Chisel 2]: Skipping feature rcQuarriedBlock as its parent feature railcraft was disabled. [17:49:21] [server thread/INFO] [Chisel 2]: Skipping feature rcSandyStone as its parent feature railcraft was disabled. [17:49:21] [server thread/INFO] [Chisel 2]: Skipping feature tallow as its required mod Thaumcraft was missing. [17:49:21] [server thread/INFO] [Chisel 2]: Skipping feature twilghtForest as its required mod TwilightForest was missing. [17:49:21] [server thread/INFO] [Chisel 2]: Skipping feature tfMazestone as its parent feature twilghtForest was disabled. [17:49:21] [server thread/INFO] [Chisel 2]: Skipping feature tfTowerstone as its parent feature twilghtForest was disabled. [17:49:21] [server thread/INFO] [Chisel 2]: Skipping feature tfUnderBrick as its parent feature twilghtForest was disabled. [17:49:21] [server thread/INFO] [Chisel 2]: Skipping feature thaumium as its required mod Thaumcraft was missing. [17:49:21] [server thread/INFO] [Chisel 2]: 87 Feature's recipes loaded. [17:49:21] [server thread/INFO] [Chisel 2]: Init finished. [17:49:21] [server thread/INFO] [ChiselFacades]: Creating Facades... [17:49:21] [server thread/INFO] [ChiselFacades]: Old pillars disabled, adding Pillar slab Facades [17:49:21] [server thread/INFO] [ChiselFacades]: Successfully created Facades for 36 Chisel block variations [17:49:24] [server thread/INFO] [Compact Machines]: Creating new Entangle Registry [17:49:33] [server thread/INFO] [Mantle]: Entering initialization phase. [17:49:36] [server thread/ERROR] [exastris]: Skipping event FMLInitializationEvent and marking errored mod exastris since required dependency exnihilo has errored [17:49:38] [server thread/ERROR] [ExtraTiC]: Skipping event FMLInitializationEvent and marking errored mod ExtraTiC since required dependency TConstruct has errored [17:49:47] [server thread/ERROR] [MekanismGenerators]: Skipping event FMLInitializationEvent and marking errored mod MekanismGenerators since required dependency Mekanism has errored [17:49:47] [server thread/ERROR] [MekanismTools]: Skipping event FMLInitializationEvent and marking errored mod MekanismTools since required dependency Mekanism has errored [17:49:48] [server thread/ERROR] [MineFactoryReloaded|CompatChococraft]: Skipping event FMLInitializationEvent and marking errored mod MineFactoryReloaded|CompatChococraft since required dependency MineFactoryReloaded has errored [17:49:58] [server thread/INFO] [NEIAddons]: Loading NEI Addons [17:49:58] [server thread/INFO] [NEIAddons]: Loading Applied Energistics 2 Addon... [17:50:15] [server thread/ERROR] [stevesAddons]: Skipping event FMLInitializationEvent and marking errored mod StevesAddons since required dependency StevesFactoryManager has errored [17:50:22] [server thread/ERROR] [ThermalSmeltery]: Skipping event FMLInitializationEvent and marking errored mod ThermalSmeltery since required dependency TConstruct has errored [17:50:24] [server thread/INFO] [denseores]: Ph'nglui mglw'nafh, y'uln Dense Ores shugg ch'agl [17:50:27] [server thread/ERROR] [FML]: Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue [17:50:27] [server thread/ERROR] [FML]: mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized FML{7.10.114.1388} [Forge Mod Loader] (forge.jar) Unloaded->Constructed->Pre-initialized->Initialized Forge{10.13.3.1388} [Minecraft Forge] (forge.jar) Unloaded->Constructed->Pre-initialized->Initialized appliedenergistics2-core{rv2-stable-3} [AppliedEnergistics2 Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized CodeChickenCore{1.0.6.43} [CodeChicken Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized NotEnoughItems{1.0.4.106} [Not Enough Items] (NOTENOUGHITEMS-1.7.10-1.0.4.106-UNIVERSAL.jar) Unloaded->Constructed->Pre-initialized->Initialized VeinMiner_coremod{0.27.1_build.unknown} [Core mod] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized OpenModsCore{0.7.3} [OpenModsCore] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized <CoFH ASM>{000} [CoFH ASM] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized debug{1.0} [debug] (DENSEORES-1.6.2.jar) Unloaded->Constructed->Pre-initialized->Initialized IC2{2.2.727-experimental} [industrialCraft 2] (INDUSTRIALCRAFT-2-2.2.727-EXPERIMENTAL.jar) Unloaded->Constructed->Pre-initialized->Initialized ImmibisCore{59.1.0} [immibis Core] (IMMIBIS-CORE-59.1.0.jar) Unloaded->Constructed->Pre-initialized->Initialized AdvancedMachines{59.0.2} [Advanced Machines] (ADVANCED-MACHINES-59.0.2.jar) Unloaded->Constructed->Pre-initialized->Initialized appliedenergistics2{rv2-stable-3} [Applied Energistics 2] (APPLIEDENERGISTICS2-RV2-STABLE-3.jar) Unloaded->Constructed->Pre-initialized->Initialized bdlib{1.8.2.90} [bD Lib] (bdlib-1.8.2.90-mc1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized ae2stuff{0.3.0.30} [AE2 Stuff] (AE2STUFF-0.3.0.30-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized AnimationAPI{1.2.4} [AnimationAPI] (AnimationAPI-1.7.10-1.2.4.jar) Unloaded->Constructed->Pre-initialized->Initialized arsmagica2{1.4.0.005} [Ars Magica 2] (AM2-1.4.0.006.jar) Unloaded->Constructed->Pre-initialized->Initialized ArchimedesShips{1.7.10 v1.7.1} [Archimedes' Ships] (ARCHIMEDESSHIPS-1.7.1.jar) Unloaded->Constructed->Pre-initialized->Initialized CoFHCore{1.7.10R3.0.2} [CoFH Core] (COFHCORE-[1.7.10]3.0.2-262.jar) Unloaded->Constructed->Pre-initialized->Initialized asielib{0.4.1} [asielib] (ASIELIB-1.7.10-0.4.1.jar) Unloaded->Constructed->Pre-initialized->Initialized ThermalFoundation{1.7.10R1.0.0} [Thermal Foundation] (THERMALFOUNDATION-[1.7.10]1.0.0-81.jar) Unloaded->Constructed->Pre-initialized->Initialized ThermalExpansion{1.7.10R4.0.1} [Thermal Expansion] (THERMALEXPANSION-[1.7.10]4.0.1-182.jar) Unloaded->Constructed->Pre-initialized->Initialized BigReactors{0.4.3A} [big Reactors] (BIGREACTORS-0.4.3A.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Core{6.4.16} [buildCraft] (BUILDCRAFT-6.4.16.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Builders{6.4.16} [bC Builders] (BUILDCRAFT-6.4.16.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Energy{6.4.16} [bC Energy] (BUILDCRAFT-6.4.16.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Factory{6.4.16} [bC Factory] (BUILDCRAFT-6.4.16.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Transport{6.4.16} [bC Transport] (BUILDCRAFT-6.4.16.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Silicon{6.4.16} [bC Silicon] (BUILDCRAFT-6.4.16.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Compat{6.4.0} [buildCraft Compat] (BUILDCRAFT-COMPAT-6.4.2.jar) Unloaded->Constructed->Pre-initialized->Initialized eureka{3.0.2} [Eureka] (EUREKA-1.7.10-3.0.2.jar) Unloaded->Constructed->Pre-initialized->Initialized bcadditions{2.1.2} [buildCraft Additions] (BUILDCRAFTADDITIONS-1.7.10-2.1.2.jar) Unloaded->Constructed->Pre-initialized->Initialized CarpentersBlocks{3.3.6} [Carpenter's Blocks] (CARPENTERS BLOCKS V3.3.6 - MC 1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized ForgeMultipart{1.2.0.344} [Forge Multipart] (ForgeMultipart-1.7.10-1.2.0.344-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized chisel{2.3.10.37} [Chisel 2] (CHISEL2-2.3.10.37.jar) Unloaded->Constructed->Pre-initialized->Initialized ChiselFacades{1.7.10-2.10-cricket} [Chisel Facades] (CHISELFACADES-1.7.10-2.10-CRICKET.jar) Unloaded->Constructed->Pre-initialized->Initialized MrTJPCoreMod{1.0.8.16} [MrTJPCore] (MrTJPCore-1.7.10-1.0.8.16-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized ProjRed|Core{4.6.2.82} [ProjectRed] (PROJECTRED-1.7.10-4.6.2.82-BASE.jar) Unloaded->Constructed->Pre-initialized->Initialized ProjRed|Transmission{4.6.2.82} [ProjectRed-Transmission] (PROJECTRED-1.7.10-4.6.2.82-INTEGRATION.jar) Unloaded->Constructed->Pre-initialized->Initialized Waila{1.5.10} [Waila] (Waila-1.5.10_1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized CompactMachines{1.7.10-1.19b} [Compact Machines] (COMPACTMACHINES-1.7.10-1.19B.jar) Unloaded->Constructed->Pre-initialized->Initialized ComputerCraft{1.73} [ComputerCraft] (COMPUTERCRAFT1.73.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded{1.7.10R2.8.0} [MineFactory Reloaded] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Errored MetallurgyCore{4.0.4} [Metallurgy Core] (METALLURGYCORE-1.7.10-4.0.4.18.jar) Unloaded->Constructed->Pre-initialized->Initialized Mekanism{8.1.3} [Mekanism] (MEKANISM-1.7.10-8.1.3.231.jar) Unloaded->Constructed->Pre-initialized->Errored EnderIO{1.7.10-2.2.8.381} [Ender IO] (ENDERIO-1.7.10-2.2.8.381.jar) Unloaded->Constructed->Pre-initialized->Errored computronics{1.5.1} [Computronics] (COMPUTRONICS-1.7.10-1.5.1.jar) Unloaded->Constructed->Pre-initialized->Errored DraconicEvolution{1.0.1c} [Draconic Evolution] (DRACONIC-EVOLUTION-1.7.10-1.0.1C.jar) Unloaded->Constructed->Pre-initialized->Errored EnderStorage{1.4.7.36} [EnderStorage] (ENDERSTORAGE-1.7.10-1.4.7.36-UNIVERSAL.jar) Unloaded->Constructed->Pre-initialized->Errored exnihilo{1.38-36} [Ex Nihilo] (Ex-Nihilo-1.38-36.jar) Unloaded->Constructed->Pre-initialized->Errored Mantle{1.7.10-0.3.2.jenkins184} [Mantle] (MANTLE-1.7.10-0.3.2.jar) Unloaded->Constructed->Pre-initialized->Initialized TConstruct{1.7.10-1.8.2.build858} [Tinkers' Construct] (TConstruct-1.7.10-1.8.2a.jar) Unloaded->Constructed->Pre-initialized->Errored Metallurgy{4.0.8} [Metallurgy 4] (METALLURGY-1.7.10-4.0.8.97.jar) Unloaded->Constructed->Pre-initialized->Errored exastris{MC1.7.10-1.16-35} [Ex Astris] (Ex-Astris-MC1.7.10-1.16-35.jar) Unloaded->Constructed->Pre-initialized->Errored extracells{2.2.70} [Extra Cells 2] (EXTRACELLS-1.7.10-2.2.70B119.jar) Unloaded->Constructed->Pre-initialized->Errored ExtraUtilities{1.2.5} [Extra Utilities] (EXTRAUTILITIES-1.2.5.jar) Unloaded->Constructed->Pre-initialized->Errored ExtraTiC{1.4.5} [ExtraTiC] (EXTRATIC-1.7.10-1.4.5.jar) Unloaded->Constructed->Pre-initialized->Errored advgenerators{0.9.13.72} [Advanced Generators] (GENERATORS-0.9.13.72-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Errored k4lib{1.7.10-0.1.35} [K4Lib] (K4LIB-1.7.10-0.1.35-UNIVERSAL.jar) Unloaded->Constructed->Pre-initialized->Initialized HydCraft{1.7.10-2.0.87} [Hydraulicraft] (HYDCRAFT-1.7.10-2.0.87-UNIVERSAL.jar) Unloaded->Constructed->Pre-initialized->Errored IC2NuclearControl{2.0.8c} [Nuclear Control 2] (IC2NUCLEARCONTROL-2.0.8C.jar) Unloaded->Constructed->Pre-initialized->Errored ImmibisPeripherals{59.0.2} [immibis's Peripherals] (IMMIBIS-PERIPHERALS-59.0.2.jar) Unloaded->Constructed->Pre-initialized->Errored inventorytweaks{1.59-dev-156-af3bc68} [inventory Tweaks] (INVENTORYTWEAKS-1.59-DEV-156.jar) Unloaded->Constructed->Pre-initialized->Errored iridiummod{1.0.1} [iridium Mod] (IRIDIUM MOD-1.0.2.jar) Unloaded->Constructed->Pre-initialized->Initialized IronChest{6.0.62.742} [iron Chest] (IRONCHEST-1.7.10-6.0.62.742-UNIVERSAL.jar) Unloaded->Constructed->Pre-initialized->Initialized JABBA{1.2.0b} [JABBA] (JABBA-1.2.1_1.7.10.jar) Unloaded->Constructed->Pre-initialized->Errored magicalcrops{4.0.0_PUBLIC_BETA_3} [Magical Crops] (MAGICALCROPS-4.0.0_PUBLIC_BETA_3.jar) Unloaded->Constructed->Pre-initialized->Errored MekanismGenerators{8.1.3} [MekanismGenerators] (MEKANISMGENERATORS-1.7.10-8.1.3.231.jar) Unloaded->Constructed->Pre-initialized->Errored MekanismTools{8.1.3} [MekanismTools] (MEKANISMTOOLS-1.7.10-8.1.3.231.jar) Unloaded->Constructed->Pre-initialized->Errored meteors{2.14.1} [Falling Meteors] (METEORS-1.7.10-2.14.1.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatAppliedEnergistics{1.7.10R2.8.0} [MFR Compat: Applied Energistics] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatAtum{1.7.10R2.8.0} [MFR Compat: Atum] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatBackTools{1.7.10R2.8.0} [MFR Compat: BackTools] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatBuildCraft{1.7.10R2.8.0} [MFR Compat: BuildCraft] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatChococraft{1.7.10R2.8.0} [MFR Compat: Chococraft] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatExtraBiomes{1.7.10R2.8.0} [MFR Compat: ExtraBiomes] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatForestry{1.7.10R2.8.0} [MFR Compat: Forestry] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatForgeMicroblock{1.7.10R2.8.0} [MFR Compat: ForgeMicroblock] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatIC2{1.7.10R2.8.0} [MFR Compat: IC2] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatMystcraft{1.7.10R2.8.0} [MFR Compat: Mystcraft] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized ProjRed|Exploration{4.6.2.82} [ProjectRed-Exploration] (PROJECTRED-1.7.10-4.6.2.82-WORLD.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatProjRed{1.7.10R2.8.0} [MFR Compat ProjectRed] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatRailcraft{1.7.10R2.8.0} [MFR Compat: Railcraft] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatSufficientBiomes{1.7.10R2.8.0} [MFR Compat: Sufficient Biomes] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatThaumcraft{1.7.10R2.8.0} [MFR Compat: Thaumcraft] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatThermalExpansion{1.7.10R2.8.0} [MFR Compat: Thermal Expansion] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatTConstruct{1.7.10R2.8.0} [MFR Compat: Tinkers' Construct] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatTwilightForest{1.7.10R2.8.0} [MFR Compat: TwilightForest] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatVanilla{1.7.10R2.8.0} [MFR Compat: Vanilla] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Errored MineTweaker3{3.0.9B} [MineTweaker 3] (MINETWEAKER3-1.7.10-3.0.9C.jar) Unloaded->Constructed->Pre-initialized->Initialized morechisels{@VERSION@} [More Chisels] (MORECHISELS-1.7.10-1.0-20.jar) Unloaded->Constructed->Pre-initialized->Errored NEIAddons{1.12.8.29} [NEI Addons] (NEIADDONS-1.12.8.29-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Errored NEIAddons|AppEng{1.12.8.29} [NEI Addons: Applied Energistics 2] (NEIADDONS-1.12.8.29-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized NEIAddons|Botany{1.12.8.29} [NEI Addons: Botany] (NEIADDONS-1.12.8.29-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized NEIAddons|Forestry{1.12.8.29} [NEI Addons: Forestry] (NEIADDONS-1.12.8.29-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized NEIAddons|CraftingTables{1.12.8.29} [NEI Addons: Crafting Tables] (NEIADDONS-1.12.8.29-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized NEIAddons|ExNihilo{1.12.8.29} [NEI Addons: Ex Nihilo] (NEIADDONS-1.12.8.29-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized neiintegration{1.0.9} [NEI Integration] (NEIINTEGRATION-MC1.7.10-1.0.9.jar) Unloaded->Constructed->Pre-initialized->Initialized NetherOres{1.7.10R2.3.0} [Nether Ores] (NETHERORES-[1.7.10]2.3.0-12.jar) Unloaded->Constructed->Pre-initialized->Errored OpenMods{0.7.3} [OpenMods] (OPENMODSLIB-1.7.10-0.7.3.jar) Unloaded->Constructed->Pre-initialized->Initialized OpenBlocks{1.4.3} [OpenBlocks] (OPENBLOCKS-1.7.10-1.4.3.jar) Unloaded->Constructed->Pre-initialized->Errored ProjRed|Transportation{4.6.2.82} [ProjectRed-Transportation] (PROJECTRED-1.7.10-4.6.2.82-MECHANICAL_BETA.jar) Unloaded->Constructed->Pre-initialized->Errored ProjRed|Compatibility{4.6.2.82} [ProjectRed-Compatibility] (PROJECTRED-1.7.10-4.6.2.82-COMPAT.jar) Unloaded->Constructed->Pre-initialized->Errored ProjRed|Integration{4.6.2.82} [ProjectRed-Integration] (PROJECTRED-1.7.10-4.6.2.82-INTEGRATION.jar) Unloaded->Constructed->Pre-initialized->Errored ProjRed|Illumination{4.6.2.82} [ProjectRed-Illumination] (PROJECTRED-1.7.10-4.6.2.82-LIGHTING.jar) Unloaded->Constructed->Pre-initialized->Errored ProjRed|Expansion{4.6.2.82} [ProjectRed-Expansion] (PROJECTRED-1.7.10-4.6.2.82-MECHANICAL_BETA.jar) Unloaded->Constructed->Pre-initialized->Errored libsandstone{1.0.0} [libsandstone] (LibSandstone-1.0.0.jar) Unloaded->Constructed->Pre-initialized->Initialized xreliquary{1.2} [Reliquary] (RELIQUARY-1.2.jar) Unloaded->Constructed->Pre-initialized->Errored simplyjetpacks{1.4.1} [simply Jetpacks] (SIMPLYJETPACKS-MC1.7.10-1.4.1.jar) Unloaded->Constructed->Pre-initialized->Errored StevesFactoryManager{A93} [steve's Factory Manager] (STEVESFACTORYMANAGERA93.jar) Unloaded->Constructed->Pre-initialized->Errored StevesAddons{0.10.12} [steve's Addons] (STEVESADDONS-1.7.10-0.10.12.jar) Unloaded->Constructed->Pre-initialized->Errored StevesCarts{2.0.0.b18} [steve's Carts 2] (STEVESCARTS2.0.0.B18.jar) Unloaded->Constructed->Pre-initialized->Errored StevesWorkshop{0.5.1} [steve's Workshop] (STEVESWORKSHOP-0.5.1.jar) Unloaded->Constructed->Pre-initialized->Errored ThermalDynamics{1.7.10R1.0.0} [Thermal Dynamics] (THERMALDYNAMICS-[1.7.10]1.0.0-122.jar) Unloaded->Constructed->Pre-initialized->Errored recycling{0.3.4.2} [Thermal Recycling] (THERMALRECYCLING-1.7.10-0.3.4.2.jar) Unloaded->Constructed->Pre-initialized->Errored ThermalSmeltery{1.7.10-1.2.1} [Thermal Smeltery] (THERMALSMELTERY-1.7.10-1.2.1.jar) Unloaded->Constructed->Pre-initialized->Errored VeinMiner{0.27.1_build.unknown} [Vein Miner] (VEINMINER-1.7.10_0.27.1.UNKNOWN.jar) Unloaded->Constructed->Pre-initialized->Initialized VeinMinerModSupport{0.27.1_build.unknown} [Mod Support] (VEINMINER-1.7.10_0.27.1.UNKNOWN.jar) Unloaded->Constructed->Pre-initialized->Errored WailaHarvestability{1.1.2} [Waila Harvestability] (WailaHarvestability-mc1.7.x-1.1.2.jar) Unloaded->Constructed->Pre-initialized->Initialized WailaNBT{1.4} [Waila NBT] (WailaNBT-1.7.10-1.4.jar) Unloaded->Constructed->Pre-initialized->Initialized weaponmod{v1.14.3} [balkon's WeaponMod] (WEAPONMOD-1.14.3.jar) Unloaded->Constructed->Pre-initialized->Errored McMultipart{1.2.0.344} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.2.0.344-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized denseores{1.0} [Dense Ores] (DENSEORES-1.6.2.jar) Unloaded->Constructed->Pre-initialized->Errored ForgeMicroblock{1.2.0.344} [Forge Microblocks] (ForgeMultipart-1.7.10-1.2.0.344-universal.jar) Unloaded->Constructed->Pre-initialized->Errored [17:50:27] [server thread/ERROR] [FML]: The following problems were captured during this phase [17:50:29] [server thread/WARN] [FML]: Can't revert to frozen GameData state without freezing first. [17:50:29] [server thread/INFO] [FML]: Applying holder lookups [17:50:29] [server thread/WARN] [FML]: Unable to lookup CompactMachines:interfaceblock for public static org.dave.CompactMachines.block.BlockCM org.dave.CompactMachines.init.ModBlocks.interfaceblock. Is there something wrong with the registry? [17:50:29] [server thread/WARN] [FML]: Unable to lookup chisel:cobblestoneWall for public static com.cricketcraft.chisel.block.BlockMarbleWall com.cricketcraft.chisel.init.ChiselBlocks.cobblestoneWall. Is there something wrong with the registry? [17:50:29] [server thread/WARN] [FML]: Unable to lookup chisel:obsidian2 for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.obsidian2. Is there something wrong with the registry? [17:50:29] [server thread/WARN] [FML]: Unable to lookup chisel:arcane for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.arcane. Is there something wrong with the registry? [17:50:29] [server thread/WARN] [FML]: Unable to lookup chisel:thaumium for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.thaumium. Is there something wrong with the registry? [17:50:29] [server thread/WARN] [FML]: Unable to lookup chisel:tallow for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.tallow. Is there something wrong with the registry? [17:50:29] [server thread/WARN] [FML]: Unable to lookup chisel:bloodRune for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.bloodRune. Is there something wrong with the registry? [17:50:29] [server thread/WARN] [FML]: Unable to lookup chisel:bloodBrick for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.bloodBrick. Is there something wrong with the registry? [17:50:29] [server thread/INFO] [FML]: Holder lookups applied [17:50:30] [server thread/ERROR] [exastris]: Skipping event FMLServerStoppedEvent and marking errored mod exastris since required dependency exnihilo has errored [17:50:30] [server thread/ERROR] [ExtraTiC]: Skipping event FMLServerStoppedEvent and marking errored mod ExtraTiC since required dependency TConstruct has errored [17:50:30] [server thread/ERROR] [MekanismGenerators]: Skipping event FMLServerStoppedEvent and marking errored mod MekanismGenerators since required dependency Mekanism has errored [17:50:30] [server thread/ERROR] [MekanismTools]: Skipping event FMLServerStoppedEvent and marking errored mod MekanismTools since required dependency Mekanism has errored [17:50:30] [server thread/ERROR] [MineFactoryReloaded|CompatChococraft]: Skipping event FMLServerStoppedEvent and marking errored mod MineFactoryReloaded|CompatChococraft since required dependency MineFactoryReloaded has errored [17:50:42] [server thread/ERROR] [stevesAddons]: Skipping event FMLServerStoppedEvent and marking errored mod StevesAddons since required dependency StevesFactoryManager has errored [17:50:42] [server thread/ERROR] [ThermalSmeltery]: Skipping event FMLServerStoppedEvent and marking errored mod ThermalSmeltery since required dependency TConstruct has errored [17:50:42] [server thread/INFO] [FML]: The state engine was in incorrect state ERRORED and forced into state SERVER_STOPPED. Errors may have been discarded. [17:50:42] [server thread/INFO] [FML]: The state engine was in incorrect state ERRORED and forced into state AVAILABLE. Errors may have been discarded.
  18. My server doesn't launch. Here's the log: [16:52:36] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLServerTweaker [16:52:36] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLServerTweaker [16:52:36] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLServerTweaker [16:52:37] [main/INFO] [FML]: Forge Mod Loader version 7.10.114.1388 for Minecraft 1.7.10 loading [16:52:37] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_75, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7 [16:52:37] [main/INFO] [FML]: [AppEng] Core Init [16:52:40] [main/WARN] [FML]: The coremod codechicken.core.launch.CodeChickenCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [16:52:40] [main/WARN] [FML]: The coremod cofh.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [16:52:40] [main/WARN] [FML]: The coremod codechicken.core.launch.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft [16:52:40] [main/WARN] [FML]: The coremod mods.immibis.core.ICCoreMod does not have a MCVersion annotation, it may cause issues with this version of Minecraft [16:52:40] [main/WARN] [FML]: The coremod ic2.core.coremod.IC2core does not have a MCVersion annotation, it may cause issues with this version of Minecraft [16:52:40] [main/WARN] [FML]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [16:52:40] [main/WARN] [FML]: The coremod mekanism.common.asm.LoadingHook does not have a MCVersion annotation, it may cause issues with this version of Minecraft [16:52:40] [main/WARN] [FML]: The coremod mrtjp.core.handler.CorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [16:52:40] [main/WARN] [FML]: The coremod codechicken.nei.asm.NEICorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [16:52:40] [main/WARN] [FML]: The coremod openblocks.OpenBlocksCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [16:52:40] [main/WARN] [FML]: The coremod openmods.core.OpenModsCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [16:52:40] [main/WARN] [FML]: The coremod codechicken.core.launch.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft [16:52:40] [main/WARN] [FML]: The coremod xreliquary.common.asm.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft [16:52:40] [main/WARN] [FML]: The coremod portablejim.veinminer.asm.VeinMinerCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [16:52:40] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [16:52:40] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [16:52:40] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [16:52:40] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [16:52:40] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:43] [main/INFO] [FML]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557 [16:52:43] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:43] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:43] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:43] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:43] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:43] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:43] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:43] [main/INFO] [iC2-core]: Loaded library EJML-core-0.26.jar. [16:52:43] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:43] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:43] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:44] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:44] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:44] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:44] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:44] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:44] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:45] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:45] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [16:52:45] [main/INFO] [sTDOUT]: [cofh.asm.CoFHAccessTransformer:readMappingFile:40]: Adding Accesstransformer map: CoFH_at.cfg [16:52:46] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:52:46] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [16:52:46] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [16:52:48] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer} [16:52:51] [server thread/INFO]: Starting minecraft server version 1.7.10 [16:52:52] [server thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [16:52:52] [server thread/INFO] [FML]: MinecraftForge v10.13.3.1388 Initialized [16:52:52] [server thread/INFO] [FML]: Replaced 183 ore recipies [16:52:52] [server thread/INFO] [FML]: Preloading CrashReport classes [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.World$1 [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.World$2 [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.World$3 [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.World$4 [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.chunk.Chunk$1 [16:52:52] [server thread/INFO] [FML]: net.minecraft.crash.CrashReportCategory$1 [16:52:52] [server thread/INFO] [FML]: net.minecraft.crash.CrashReportCategory$2 [16:52:52] [server thread/INFO] [FML]: net.minecraft.crash.CrashReportCategory$3 [16:52:52] [server thread/INFO] [FML]: net.minecraft.entity.Entity$1 [16:52:52] [server thread/INFO] [FML]: net.minecraft.entity.Entity$2 [16:52:52] [server thread/INFO] [FML]: net.minecraft.entity.EntityTracker$1 [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.gen.layer.GenLayer$1 [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.gen.layer.GenLayer$2 [16:52:52] [server thread/INFO] [FML]: net.minecraft.entity.player.InventoryPlayer$1 [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.gen.structure.MapGenStructure$1 [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.gen.structure.MapGenStructure$2 [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.gen.structure.MapGenStructure$3 [16:52:52] [server thread/INFO] [FML]: net.minecraft.server.MinecraftServer$3 [16:52:52] [server thread/INFO] [FML]: net.minecraft.server.MinecraftServer$4 [16:52:52] [server thread/INFO] [FML]: net.minecraft.server.MinecraftServer$5 [16:52:52] [server thread/INFO] [FML]: net.minecraft.nbt.NBTTagCompound$1 [16:52:52] [server thread/INFO] [FML]: net.minecraft.nbt.NBTTagCompound$2 [16:52:52] [server thread/INFO] [FML]: net.minecraft.network.NetHandlerPlayServer$2 [16:52:52] [server thread/INFO] [FML]: net.minecraft.network.NetworkSystem$3 [16:52:52] [server thread/INFO] [FML]: net.minecraft.tileentity.TileEntity$1 [16:52:52] [server thread/INFO] [FML]: net.minecraft.tileentity.TileEntity$2 [16:52:52] [server thread/INFO] [FML]: net.minecraft.tileentity.TileEntity$3 [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$1 [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$2 [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$3 [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$4 [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$5 [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$6 [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$7 [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$8 [16:52:52] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$9 [16:52:52] [server thread/INFO] [FML]: net.minecraft.server.dedicated.DedicatedServer$3 [16:52:52] [server thread/INFO] [FML]: net.minecraft.server.dedicated.DedicatedServer$4 [16:52:52] [server thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [16:52:52] [server thread/INFO] [FML]: [AppEng] Core Init [16:52:52] [server thread/INFO] [FML]: Searching C:\Users\Lucas\Desktop\Server\mods for mods [16:52:52] [server thread/INFO] [FML]: Also searching C:\Users\Lucas\Desktop\Server\mods\1.7.10 for mods [16:52:53] [server thread/WARN] [DamageIndicatorsMod]: Mod DamageIndicatorsMod is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 3.2.3 [16:52:55] [server thread/WARN] [ChiselFacades]: Mod ChiselFacades is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.7.10-2.10-cricket [16:52:55] [server thread/INFO] [debug]: Mod debug is missing the required element 'name'. Substituting debug [16:52:55] [server thread/WARN] [debug]: Mod debug is missing the required element 'version' and no fallback can be found. Substituting '1.0'. [16:52:56] [server thread/WARN] [EnderStorage]: Mod EnderStorage is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.4.7.36 [16:52:56] [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.5 [16:52:58] [server thread/WARN] [neiintegration]: Mod neiintegration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.0.9 [16:52:59] [server thread/WARN] [ProjRed|Core]: Mod ProjRed|Core is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [16:52:59] [server thread/WARN] [ProjRed|Compatibility]: Mod ProjRed|Compatibility is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [16:52:59] [server thread/WARN] [ProjRed|Integration]: Mod ProjRed|Integration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [16:52:59] [server thread/WARN] [ProjRed|Transmission]: Mod ProjRed|Transmission is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [16:52:59] [server thread/WARN] [ProjRed|Illumination]: Mod ProjRed|Illumination is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [16:52:59] [server thread/WARN] [ProjRed|Expansion]: Mod ProjRed|Expansion is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [16:52:59] [server thread/WARN] [ProjRed|Transportation]: Mod ProjRed|Transportation is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [16:52:59] [server thread/WARN] [ProjRed|Exploration]: Mod ProjRed|Exploration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [16:52:59] [server thread/WARN] [simplyjetpacks]: Mod simplyjetpacks is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.4.1 [16:53:00] [server thread/WARN] [ThermalSmeltery]: Mod ThermalSmeltery is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.7.10-1.2.1 [16:53:00] [server thread/WARN] [ForgeMicroblock]: Mod ForgeMicroblock is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.344 [16:53:00] [server thread/WARN] [ForgeMultipart]: Mod ForgeMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.344 [16:53:00] [server thread/WARN] [McMultipart]: Mod McMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.344 [16:53:01] [server thread/WARN] [MrTJPCoreMod]: Mod MrTJPCoreMod is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.0.8.16 [16:53:01] [server thread/INFO] [FML]: Forge Mod Loader has identified 126 mods to load [16:53:01] [server thread/INFO] [FML]: Found mod(s) [ExtraUtilities] containing declared API package baubles.api (owned by Baubles) without associated API reference [16:53:01] [server thread/INFO] [FML]: Found mod(s) [EnderIO] containing declared API package mekanism.api.transmitters (owned by Mekanism) without associated API reference [16:53:01] [server thread/INFO] [FML]: Found mod(s) [EnderIO] containing declared API package com.cricketcraft.chisel.api (owned by Chisel) without associated API reference [16:53:01] [server thread/INFO] [FML]: Found mod(s) [stevesAddons] containing declared API package mcp.mobius.waila.api (owned by Waila) without associated API reference [16:53:01] [server thread/INFO] [FML]: Found mod(s) [recycling] containing declared API package cofh.api.energy (owned by CoFHAPI) without associated API reference [16:53:01] [server thread/INFO] [FML]: Found mod(s) [exastris] containing declared API package cofh.api.energy (owned by CoFHAPI) without associated API reference [16:53:01] [server thread/INFO] [FML]: Found mod(s) [simplyjetpacks] containing declared API package cofh.api (owned by CoFHLib) without associated API reference [16:53:01] [server thread/INFO] [FML]: Found mod(s) [EnderIO] containing declared API package mekanism.api (owned by Mekanism) without associated API reference [16:53:01] [server thread/INFO] [FML]: Found mod(s) [EnderIO] containing declared API package mekanism.api.gas (owned by Mekanism) without associated API reference [16:53:03] [server thread/INFO] [FML]: FML has found a non-mod file COFHLIB-[1.7.10]1.0.2-160.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible. [16:53:03] [server thread/INFO] [FML]: FML has found a non-mod file INDUSTRIALCRAFT-2-2.2.727-EXPERIMENTAL-API.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible. [16:53:03] [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. [16:53:03] [server thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, appliedenergistics2-core, CodeChickenCore, NotEnoughItems, VeinMiner_coremod, OpenModsCore, <CoFH ASM>, DamageIndicatorsMod, AdvancedMachines, ae2stuff, arsmagica2, AnimationAPI, appliedenergistics2, ArchimedesShips, asielib, bdlib, BigReactors, BuildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Silicon, BuildCraft|Core, BuildCraft|Transport, BuildCraft|Compat, bcadditions, CarpentersBlocks, chisel, ChiselFacades, CoFHCore, CompactMachines, ComputerCraft, computronics, debug, denseores, DraconicEvolution, EnderIO, EnderStorage, eureka, exastris, exnihilo, extracells, ExtraTiC, ExtraUtilities, advgenerators, HydCraft, IC2NuclearControl, ImmibisCore, ImmibisPeripherals, IC2, inventorytweaks, iridiummod, IronChest, JABBA, k4lib, magicalcrops, Mantle, Mekanism, MekanismGenerators, MekanismTools, Metallurgy, MetallurgyCore, meteors, 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, MineTweaker3, morechisels, NEIAddons, NEIAddons|AppEng, NEIAddons|Botany, NEIAddons|Forestry, NEIAddons|CraftingTables, NEIAddons|ExNihilo, neiintegration, NetherOres, OpenBlocks, OpenMods, ProjRed|Core, ProjRed|Compatibility, ProjRed|Integration, ProjRed|Transmission, ProjRed|Illumination, ProjRed|Expansion, ProjRed|Transportation, ProjRed|Exploration, xreliquary, simplyjetpacks, StevesAddons, StevesCarts, StevesFactoryManager, StevesWorkshop, TConstruct, ThermalDynamics, ThermalExpansion, ThermalFoundation, recycling, ThermalSmeltery, VeinMiner, VeinMinerModSupport, Waila, WailaHarvestability, WailaNBT, weaponmod, ForgeMicroblock, ForgeMultipart, McMultipart, libsandstone, MrTJPCoreMod] at CLIENT [16:53:03] [server thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, appliedenergistics2-core, CodeChickenCore, NotEnoughItems, VeinMiner_coremod, OpenModsCore, <CoFH ASM>, DamageIndicatorsMod, AdvancedMachines, ae2stuff, arsmagica2, AnimationAPI, appliedenergistics2, ArchimedesShips, asielib, bdlib, BigReactors, BuildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Silicon, BuildCraft|Core, BuildCraft|Transport, BuildCraft|Compat, bcadditions, CarpentersBlocks, chisel, ChiselFacades, CoFHCore, CompactMachines, ComputerCraft, computronics, debug, denseores, DraconicEvolution, EnderIO, EnderStorage, eureka, exastris, exnihilo, extracells, ExtraTiC, ExtraUtilities, advgenerators, HydCraft, IC2NuclearControl, ImmibisCore, ImmibisPeripherals, IC2, inventorytweaks, iridiummod, IronChest, JABBA, k4lib, magicalcrops, Mantle, Mekanism, MekanismGenerators, MekanismTools, Metallurgy, MetallurgyCore, meteors, 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, MineTweaker3, morechisels, NEIAddons, NEIAddons|AppEng, NEIAddons|Botany, NEIAddons|Forestry, NEIAddons|CraftingTables, NEIAddons|ExNihilo, neiintegration, NetherOres, OpenBlocks, OpenMods, ProjRed|Core, ProjRed|Compatibility, ProjRed|Integration, ProjRed|Transmission, ProjRed|Illumination, ProjRed|Expansion, ProjRed|Transportation, ProjRed|Exploration, xreliquary, simplyjetpacks, StevesAddons, StevesCarts, StevesFactoryManager, StevesWorkshop, TConstruct, ThermalDynamics, ThermalExpansion, ThermalFoundation, recycling, ThermalSmeltery, VeinMiner, VeinMinerModSupport, Waila, WailaHarvestability, WailaNBT, weaponmod, ForgeMicroblock, ForgeMultipart, McMultipart, libsandstone, MrTJPCoreMod] at SERVER [16:53:04] [server thread/INFO] [FML]: InvTweaks: net.minecraft.inventory.Container [16:53:06] [server thread/INFO] [sTDOUT]: [mods.immibis.core.ImmibisCore:initPreferredEnergySystem:163]: [immibis Core] Preferred energy system set to: ic2 [16:53:11] [server thread/INFO] [FML]: InvTweaks: net.minecraft.inventory.ContainerWorkbench [16:53:11] [server thread/INFO] [FML]: InvTweaks: net.minecraft.inventory.ContainerRepair [16:53:13] [server thread/INFO] [Draconic Evolution]: Hello Minecraft!!! [16:53:13] [server thread/INFO] [TConstruct]: Preparing to take over the world [16:53:15] [server thread/WARN] [FML]: ============================================================= [16:53:15] [server thread/WARN] [FML]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML! [16:53:15] [server thread/WARN] [FML]: Offendor: thirdParty/truetyper/TrueTypeFont.loadImage(Ljava/awt/image/BufferedImage;)I [16:53:15] [server thread/WARN] [FML]: Use FMLCommonHandler.exitJava instead [16:53:15] [server thread/WARN] [FML]: ============================================================= [16:53:18] [server thread/INFO] [FML]: Processing ObjectHolder annotations [16:53:19] [server thread/INFO] [FML]: Found 518 ObjectHolder annotations [16:53:20] [server thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [16:53:23] [server thread/INFO] [AE2:S]: Pre Initialization ( started ) [16:53:24] [server thread/INFO] [AE2-CORE]: func_145839_a(Lnet/minecraft/nbt/NBTTagCompound;)V - Transformed [16:53:24] [server thread/INFO] [AE2-CORE]: func_145841_b(Lnet/minecraft/nbt/NBTTagCompound;)V - Transformed [16:53:24] [server thread/INFO] [AE2-CORE]: Allowing Interface ic2.api.energy.tile.IEnergySink from appeng/tile/powersink/IC2 because IC2 integration is enabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Removing Interface Reika.RotaryCraft.API.Power.AdvancedShaftPowerReceiver from appeng/tile/powersink/RotaryCraft because RotaryCraft integration is disabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Removing Interface Reika.RotaryCraft.API.Interfaces.Transducerable from appeng/tile/powersink/RotaryCraft because RotaryCraft integration is disabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Removing Method Tick_RotaryCraft from appeng/tile/powersink/RotaryCraft because RotaryCraft integration is disabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Updated appeng/tile/powersink/RotaryCraft [16:53:24] [server thread/INFO] [AE2-CORE]: Allowing Interface cofh.api.energy.IEnergyReceiver from appeng/tile/powersink/RedstoneFlux because RF integration is enabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Allowing Interface mekanism.api.energy.IStrictEnergyAcceptor from appeng/tile/powersink/MekJoules because Mekanism integration is enabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Allowing Interface powercrystals.minefactoryreloaded.api.rednet.connectivity.IRedNetConnection from appeng/block/networking/BlockCableBus because MFR integration is enabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Allowing Method getConnectionType from appeng/block/networking/BlockCableBus because MFR integration is enabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Allowing Interface buildcraft.api.tools.IToolWrench from appeng/items/tools/quartz/ToolQuartzWrench because BC integration is enabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Allowing Interface ic2.api.item.ISpecialElectricItem from appeng/items/tools/powered/powersink/IC2 because IC2 integration is enabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Allowing Interface ic2.api.item.IElectricItemManager from appeng/items/tools/powered/powersink/IC2 because IC2 integration is enabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Allowing Method getManager from appeng/items/tools/powered/powersink/IC2 because IC2 integration is enabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Allowing Interface cofh.api.energy.IEnergyContainerItem from appeng/items/tools/powered/powersink/RedstoneFlux because RFItem integration is enabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Allowing Interface buildcraft.api.tools.IToolWrench from appeng/items/tools/ToolNetworkTool because BC integration is enabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Allowing Interface buildcraft.api.transport.IPipeConnection from appeng/parts/misc/PartStorageBus because BC integration is enabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Allowing Method overridePipeConnection from appeng/parts/misc/PartStorageBus because BC integration is enabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Allowing Interface buildcraft.api.transport.IPipeConnection from appeng/parts/p2p/PartP2PItems because BC integration is enabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Allowing Method overridePipeConnection from appeng/parts/p2p/PartP2PItems because BC integration is enabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Allowing Interface ic2.api.energy.tile.IEnergySink from appeng/parts/p2p/PartP2PIC2Power because IC2 integration is enabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Allowing Interface ic2.api.energy.tile.IEnergySource from appeng/parts/p2p/PartP2PIC2Power because IC2 integration is enabled. [16:53:24] [server thread/INFO] [AE2-CORE]: Allowing Interface cofh.api.energy.IEnergyReceiver from appeng/parts/p2p/PartP2PRFPower because RF integration is enabled. [16:53:25] [server thread/INFO] [AE2:S]: Starting AE2 VersionChecker [16:53:25] [server thread/INFO] [AE2:S]: Pre Initialization ( ended after 1940ms ) [16:53:25] [server thread/INFO] [bdlib]: bdlib 1.8.2.90 loaded [16:53:25] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.IllegalArgumentException: Raw channel stable did not contain any of the pre-programmed types. [16:53:25] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at appeng.services.version.VersionParser.parseChannel(VersionParser.java:117) [16:53:25] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at appeng.services.version.VersionParser.parseVersion(VersionParser.java:72) [16:53:25] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at appeng.services.version.VersionParser.parse(VersionParser.java:34) [16:53:25] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at appeng.services.version.ModVersionFetcher.get(ModVersionFetcher.java:34) [16:53:25] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at appeng.services.VersionChecker.processInterval(VersionChecker.java:106) [16:53:25] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at appeng.services.VersionChecker.run(VersionChecker.java:86) [16:53:25] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.run(Unknown Source) [16:53:25] [server thread/INFO] [bdlib]: Initialized network channel 'bdew.multiblock' for mod 'bdlib' [16:53:26] [server thread/INFO] [bdlib]: Loading internal config files for mod AE2 Stuff [16:53:26] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/AE2STUFF-0.3.0.30-MC1.7.10.jar!/assets/ae2stuff/config/tuning.cfg [16:53:27] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/AE2STUFF-0.3.0.30-MC1.7.10.jar!/assets/ae2stuff/config/recipes.cfg [16:53:27] [server thread/INFO] [bdlib]: Loading user config files for mod AE2 Stuff [16:53:27] [server thread/INFO] [bdlib]: Config loading for mod AE2 Stuff finished [16:53:27] [server thread/INFO] [bdlib]: Loaded creative tabs for ae2stuff [16:53:28] [server thread/INFO] [FML]: Ars Magica >> Extending Potions Array [16:53:28] [server thread/INFO] [FML]: Ars Magica >> injecting potions starting from index 32 [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Attempting to set enchantment magic_resist to ID 100 (configured currently as 100) [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Successfully registered enchanment! [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Attempting to set enchantment soulbound to ID 101 (configured currently as 101) [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Successfully registered enchanment! [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_phy [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_drn [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_fall [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_exp [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_fire [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_frst [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_mage [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_litn [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: mn_reg [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: bn_red [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: soulbnd [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: fl_lure [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: mg_xp [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: pp_ore [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: mg_gog [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: tc_nrv [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: stp_up [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: run_spd [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dispel [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: fallprot [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: fireprot [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: freedom [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: healing [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: hungerup [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: highjump [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: lifesave [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: lightstep [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: minespd [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: recoil [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: swimspd [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: wtrbrth [16:53:28] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: wtrwalk [16:53:28] [server thread/INFO] [CoFHWorld]: Registering Default Templates. [16:53:29] [server thread/INFO] [CoFHWorld]: Registering default generators [16:53:29] [server thread/INFO] [CoFHWorld]: Complete [16:53:29] [server thread/INFO] [ThermalFoundation]: Loading Plugins... [16:53:29] [server thread/INFO] [sTDOUT]: [cofh.thermalfoundation.plugins.mfr.MFRPlugin:preInit:14]: should work [16:53:29] [server thread/INFO] [ThermalFoundation]: Finished Loading Plugins. [16:53:30] [server thread/INFO] [ThermalExpansion]: Loading Plugins... [16:53:30] [server thread/INFO] [ThermalExpansion]: Finished Loading Plugins. [16:53:30] [server thread/INFO] [ThermalExpansion]: There are no crafting files present in C:\Users\Lucas\Desktop\Server\config\cofh\thermalexpansion\crafting. [16:53:30] [server thread/INFO] [buildCraft]: Starting BuildCraft 6.4.16 [16:53:30] [server thread/INFO] [buildCraft]: Copyright (c) SpaceToad, 2011-2015 [16:53:30] [server thread/INFO] [buildCraft]: http://www.mod-buildcraft.com [16:53:32] [server thread/INFO] [buildCraft Additions]: CompatModule 'Buildcraft' activated. [16:53:32] [server thread/INFO] [buildCraft Additions]: CompatModule 'Eureka' activated. [16:53:32] [server thread/ERROR] [buildCraft Additions]: CompatModule 'Framez' is missing a dependency: 'framez'! This module will not be loaded. [16:53:32] [server thread/INFO] [buildCraft Additions]: CompatModule 'Metals' activated. [16:53:32] [server thread/INFO] [buildCraft Additions]: CompatModule 'MineTweaker' activated. [16:53:32] [server thread/ERROR] [buildCraft Additions]: CompatModule 'Railcraft' is missing a dependency: 'Railcraft'! This module will not be loaded. [16:53:32] [server thread/INFO] [buildCraft Additions]: CompatModule 'Waila' activated. [16:53:33] [Thread-7/INFO] [buildCraft Additions]: Trying to get the special list file... [16:53:33] [Thread-7/INFO] [buildCraft Additions]: Successfully downloaded and read the special list file! [16:53:33] [server thread/INFO] [CarpentersBlocks]: Designs found: Bed(6), Chisel(9), FlowerPot(18), Tile(13) [16:53:35] [server thread/INFO] [Chisel 2]: Starting pre-init... [16:53:35] [server thread/INFO] [Chisel 2]: Loading blocks... [16:53:35] [server thread/INFO] [Chisel 2]: Skipping feature amber as its required mod Thaumcraft was missing. [16:53:35] [server thread/INFO] [Chisel 2]: Skipping feature arcane as its required mod Thaumcraft was missing. [16:53:35] [server thread/INFO] [Chisel 2]: Skipping feature bloodRune as its required mod AWWayofTime was missing. [16:53:35] [server thread/INFO] [Chisel 2]: Skipping feature bloodBlock as its required mod AWWayofTime was missing. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature railcraft as its required mod Railcraft was missing. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature rcAbyssalBlock as its parent feature railcraft was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature rcBleachedBone as its parent feature railcraft was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature rcBloodStained as its parent feature railcraft was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature rcFrostBoundBlock as its parent feature railcraft was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature rcInfernalStone as its parent feature railcraft was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature rcQuarriedBlock as its parent feature railcraft was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature rcSandyStone as its parent feature railcraft was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature tallow as its required mod Thaumcraft was missing. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature twilghtForest as its required mod TwilightForest was missing. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature tfMazestone as its parent feature twilghtForest was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature tfTowerstone as its parent feature twilghtForest was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature tfUnderBrick as its parent feature twilghtForest was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature thaumium as its required mod Thaumcraft was missing. [16:53:36] [server thread/INFO] [Chisel 2]: 87 Feature's blocks loaded. [16:53:36] [server thread/INFO] [Chisel 2]: Loading Tile Entities... [16:53:36] [server thread/INFO] [Chisel 2]: Tile Entities loaded. [16:53:36] [server thread/INFO] [Chisel 2]: Loading items... [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature amber as its required mod Thaumcraft was missing. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature arcane as its required mod Thaumcraft was missing. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature bloodRune as its required mod AWWayofTime was missing. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature bloodBlock as its required mod AWWayofTime was missing. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature railcraft as its required mod Railcraft was missing. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature rcAbyssalBlock as its parent feature railcraft was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature rcBleachedBone as its parent feature railcraft was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature rcBloodStained as its parent feature railcraft was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature rcFrostBoundBlock as its parent feature railcraft was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature rcInfernalStone as its parent feature railcraft was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature rcQuarriedBlock as its parent feature railcraft was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature rcSandyStone as its parent feature railcraft was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature tallow as its required mod Thaumcraft was missing. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature twilghtForest as its required mod TwilightForest was missing. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature tfMazestone as its parent feature twilghtForest was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature tfTowerstone as its parent feature twilghtForest was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature tfUnderBrick as its parent feature twilghtForest was disabled. [16:53:36] [server thread/INFO] [Chisel 2]: Skipping feature thaumium as its required mod Thaumcraft was missing. [16:53:36] [server thread/INFO] [Chisel 2]: 87 Feature's items loaded. [16:53:36] [server thread/INFO] [Chisel 2]: Pre-init finished. [16:53:36] [server thread/INFO] [Compact Machines]: Registering dimension 3 on server side [16:53:40] [server thread/INFO] [EnderIO]: XP Juice regististration left to Open Blocks. [16:53:41] [server thread/INFO] [computronics]: Multiperipheral system for ComputerCraft engaged. Hooray! [16:53:41] [server thread/INFO] [computronics]: Multiple mods registering peripherals for the same block now won't be a problem anymore. [16:53:42] [server thread/INFO] [Draconic Evolution]: Finished PreInitialization [16:53:43] [server thread/INFO] [Mantle]: Mantle (1.7.10-0.3.2.jenkins184) -- Preparing for launch. [16:53:43] [server thread/INFO] [Mantle]: Entering preinitialization phase. [16:53:43] [server thread/INFO] [Mantle]: Loading configuration from disk. [16:53:43] [server thread/INFO] [Mantle]: Configuration load completed. [16:53:43] [server thread/INFO] [PulseManager-TConstruct]: Skipping Pulse Tinkers Thaumcraft Compatibility; missing dependency: Thaumcraft [16:53:43] [server thread/INFO] [PulseManager-TConstruct]: Skipping Pulse Tinkers Mystcraft Compatibility; missing dependency: Mystcraft [16:53:43] [server thread/INFO] [PulseManager-TConstruct]: Skipping Pulse Tinkers' Underground Biomes Compatiblity; missing dependency: UndergroundBiomes [16:53:46] [server thread/INFO] [extrautils]: Hello World [16:53:46] [server thread/INFO] [extrautils]: Registering Packet class PacketAngelRingNotifier with discriminator: 0 [16:53:46] [server thread/INFO] [extrautils]: Registering Packet class PacketGUIWidget with discriminator: 1 [16:53:46] [server thread/INFO] [extrautils]: Registering Packet class PacketParticle with discriminator: 2 [16:53:46] [server thread/INFO] [extrautils]: Registering Packet class PacketParticleEvent with discriminator: 3 [16:53:46] [server thread/INFO] [extrautils]: Registering Packet class PacketPlaySound with discriminator: 4 [16:53:46] [server thread/INFO] [extrautils]: Registering Packet class PacketRain with discriminator: 5 [16:53:46] [server thread/INFO] [extrautils]: Registering Packet class PacketUseItemAlt with discriminator: 6 [16:53:46] [server thread/INFO] [extrautils]: Registering Packet class PacketVillager with discriminator: 7 [16:53:46] [server thread/INFO] [extrautils]: Registering Packet class PacketVillagerReturn with discriminator: 8 [16:53:46] [server thread/INFO] [extrautils]: Registering Packet class PacketYoink with discriminator: 9 [16:53:46] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:extractor_base_remote.0 will now be used in the Ender Constructor [16:53:46] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:extractor_base_remote.6 will now be used in the Ender Constructor [16:53:46] [server thread/INFO] [extrautils]: Recipes constructing item.extrautils:nodeUpgrade.5 will now be used in the Ender Constructor [16:53:46] [server thread/INFO] [extrautils]: Recipes constructing item.extrautils:nodeUpgrade.6 will now be used in the Ender Constructor [16:53:46] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:magnumTorch will now be used in the Ender Constructor [16:53:46] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:endMarker will now be used in the Ender Constructor [16:53:46] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:extractor_base.12 will now be used in the Ender Constructor [16:53:46] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:enderQuarryUpgrade.0 will now be used in the Ender Constructor [16:53:46] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:extractor_base.13 will now be used in the Ender Constructor [16:53:47] [server thread/INFO] [extrautils]: Registering RecipeGlove to RecipeSorter [16:53:47] [server thread/INFO] [extrautils]: Registering RecipeMicroBlocks to RecipeSorter [16:53:47] [server thread/INFO] [extrautils]: Registering RecipeSoul to RecipeSorter [16:53:47] [server thread/INFO] [extrautils]: Registering RecipeMagicalWood to RecipeSorter [16:53:47] [server thread/INFO] [extrautils]: Registering RecipeCustomOres to RecipeSorter [16:53:47] [server thread/INFO] [extrautils]: Registering RecipeFilterInvert to RecipeSorter [16:53:47] [server thread/INFO] [extrautils]: Registering RecipeEnchantCrafting to RecipeSorter [16:53:47] [server thread/INFO] [extrautils]: Registering RecipeHorseTransmutation to RecipeSorter [16:53:47] [server thread/INFO] [extrautils]: Registering RecipeUnsigil to RecipeSorter [16:53:47] [server thread/INFO] [extrautils]: Registering RecipeUnEnchanting to RecipeSorter [16:53:47] [server thread/INFO] [extrautils]: Registering RecipeUnstableIngotCrafting to RecipeSorter [16:53:47] [server thread/INFO] [extrautils]: Registering RecipeUnstableNuggetCrafting to RecipeSorter [16:53:47] [server thread/INFO] [extrautils]: Registering RecipeUnstableCrafting to RecipeSorter [16:53:47] [server thread/INFO] [extrautils]: Registering RecipeDifficultySpecific to RecipeSorter [16:53:47] [server thread/INFO] [extrautils]: Registering RecipeBagDye to RecipeSorter [16:53:47] [server thread/INFO] [extrautils]: Registering RecipeGBEnchanting to RecipeSorter [16:53:47] [server thread/INFO] [ExtraTiC]: Metallurgy Detected [16:53:47] [server thread/INFO] [ExtraTiC]: Mekanism Detected [16:53:47] [server thread/INFO] [ExtraTiC]: Applied Energistics Detected [16:53:47] [server thread/INFO] [ExtraTiC]: Thaumic Integration / Thermal Smeltery Detected [16:53:47] [server thread/INFO] [ExtraTiC]: Dragonic Evolution Detected [16:53:47] [server thread/INFO] [ExtraTiC]: EnderIO Detected [16:53:47] [server thread/INFO] [ExtraTiC]: BigReactors Detected [16:53:47] [server thread/INFO] [ExtraTiC]: ExtraUtils Detected [16:53:47] [server thread/INFO] [ExtraTiC]: Thermal Foundation Detected [16:53:48] [server thread/INFO] [advgenerators]: IC2 Version: IC2 2.2.727-experimental [16:53:48] [server thread/INFO] [advgenerators]: RF Version: CoFHAPI 1.7.10R1.0.0 [16:53:48] [server thread/INFO] [bdlib]: Loading internal config files for mod Advanced Generators [16:53:48] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/GENERATORS-0.9.13.72-MC1.7.10.jar!/assets/advgenerators/config/generators.cfg [16:53:48] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/GENERATORS-0.9.13.72-MC1.7.10.jar!/assets/advgenerators/config/recipes.cfg [16:53:48] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/GENERATORS-0.9.13.72-MC1.7.10.jar!/assets/advgenerators/config/turbine.cfg [16:53:48] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/GENERATORS-0.9.13.72-MC1.7.10.jar!/assets/advgenerators/config/exchanger.cfg [16:53:48] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/GENERATORS-0.9.13.72-MC1.7.10.jar!/assets/advgenerators/config/syngas.cfg [16:53:48] [server thread/INFO] [bdlib]: Loading user config files for mod Advanced Generators [16:53:48] [server thread/INFO] [bdlib]: Config loading for mod Advanced Generators finished [16:53:48] [server thread/INFO] [bdlib]: Loaded creative tabs for advgenerators [16:53:49] [server thread/INFO] [advgenerators]: Fluid 'syngas' not registered by any other mod, creating... [16:53:49] [server thread/INFO] [advgenerators]: Adding block for fluid 'syngas' [16:53:49] [server thread/INFO] [HydCraft]: Hydraulicraft Starting! [16:53:51] [server thread/INFO] [meteors]: Baubles not found. Baubles integration disabled. [16:53:51] [server thread/INFO] [meteors]: Thaumcraft not found. Thaumcraft integration disabled. [16:53:51] [server thread/INFO] [More Chisels]: Logging is go! [16:53:51] [server thread/INFO] [NEIAddons|AppEng]: Version check success: appliedenergistics2 required / rv2-stable-3 detected [16:53:51] [server thread/INFO] [NEIAddons|Botany]: Wrong side: SERVER, Botany Addon not loading [16:53:51] [server thread/INFO] [NEIAddons|Forestry]: Required mod Forestry is not installed, dependent features will be unavailable [16:53:51] [server thread/ERROR] [NEIAddons|Forestry]: Requirements unmet, Forestry Addon not loading [16:53:51] [server thread/INFO] [NEIAddons|CraftingTables]: Wrong side: SERVER, Crafting Tables Addon not loading [16:53:51] [server thread/INFO] [NEIAddons|ExNihilo]: Wrong side: SERVER, Ex Nihilo Addon not loading [16:53:51] [server thread/INFO] [neiintegration]: Starting NEI Integration [16:53:51] [server thread/INFO] [neiintegration]: Loading configuration files [16:53:52] [server thread/INFO] [FML]: InvTweaks: net.minecraft.inventory.ContainerPlayer [16:53:53] [server thread/WARN] [Project Red]: Failed to load PR Plugin: Treecapitator gem axe compatibility [16:53:53] [server thread/WARN] [Project Red]: Failed to load PR Plugin: CPT Colored Lights Compat for Illumination lighting [16:53:54] [server thread/INFO] [simplyjetpacks]: Starting Simply Jetpacks [16:53:54] [server thread/INFO] [simplyjetpacks]: Loading configuration files [16:53:54] [server thread/INFO] [simplyjetpacks]: Constructing items [16:53:54] [server thread/INFO] [simplyjetpacks]: Registering items [16:53:54] [server thread/INFO] [simplyjetpacks]: Registering handlers [16:53:55] [server thread/INFO] [stevesAddons]: Applying Transformer to vswe.stevesfactory.blocks.BlockCableCluster [16:53:55] [server thread/INFO] [stevesAddons]: Applied CREATE_TE transformer [16:53:55] [server thread/INFO] [stevesAddons]: Applying Transformers to vswe.stevesfactory.blocks.TileEntityManager [16:53:55] [server thread/INFO] [stevesAddons]: Applied ACTIVATE_TRIGGER transformer [16:53:55] [server thread/INFO] [stevesAddons]: Applied MANAGER_INIT transformer [16:53:55] [server thread/INFO] [stevesAddons]: Applied UPDATE_ENTITY transformer [16:53:55] [server thread/INFO] [stevesAddons]: Applying Transformers to vswe.stevesfactory.blocks.TileEntityCluster [16:53:55] [server thread/INFO] [stevesAddons]: Applied PUBLIC_PAIR transformer [16:53:55] [server thread/INFO] [stevesAddons]: Applied GET_PUBLIC_REGISTRATIONS transformer [16:53:55] [server thread/INFO] [stevesAddons]: Applying Transformers to vswe.stevesfactory.blocks.TileEntityRFCluster [16:53:55] [server thread/INFO] [stevesAddons]: Applied GET_REGISTRATIONS transformer [16:53:55] [server thread/INFO] [stevesAddons]: Applied GET_RF_NODE transformer [16:53:55] [server thread/INFO] [stevesAddons]: Applying Transformer to vswe.stevesfactory.blocks.ConnectionBlockType [16:53:55] [server thread/INFO] [stevesAddons]: Applied IS_INSTANCE transformer [16:53:55] [server thread/INFO] [stevesAddons]: Applying Transformer to vswe.stevesfactory.components.ComponentMenuInterval [16:53:55] [server thread/INFO] [stevesAddons]: Applying Transformer to vswe.stevesfactory.components.ComponentMenuItem [16:53:55] [server thread/INFO] [stevesAddons]: Applying Transformers to vswe.stevesfactory.components.ComponentMenuContainerTypes [16:53:55] [server thread/INFO] [stevesAddons]: Applied WRITE_TO_NBT transformer [16:53:55] [server thread/INFO] [stevesAddons]: Applied READ_FROM_NBT transformer [16:53:57] [server thread/INFO] [FML]: Applying holder lookups [16:53:57] [server thread/WARN] [FML]: Unable to lookup chisel:cobblestoneWall for public static com.cricketcraft.chisel.block.BlockMarbleWall com.cricketcraft.chisel.init.ChiselBlocks.cobblestoneWall. Is there something wrong with the registry? [16:53:57] [server thread/WARN] [FML]: Unable to lookup chisel:obsidian2 for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.obsidian2. Is there something wrong with the registry? [16:53:57] [server thread/WARN] [FML]: Unable to lookup chisel:arcane for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.arcane. Is there something wrong with the registry? [16:53:57] [server thread/WARN] [FML]: Unable to lookup chisel:thaumium for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.thaumium. Is there something wrong with the registry? [16:53:57] [server thread/WARN] [FML]: Unable to lookup chisel:tallow for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.tallow. Is there something wrong with the registry? [16:53:57] [server thread/WARN] [FML]: Unable to lookup chisel:bloodRune for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.bloodRune. Is there something wrong with the registry? [16:53:57] [server thread/WARN] [FML]: Unable to lookup chisel:bloodBrick for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.bloodBrick. Is there something wrong with the registry? [16:53:57] [server thread/WARN] [FML]: Unable to lookup CompactMachines:interfaceblock for public static org.dave.CompactMachines.block.BlockCM org.dave.CompactMachines.init.ModBlocks.interfaceblock. Is there something wrong with the registry? [16:53:57] [server thread/INFO] [FML]: Holder lookups applied [16:53:57] [server thread/INFO]: Loading properties [16:53:57] [server thread/INFO]: Default game type: SURVIVAL [16:53:57] [server thread/INFO]: Generating keypair [16:53:57] [server thread/INFO]: Starting Minecraft server on *:25565 [16:53:57] [server thread/INFO] [FML]: InvTweaks: net.minecraft.inventory.ContainerEnchantment [16:53:58] [server thread/INFO] [AE2:S]: Initialization ( started ) [16:53:58] [server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.WoodenGear:0 [16:53:58] [server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.IronNugget:0 [16:53:58] [server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.GoldDust:0 [16:53:58] [server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.IronDust:0 [16:53:58] [server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.Silicon:0 [16:53:58] [server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.Silicon:0 [16:53:58] [server thread/INFO] [AE2:S]: Recipes Loading: Macerator: 8 loaded. [16:53:58] [server thread/INFO] [AE2:S]: Recipes Loading: Pulverizer: 9 loaded. [16:53:58] [server thread/INFO] [AE2:S]: Recipes Loading: Shapeless: 55 loaded. [16:53:58] [server thread/INFO] [AE2:S]: Recipes Loading: Inscribe: 8 loaded. [16:53:58] [server thread/INFO] [AE2:S]: Recipes Loading: HCCrusher: 9 loaded. [16:53:58] [server thread/INFO] [AE2:S]: Recipes Loading: MekCrusher: 3 loaded. [16:53:58] [server thread/INFO] [AE2:S]: Recipes Loading: Smelt: 2 loaded. [16:53:58] [server thread/INFO] [AE2:S]: Recipes Loading: Crusher: 9 loaded. [16:53:58] [server thread/INFO] [AE2:S]: Recipes Loading: OreRegistration: 12 loaded. [16:53:58] [server thread/INFO] [AE2:S]: Recipes Loading: Grind: 4 loaded. [16:53:58] [server thread/INFO] [AE2:S]: Recipes Loading: MekEnrichment: 2 loaded. [16:53:58] [server thread/INFO] [AE2:S]: Recipes Loading: GrindFZ: 7 loaded. [16:53:58] [server thread/INFO] [AE2:S]: Recipes Loading: Press: 3 loaded. [16:53:58] [server thread/INFO] [AE2:S]: Recipes Loading: Shaped: 202 loaded. [16:53:58] [server thread/INFO] [AE2:S]: Initialization ( ended after 440ms ) [16:53:58] [server thread/INFO] [bdlib]: Initialized network channel 'bdew.ae2stuff' for mod 'ae2stuff' [16:53:58] [server thread/WARN] [FML]: Redundant call to BiomeDictionary.registerAllBiomes ignored [16:53:59] [server thread/INFO] [FML]: Ars Magica 2 >> Unregistered spell part in skill trees: am2.spell.components.MeltArmor@669f9679 [16:53:59] [server thread/INFO] [FML]: Ars Magica 2 >> Unregistered spell part in skill trees: am2.spell.components.ScrambleSynapses@77501691 [16:53:59] [server thread/INFO] [FML]: Ars Magica 2 >> Unregistered spell part in skill trees: am2.spell.components.Nauseate@2af9c6c9 [16:53:59] [server thread/INFO] [FML]: Ars Magica 2 >> Initializing API Hooks... [16:53:59] [server thread/INFO] [FML]: Ars Magica 2 >> Finished API Initialization [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 1, Name: Iron, Color multiplier: 13815497, Dust type: Metal [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 2, Name: Gold, Color multiplier: 16310039, Dust type: Metal [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 3, Name: Diamond, Color multiplier: 1305852, Dust type: Gem [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 55, Name: Emerald, Color multiplier: 45112, Dust type: Gem [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 56, Name: Coal, Color multiplier: 1776411, Dust type: Coal [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 57, Name: Charcoal, Color multiplier: 5458234, Dust type: Charcoal [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 58, Name: Obsidian, Color multiplier: 1511716, Dust type: Obsidian [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 59, Name: EnderPearl, Color multiplier: 1072721, Dust type: Ender Pearl [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 60, Name: NetherQuartz, Color multiplier: 14404799, Dust type: Nether Quartz [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 83, Name: GildedRedMetal, Color multiplier: 16739867, Dust type: Metal [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: oreRedstone Output: 10xitem.redstone@0 [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: oreCoal Output: 2xitem.coal@0 [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: oreLapis Output: 12xitem.dyePowder@4 [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: oreQuartz Output: 2xitem.netherquartz@0 [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: stone Output: 1xtile.gravel@0 [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: cobblestone Output: 1xtile.sand@0 [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: oreDiamond Output: 2xitem.diamond@0 [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: oreEmerald Output: 2xitem.emerald@0 [16:54:01] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: 1xitem.blazeRod@0 Output: 4xitem.blazePowder@0 [16:54:01] [server thread/INFO] [Chisel 2]: Starting init... [16:54:01] [server thread/INFO] [Chisel 2]: Loading recipes... [16:54:01] [server thread/INFO] [Chisel 2]: Skipping feature amber as its required mod Thaumcraft was missing. [16:54:01] [server thread/INFO] [Chisel 2]: Skipping feature arcane as its required mod Thaumcraft was missing. [16:54:01] [server thread/INFO] [Chisel 2]: Skipping feature bloodRune as its required mod AWWayofTime was missing. [16:54:01] [server thread/INFO] [Chisel 2]: Skipping feature bloodBlock as its required mod AWWayofTime was missing. [16:54:01] [server thread/INFO] [Chisel 2]: Skipping feature railcraft as its required mod Railcraft was missing. [16:54:01] [server thread/INFO] [Chisel 2]: Skipping feature rcAbyssalBlock as its parent feature railcraft was disabled. [16:54:01] [server thread/INFO] [Chisel 2]: Skipping feature rcBleachedBone as its parent feature railcraft was disabled. [16:54:01] [server thread/INFO] [Chisel 2]: Skipping feature rcBloodStained as its parent feature railcraft was disabled. [16:54:01] [server thread/INFO] [Chisel 2]: Skipping feature rcFrostBoundBlock as its parent feature railcraft was disabled. [16:54:01] [server thread/INFO] [Chisel 2]: Skipping feature rcInfernalStone as its parent feature railcraft was disabled. [16:54:01] [server thread/INFO] [Chisel 2]: Skipping feature rcQuarriedBlock as its parent feature railcraft was disabled. [16:54:01] [server thread/INFO] [Chisel 2]: Skipping feature rcSandyStone as its parent feature railcraft was disabled. [16:54:01] [server thread/INFO] [Chisel 2]: Skipping feature tallow as its required mod Thaumcraft was missing. [16:54:01] [server thread/INFO] [Chisel 2]: Skipping feature twilghtForest as its required mod TwilightForest was missing. [16:54:01] [server thread/INFO] [Chisel 2]: Skipping feature tfMazestone as its parent feature twilghtForest was disabled. [16:54:01] [server thread/INFO] [Chisel 2]: Skipping feature tfTowerstone as its parent feature twilghtForest was disabled. [16:54:01] [server thread/INFO] [Chisel 2]: Skipping feature tfUnderBrick as its parent feature twilghtForest was disabled. [16:54:01] [server thread/INFO] [Chisel 2]: Skipping feature thaumium as its required mod Thaumcraft was missing. [16:54:01] [server thread/INFO] [Chisel 2]: 87 Feature's recipes loaded. [16:54:01] [server thread/INFO] [Chisel 2]: Init finished. [16:54:01] [server thread/INFO] [ChiselFacades]: Creating Facades... [16:54:01] [server thread/INFO] [ChiselFacades]: Old pillars disabled, adding Pillar slab Facades [16:54:01] [server thread/INFO] [ChiselFacades]: Successfully created Facades for 36 Chisel block variations [16:54:04] [server thread/INFO] [Compact Machines]: Creating new Entangle Registry [16:54:13] [server thread/INFO] [Mantle]: Entering initialization phase. [16:54:15] [server thread/ERROR] [exastris]: Skipping event FMLInitializationEvent and marking errored mod exastris since required dependency exnihilo has errored [16:54:17] [server thread/ERROR] [ExtraTiC]: Skipping event FMLInitializationEvent and marking errored mod ExtraTiC since required dependency TConstruct has errored [16:54:24] [server thread/ERROR] [MekanismGenerators]: Skipping event FMLInitializationEvent and marking errored mod MekanismGenerators since required dependency Mekanism has errored [16:54:24] [server thread/ERROR] [MekanismTools]: Skipping event FMLInitializationEvent and marking errored mod MekanismTools since required dependency Mekanism has errored [16:54:25] [server thread/ERROR] [MineFactoryReloaded|CompatChococraft]: Skipping event FMLInitializationEvent and marking errored mod MineFactoryReloaded|CompatChococraft since required dependency MineFactoryReloaded has errored [16:54:34] [server thread/INFO] [NEIAddons]: Loading NEI Addons [16:54:34] [server thread/INFO] [NEIAddons]: Loading Applied Energistics 2 Addon... [16:54:46] [server thread/ERROR] [stevesAddons]: Skipping event FMLInitializationEvent and marking errored mod StevesAddons since required dependency StevesFactoryManager has errored [16:54:51] [server thread/ERROR] [ThermalSmeltery]: Skipping event FMLInitializationEvent and marking errored mod ThermalSmeltery since required dependency TConstruct has errored [16:54:54] [server thread/INFO] [denseores]: Ph'nglui mglw'nafh, y'uln Dense Ores shugg ch'agl [16:54:56] [server thread/ERROR] [FML]: Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue [16:54:56] [server thread/ERROR] [FML]: mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized FML{7.10.114.1388} [Forge Mod Loader] (forge.jar) Unloaded->Constructed->Pre-initialized->Initialized Forge{10.13.3.1388} [Minecraft Forge] (forge.jar) Unloaded->Constructed->Pre-initialized->Initialized appliedenergistics2-core{rv2-stable-3} [AppliedEnergistics2 Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized CodeChickenCore{1.0.6.43} [CodeChicken Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized NotEnoughItems{1.0.4.106} [Not Enough Items] (NOTENOUGHITEMS-1.7.10-1.0.4.106-UNIVERSAL.jar) Unloaded->Constructed->Pre-initialized->Initialized VeinMiner_coremod{0.27.1_build.unknown} [Core mod] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized OpenModsCore{0.7.3} [OpenModsCore] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized <CoFH ASM>{000} [CoFH ASM] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized debug{1.0} [debug] (DENSEORES-1.6.2.jar) Unloaded->Constructed->Pre-initialized->Initialized DamageIndicatorsMod{3.2.3} [Damage Indicators] ([1.7.10]DAMAGEINDICATORSMOD-3.2.3.jar) Unloaded->Constructed->Pre-initialized->Errored IC2{2.2.727-experimental} [industrialCraft 2] (INDUSTRIALCRAFT-2-2.2.727-EXPERIMENTAL.jar) Unloaded->Constructed->Pre-initialized->Initialized ImmibisCore{59.1.0} [immibis Core] (IMMIBIS-CORE-59.1.0.jar) Unloaded->Constructed->Pre-initialized->Initialized AdvancedMachines{59.0.2} [Advanced Machines] (ADVANCED-MACHINES-59.0.2.jar) Unloaded->Constructed->Pre-initialized->Initialized appliedenergistics2{rv2-stable-3} [Applied Energistics 2] (APPLIEDENERGISTICS2-RV2-STABLE-3.jar) Unloaded->Constructed->Pre-initialized->Initialized bdlib{1.8.2.90} [bD Lib] (bdlib-1.8.2.90-mc1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized ae2stuff{0.3.0.30} [AE2 Stuff] (AE2STUFF-0.3.0.30-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized AnimationAPI{1.2.4} [AnimationAPI] (AnimationAPI-1.7.10-1.2.4.jar) Unloaded->Constructed->Pre-initialized->Initialized arsmagica2{1.4.0.005} [Ars Magica 2] (AM2-1.4.0.006.jar) Unloaded->Constructed->Pre-initialized->Initialized ArchimedesShips{1.7.10 v1.7.1} [Archimedes' Ships] (ARCHIMEDESSHIPS-1.7.1.jar) Unloaded->Constructed->Pre-initialized->Initialized CoFHCore{1.7.10R3.0.2} [CoFH Core] (COFHCORE-[1.7.10]3.0.2-262.jar) Unloaded->Constructed->Pre-initialized->Initialized asielib{0.4.1} [asielib] (ASIELIB-1.7.10-0.4.1.jar) Unloaded->Constructed->Pre-initialized->Initialized ThermalFoundation{1.7.10R1.0.0} [Thermal Foundation] (THERMALFOUNDATION-[1.7.10]1.0.0-81.jar) Unloaded->Constructed->Pre-initialized->Initialized ThermalExpansion{1.7.10R4.0.1} [Thermal Expansion] (THERMALEXPANSION-[1.7.10]4.0.1-182.jar) Unloaded->Constructed->Pre-initialized->Initialized BigReactors{0.4.3A} [big Reactors] (BIGREACTORS-0.4.3A.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Core{6.4.16} [buildCraft] (BUILDCRAFT-6.4.16.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Builders{6.4.16} [bC Builders] (BUILDCRAFT-6.4.16.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Energy{6.4.16} [bC Energy] (BUILDCRAFT-6.4.16.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Factory{6.4.16} [bC Factory] (BUILDCRAFT-6.4.16.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Transport{6.4.16} [bC Transport] (BUILDCRAFT-6.4.16.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Silicon{6.4.16} [bC Silicon] (BUILDCRAFT-6.4.16.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Compat{6.4.0} [buildCraft Compat] (BUILDCRAFT-COMPAT-6.4.2.jar) Unloaded->Constructed->Pre-initialized->Initialized eureka{3.0.2} [Eureka] (EUREKA-1.7.10-3.0.2.jar) Unloaded->Constructed->Pre-initialized->Initialized bcadditions{2.1.2} [buildCraft Additions] (BUILDCRAFTADDITIONS-1.7.10-2.1.2.jar) Unloaded->Constructed->Pre-initialized->Initialized CarpentersBlocks{3.3.6} [Carpenter's Blocks] (CARPENTERS BLOCKS V3.3.6 - MC 1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized ForgeMultipart{1.2.0.344} [Forge Multipart] (ForgeMultipart-1.7.10-1.2.0.344-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized chisel{2.3.10.37} [Chisel 2] (CHISEL2-2.3.10.37.jar) Unloaded->Constructed->Pre-initialized->Initialized ChiselFacades{1.7.10-2.10-cricket} [Chisel Facades] (CHISELFACADES-1.7.10-2.10-CRICKET.jar) Unloaded->Constructed->Pre-initialized->Initialized MrTJPCoreMod{1.0.8.16} [MrTJPCore] (MrTJPCore-1.7.10-1.0.8.16-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized ProjRed|Core{4.6.2.82} [ProjectRed] (PROJECTRED-1.7.10-4.6.2.82-BASE.jar) Unloaded->Constructed->Pre-initialized->Initialized ProjRed|Transmission{4.6.2.82} [ProjectRed-Transmission] (PROJECTRED-1.7.10-4.6.2.82-INTEGRATION.jar) Unloaded->Constructed->Pre-initialized->Initialized Waila{1.5.10} [Waila] (Waila-1.5.10_1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized CompactMachines{1.7.10-1.19b} [Compact Machines] (COMPACTMACHINES-1.7.10-1.19B.jar) Unloaded->Constructed->Pre-initialized->Initialized ComputerCraft{1.73} [ComputerCraft] (COMPUTERCRAFT1.73.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded{1.7.10R2.8.0} [MineFactory Reloaded] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Errored MetallurgyCore{4.0.4} [Metallurgy Core] (METALLURGYCORE-1.7.10-4.0.4.18.jar) Unloaded->Constructed->Pre-initialized->Initialized Mekanism{8.1.3} [Mekanism] (MEKANISM-1.7.10-8.1.3.231.jar) Unloaded->Constructed->Pre-initialized->Errored EnderIO{1.7.10-2.2.8.381} [Ender IO] (ENDERIO-1.7.10-2.2.8.381.jar) Unloaded->Constructed->Pre-initialized->Errored computronics{1.5.1} [Computronics] (COMPUTRONICS-1.7.10-1.5.1.jar) Unloaded->Constructed->Pre-initialized->Errored DraconicEvolution{1.0.1c} [Draconic Evolution] (DRACONIC-EVOLUTION-1.7.10-1.0.1C.jar) Unloaded->Constructed->Pre-initialized->Errored EnderStorage{1.4.7.36} [EnderStorage] (ENDERSTORAGE-1.7.10-1.4.7.36-UNIVERSAL.jar) Unloaded->Constructed->Pre-initialized->Errored exnihilo{1.38-36} [Ex Nihilo] (Ex-Nihilo-1.38-36.jar) Unloaded->Constructed->Pre-initialized->Errored Mantle{1.7.10-0.3.2.jenkins184} [Mantle] (MANTLE-1.7.10-0.3.2.jar) Unloaded->Constructed->Pre-initialized->Initialized TConstruct{1.7.10-1.8.2.build858} [Tinkers' Construct] (TConstruct-1.7.10-1.8.2a.jar) Unloaded->Constructed->Pre-initialized->Errored Metallurgy{4.0.8} [Metallurgy 4] (METALLURGY-1.7.10-4.0.8.97.jar) Unloaded->Constructed->Pre-initialized->Errored exastris{MC1.7.10-1.16-35} [Ex Astris] (Ex-Astris-MC1.7.10-1.16-35.jar) Unloaded->Constructed->Pre-initialized->Errored extracells{2.2.70} [Extra Cells 2] (EXTRACELLS-1.7.10-2.2.70B119.jar) Unloaded->Constructed->Pre-initialized->Errored ExtraUtilities{1.2.5} [Extra Utilities] (EXTRAUTILITIES-1.2.5.jar) Unloaded->Constructed->Pre-initialized->Errored ExtraTiC{1.4.5} [ExtraTiC] (EXTRATIC-1.7.10-1.4.5.jar) Unloaded->Constructed->Pre-initialized->Errored advgenerators{0.9.13.72} [Advanced Generators] (GENERATORS-0.9.13.72-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Errored k4lib{1.7.10-0.1.35} [K4Lib] (K4LIB-1.7.10-0.1.35-UNIVERSAL.jar) Unloaded->Constructed->Pre-initialized->Initialized HydCraft{1.7.10-2.0.87} [Hydraulicraft] (HYDCRAFT-1.7.10-2.0.87-UNIVERSAL.jar) Unloaded->Constructed->Pre-initialized->Errored IC2NuclearControl{2.0.8c} [Nuclear Control 2] (IC2NUCLEARCONTROL-2.0.8C.jar) Unloaded->Constructed->Pre-initialized->Errored ImmibisPeripherals{59.0.2} [immibis's Peripherals] (IMMIBIS-PERIPHERALS-59.0.2.jar) Unloaded->Constructed->Pre-initialized->Errored inventorytweaks{1.59-dev-156-af3bc68} [inventory Tweaks] (INVENTORYTWEAKS-1.59-DEV-156.jar) Unloaded->Constructed->Pre-initialized->Errored iridiummod{1.0.1} [iridium Mod] (IRIDIUM MOD-1.0.2.jar) Unloaded->Constructed->Pre-initialized->Initialized IronChest{6.0.62.742} [iron Chest] (IRONCHEST-1.7.10-6.0.62.742-UNIVERSAL.jar) Unloaded->Constructed->Pre-initialized->Initialized JABBA{1.2.0b} [JABBA] (JABBA-1.2.1_1.7.10.jar) Unloaded->Constructed->Pre-initialized->Errored magicalcrops{4.0.0_PUBLIC_BETA_3} [Magical Crops] (MAGICALCROPS-4.0.0_PUBLIC_BETA_3.jar) Unloaded->Constructed->Pre-initialized->Errored MekanismGenerators{8.1.3} [MekanismGenerators] (MEKANISMGENERATORS-1.7.10-8.1.3.231.jar) Unloaded->Constructed->Pre-initialized->Errored MekanismTools{8.1.3} [MekanismTools] (MEKANISMTOOLS-1.7.10-8.1.3.231.jar) Unloaded->Constructed->Pre-initialized->Errored meteors{2.14.1} [Falling Meteors] (METEORS-1.7.10-2.14.1.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatAppliedEnergistics{1.7.10R2.8.0} [MFR Compat: Applied Energistics] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatAtum{1.7.10R2.8.0} [MFR Compat: Atum] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatBackTools{1.7.10R2.8.0} [MFR Compat: BackTools] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatBuildCraft{1.7.10R2.8.0} [MFR Compat: BuildCraft] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatChococraft{1.7.10R2.8.0} [MFR Compat: Chococraft] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatExtraBiomes{1.7.10R2.8.0} [MFR Compat: ExtraBiomes] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatForestry{1.7.10R2.8.0} [MFR Compat: Forestry] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatForgeMicroblock{1.7.10R2.8.0} [MFR Compat: ForgeMicroblock] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatIC2{1.7.10R2.8.0} [MFR Compat: IC2] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatMystcraft{1.7.10R2.8.0} [MFR Compat: Mystcraft] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized ProjRed|Exploration{4.6.2.82} [ProjectRed-Exploration] (PROJECTRED-1.7.10-4.6.2.82-WORLD.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatProjRed{1.7.10R2.8.0} [MFR Compat ProjectRed] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatRailcraft{1.7.10R2.8.0} [MFR Compat: Railcraft] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatSufficientBiomes{1.7.10R2.8.0} [MFR Compat: Sufficient Biomes] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatThaumcraft{1.7.10R2.8.0} [MFR Compat: Thaumcraft] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatThermalExpansion{1.7.10R2.8.0} [MFR Compat: Thermal Expansion] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatTConstruct{1.7.10R2.8.0} [MFR Compat: Tinkers' Construct] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatTwilightForest{1.7.10R2.8.0} [MFR Compat: TwilightForest] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatVanilla{1.7.10R2.8.0} [MFR Compat: Vanilla] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Errored MineTweaker3{3.0.9B} [MineTweaker 3] (MINETWEAKER3-1.7.10-3.0.9C.jar) Unloaded->Constructed->Pre-initialized->Initialized morechisels{@VERSION@} [More Chisels] (MORECHISELS-1.7.10-1.0-20.jar) Unloaded->Constructed->Pre-initialized->Errored NEIAddons{1.12.8.29} [NEI Addons] (NEIADDONS-1.12.8.29-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Errored NEIAddons|AppEng{1.12.8.29} [NEI Addons: Applied Energistics 2] (NEIADDONS-1.12.8.29-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized NEIAddons|Botany{1.12.8.29} [NEI Addons: Botany] (NEIADDONS-1.12.8.29-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized NEIAddons|Forestry{1.12.8.29} [NEI Addons: Forestry] (NEIADDONS-1.12.8.29-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized NEIAddons|CraftingTables{1.12.8.29} [NEI Addons: Crafting Tables] (NEIADDONS-1.12.8.29-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized NEIAddons|ExNihilo{1.12.8.29} [NEI Addons: Ex Nihilo] (NEIADDONS-1.12.8.29-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized neiintegration{1.0.9} [NEI Integration] (NEIINTEGRATION-MC1.7.10-1.0.9.jar) Unloaded->Constructed->Pre-initialized->Initialized NetherOres{1.7.10R2.3.0} [Nether Ores] (NETHERORES-[1.7.10]2.3.0-12.jar) Unloaded->Constructed->Pre-initialized->Errored OpenMods{0.7.3} [OpenMods] (OPENMODSLIB-1.7.10-0.7.3.jar) Unloaded->Constructed->Pre-initialized->Initialized OpenBlocks{1.4.3} [OpenBlocks] (OPENBLOCKS-1.7.10-1.4.3.jar) Unloaded->Constructed->Pre-initialized->Errored ProjRed|Transportation{4.6.2.82} [ProjectRed-Transportation] (PROJECTRED-1.7.10-4.6.2.82-MECHANICAL_BETA.jar) Unloaded->Constructed->Pre-initialized->Errored ProjRed|Compatibility{4.6.2.82} [ProjectRed-Compatibility] (PROJECTRED-1.7.10-4.6.2.82-COMPAT.jar) Unloaded->Constructed->Pre-initialized->Errored ProjRed|Integration{4.6.2.82} [ProjectRed-Integration] (PROJECTRED-1.7.10-4.6.2.82-INTEGRATION.jar) Unloaded->Constructed->Pre-initialized->Errored ProjRed|Illumination{4.6.2.82} [ProjectRed-Illumination] (PROJECTRED-1.7.10-4.6.2.82-LIGHTING.jar) Unloaded->Constructed->Pre-initialized->Errored ProjRed|Expansion{4.6.2.82} [ProjectRed-Expansion] (PROJECTRED-1.7.10-4.6.2.82-MECHANICAL_BETA.jar) Unloaded->Constructed->Pre-initialized->Errored libsandstone{1.0.0} [libsandstone] (LibSandstone-1.0.0.jar) Unloaded->Constructed->Pre-initialized->Initialized xreliquary{1.2} [Reliquary] (RELIQUARY-1.2.jar) Unloaded->Constructed->Pre-initialized->Errored simplyjetpacks{1.4.1} [simply Jetpacks] (SIMPLYJETPACKS-MC1.7.10-1.4.1.jar) Unloaded->Constructed->Pre-initialized->Errored StevesFactoryManager{A93} [steve's Factory Manager] (STEVESFACTORYMANAGERA93.jar) Unloaded->Constructed->Pre-initialized->Errored StevesAddons{0.10.12} [steve's Addons] (STEVESADDONS-1.7.10-0.10.12.jar) Unloaded->Constructed->Pre-initialized->Errored StevesCarts{2.0.0.b18} [steve's Carts 2] (STEVESCARTS2.0.0.B18.jar) Unloaded->Constructed->Pre-initialized->Errored StevesWorkshop{0.5.1} [steve's Workshop] (STEVESWORKSHOP-0.5.1.jar) Unloaded->Constructed->Pre-initialized->Errored ThermalDynamics{1.7.10R1.0.0} [Thermal Dynamics] (THERMALDYNAMICS-[1.7.10]1.0.0-122.jar) Unloaded->Constructed->Pre-initialized->Errored recycling{0.3.4.2} [Thermal Recycling] (THERMALRECYCLING-1.7.10-0.3.4.2.jar) Unloaded->Constructed->Pre-initialized->Errored ThermalSmeltery{1.7.10-1.2.1} [Thermal Smeltery] (THERMALSMELTERY-1.7.10-1.2.1.jar) Unloaded->Constructed->Pre-initialized->Errored VeinMiner{0.27.1_build.unknown} [Vein Miner] (VEINMINER-1.7.10_0.27.1.UNKNOWN.jar) Unloaded->Constructed->Pre-initialized->Initialized VeinMinerModSupport{0.27.1_build.unknown} [Mod Support] (VEINMINER-1.7.10_0.27.1.UNKNOWN.jar) Unloaded->Constructed->Pre-initialized->Errored WailaHarvestability{1.1.2} [Waila Harvestability] (WailaHarvestability-mc1.7.x-1.1.2.jar) Unloaded->Constructed->Pre-initialized->Initialized WailaNBT{1.4} [Waila NBT] (WailaNBT-1.7.10-1.4.jar) Unloaded->Constructed->Pre-initialized->Initialized weaponmod{v1.14.3} [balkon's WeaponMod] (WEAPONMOD-1.14.3.jar) Unloaded->Constructed->Pre-initialized->Errored McMultipart{1.2.0.344} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.2.0.344-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized denseores{1.0} [Dense Ores] (DENSEORES-1.6.2.jar) Unloaded->Constructed->Pre-initialized->Errored ForgeMicroblock{1.2.0.344} [Forge Microblocks] (ForgeMultipart-1.7.10-1.2.0.344-universal.jar) Unloaded->Constructed->Pre-initialized->Errored [16:54:56] [server thread/ERROR] [FML]: The following problems were captured during this phase [16:54:58] [server thread/WARN] [FML]: Can't revert to frozen GameData state without freezing first. [16:54:58] [server thread/INFO] [FML]: Applying holder lookups [16:54:58] [server thread/WARN] [FML]: Unable to lookup chisel:cobblestoneWall for public static com.cricketcraft.chisel.block.BlockMarbleWall com.cricketcraft.chisel.init.ChiselBlocks.cobblestoneWall. Is there something wrong with the registry? [16:54:58] [server thread/WARN] [FML]: Unable to lookup chisel:obsidian2 for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.obsidian2. Is there something wrong with the registry? [16:54:58] [server thread/WARN] [FML]: Unable to lookup chisel:arcane for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.arcane. Is there something wrong with the registry? [16:54:58] [server thread/WARN] [FML]: Unable to lookup chisel:thaumium for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.thaumium. Is there something wrong with the registry? [16:54:58] [server thread/WARN] [FML]: Unable to lookup chisel:tallow for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.tallow. Is there something wrong with the registry? [16:54:58] [server thread/WARN] [FML]: Unable to lookup chisel:bloodRune for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.bloodRune. Is there something wrong with the registry? [16:54:58] [server thread/WARN] [FML]: Unable to lookup chisel:bloodBrick for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.bloodBrick. Is there something wrong with the registry? [16:54:58] [server thread/WARN] [FML]: Unable to lookup CompactMachines:interfaceblock for public static org.dave.CompactMachines.block.BlockCM org.dave.CompactMachines.init.ModBlocks.interfaceblock. Is there something wrong with the registry? [16:54:58] [server thread/INFO] [FML]: Holder lookups applied [16:54:58] [server thread/ERROR] [exastris]: Skipping event FMLServerStoppedEvent and marking errored mod exastris since required dependency exnihilo has errored [16:54:58] [server thread/ERROR] [ExtraTiC]: Skipping event FMLServerStoppedEvent and marking errored mod ExtraTiC since required dependency TConstruct has errored [16:54:58] [server thread/ERROR] [MekanismGenerators]: Skipping event FMLServerStoppedEvent and marking errored mod MekanismGenerators since required dependency Mekanism has errored [16:54:58] [server thread/ERROR] [MekanismTools]: Skipping event FMLServerStoppedEvent and marking errored mod MekanismTools since required dependency Mekanism has errored [16:54:58] [server thread/ERROR] [MineFactoryReloaded|CompatChococraft]: Skipping event FMLServerStoppedEvent and marking errored mod MineFactoryReloaded|CompatChococraft since required dependency MineFactoryReloaded has errored [16:55:11] [server thread/ERROR] [stevesAddons]: Skipping event FMLServerStoppedEvent and marking errored mod StevesAddons since required dependency StevesFactoryManager has errored [16:55:11] [server thread/ERROR] [ThermalSmeltery]: Skipping event FMLServerStoppedEvent and marking errored mod ThermalSmeltery since required dependency TConstruct has errored [16:55:12] [server thread/INFO] [FML]: The state engine was in incorrect state ERRORED and forced into state SERVER_STOPPED. Errors may have been discarded. [16:55:12] [server thread/INFO] [FML]: The state engine was in incorrect state ERRORED and forced into state AVAILABLE. Errors may have been discarded. EULA has been accepted. Help would be much appreciated!
  19. Hey hey! I found some more info! Look! 10:48:28] [main/WARN] [FML]: The coremod codechicken.core.launch.CodeChickenCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [10:48:29] [main/WARN] [FML]: The coremod cofh.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [10:48:29] [main/WARN] [FML]: The coremod codechicken.core.launch.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft [10:48:29] [main/WARN] [FML]: The coremod mods.immibis.core.ICCoreMod does not have a MCVersion annotation, it may cause issues with this version of Minecraft [10:48:29] [main/WARN] [FML]: The coremod ic2.core.coremod.IC2core does not have a MCVersion annotation, it may cause issues with this version of Minecraft [10:48:29] [main/WARN] [FML]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [10:48:29] [main/WARN] [FML]: The coremod mekanism.common.asm.LoadingHook does not have a MCVersion annotation, it may cause issues with this version of Minecraft [10:48:29] [main/WARN] [FML]: The coremod mrtjp.core.handler.CorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [10:48:29] [main/WARN] [FML]: The coremod codechicken.nei.asm.NEICorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [10:48:29] [main/WARN] [FML]: The coremod openblocks.OpenBlocksCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [10:48:29] [main/WARN] [FML]: The coremod openmods.core.OpenModsCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [10:48:29] [main/WARN] [FML]: The coremod codechicken.core.launch.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft [10:48:29] [main/WARN] [FML]: The coremod xreliquary.common.asm.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft [10:48:29] [main/WARN] [FML]: The coremod portablejim.veinminer.asm.VeinMinerCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft Could this be causing a problem too? (also, should these be in the coremods folder or just the mods folder, they're in mods right now)
  20. I noticed that it seems like all the coremods are broken upon further inspection. Take a loot at this snippet: [08:59:49] [server thread/ERROR] [exastris]: Skipping event FMLInitializationEvent and marking errored mod exastris since required dependency exnihilo has errored [08:59:51] [server thread/ERROR] [ExtraTiC]: Skipping event FMLInitializationEvent and marking errored mod ExtraTiC since required dependency TConstruct has errored [08:59:55] [server thread/ERROR] [immibisPeripherals]: Skipping event FMLInitializationEvent and marking errored mod ImmibisPeripherals since required dependency ComputerCraft has errored [08:59:58] [server thread/ERROR] [MekanismGenerators]: Skipping event FMLInitializationEvent and marking errored mod MekanismGenerators since required dependency Mekanism has errored [08:59:58] [server thread/ERROR] [MekanismTools]: Skipping event FMLInitializationEvent and marking errored mod MekanismTools since required dependency Mekanism has errored [09:00:05] [server thread/ERROR] [MineFactoryReloaded|CompatChococraft]: Skipping event FMLInitializationEvent and marking errored mod MineFactoryReloaded|CompatChococraft since required dependency MineFactoryReloaded has errored [09:00:13] [server thread/INFO] [NEIAddons]: Loading NEI Addons [09:00:13] [server thread/INFO] [NEIAddons]: Loading Applied Energistics 2 Addon... [09:00:25] [server thread/ERROR] [stevesAddons]: Skipping event FMLInitializationEvent and marking errored mod StevesAddons since required dependency StevesFactoryManager has errored [09:00:30] [server thread/ERROR] [ThermalSmeltery]: Skipping event FMLInitializationEvent and marking errored mod ThermalSmeltery since required dependency TConstruct has errored So yeah. Hope that helps.
  21. Hi, I am trying to run a server for my custom modpack. It has an error every time I run it and, yes, I have accepted the EULA. [08:58:15] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLServerTweaker [08:58:15] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLServerTweaker [08:58:15] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLServerTweaker [08:58:16] [main/INFO] [FML]: Forge Mod Loader version 7.99.9.1428 for Minecraft 1.7.10 loading [08:58:16] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_75, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7 [08:58:16] [main/INFO] [FML]: [AppEng] Core Init [08:58:20] [main/WARN] [FML]: The coremod codechicken.core.launch.CodeChickenCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [08:58:20] [main/WARN] [FML]: The coremod cofh.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [08:58:20] [main/WARN] [FML]: The coremod codechicken.core.launch.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft [08:58:20] [main/WARN] [FML]: The coremod mods.immibis.core.ICCoreMod does not have a MCVersion annotation, it may cause issues with this version of Minecraft [08:58:20] [main/WARN] [FML]: The coremod ic2.core.coremod.IC2core does not have a MCVersion annotation, it may cause issues with this version of Minecraft [08:58:20] [main/WARN] [FML]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [08:58:20] [main/WARN] [FML]: The coremod mekanism.common.asm.LoadingHook does not have a MCVersion annotation, it may cause issues with this version of Minecraft [08:58:20] [main/WARN] [FML]: The coremod mrtjp.core.handler.CorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [08:58:20] [main/WARN] [FML]: The coremod codechicken.nei.asm.NEICorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [08:58:20] [main/WARN] [FML]: The coremod openblocks.OpenBlocksCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [08:58:20] [main/WARN] [FML]: The coremod openmods.core.OpenModsCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [08:58:20] [main/WARN] [FML]: The coremod codechicken.core.launch.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft [08:58:20] [main/WARN] [FML]: The coremod xreliquary.common.asm.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft [08:58:20] [main/WARN] [FML]: The coremod portablejim.veinminer.asm.VeinMinerCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [08:58:20] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [08:58:20] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [08:58:20] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [08:58:20] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [08:58:20] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:23] [main/INFO] [FML]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557 [08:58:23] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:23] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:23] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:23] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:23] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:23] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:23] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:23] [main/INFO] [iC2-core]: Loaded library EJML-core-0.26.jar. [08:58:24] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:24] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:24] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:25] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:25] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:25] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:25] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:25] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:25] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:25] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:25] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [08:58:26] [main/INFO] [sTDOUT]: [cofh.asm.CoFHAccessTransformer:readMappingFile:40]: Adding Accesstransformer map: CoFH_at.cfg [08:58:26] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [08:58:26] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [08:58:26] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [08:58:28] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer} [08:58:32] [server thread/INFO]: Starting minecraft server version 1.7.10 [08:58:32] [server thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [08:58:32] [server thread/INFO] [FML]: MinecraftForge v10.13.3.1428 Initialized [08:58:32] [server thread/INFO] [FML]: Replaced 183 ore recipies [08:58:32] [server thread/INFO] [FML]: Preloading CrashReport classes [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.World$1 [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.World$2 [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.World$3 [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.World$4 [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.chunk.Chunk$1 [08:58:32] [server thread/INFO] [FML]: net.minecraft.crash.CrashReportCategory$1 [08:58:32] [server thread/INFO] [FML]: net.minecraft.crash.CrashReportCategory$2 [08:58:32] [server thread/INFO] [FML]: net.minecraft.crash.CrashReportCategory$3 [08:58:32] [server thread/INFO] [FML]: net.minecraft.entity.Entity$1 [08:58:32] [server thread/INFO] [FML]: net.minecraft.entity.Entity$2 [08:58:32] [server thread/INFO] [FML]: net.minecraft.entity.EntityTracker$1 [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.gen.layer.GenLayer$1 [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.gen.layer.GenLayer$2 [08:58:32] [server thread/INFO] [FML]: net.minecraft.entity.player.InventoryPlayer$1 [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.gen.structure.MapGenStructure$1 [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.gen.structure.MapGenStructure$2 [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.gen.structure.MapGenStructure$3 [08:58:32] [server thread/INFO] [FML]: net.minecraft.server.MinecraftServer$3 [08:58:32] [server thread/INFO] [FML]: net.minecraft.server.MinecraftServer$4 [08:58:32] [server thread/INFO] [FML]: net.minecraft.server.MinecraftServer$5 [08:58:32] [server thread/INFO] [FML]: net.minecraft.nbt.NBTTagCompound$1 [08:58:32] [server thread/INFO] [FML]: net.minecraft.nbt.NBTTagCompound$2 [08:58:32] [server thread/INFO] [FML]: net.minecraft.network.NetHandlerPlayServer$2 [08:58:32] [server thread/INFO] [FML]: net.minecraft.network.NetworkSystem$3 [08:58:32] [server thread/INFO] [FML]: net.minecraft.tileentity.TileEntity$1 [08:58:32] [server thread/INFO] [FML]: net.minecraft.tileentity.TileEntity$2 [08:58:32] [server thread/INFO] [FML]: net.minecraft.tileentity.TileEntity$3 [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$1 [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$2 [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$3 [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$4 [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$5 [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$6 [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$7 [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$8 [08:58:32] [server thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$9 [08:58:32] [server thread/INFO] [FML]: net.minecraft.server.dedicated.DedicatedServer$3 [08:58:32] [server thread/INFO] [FML]: net.minecraft.server.dedicated.DedicatedServer$4 [08:58:32] [server thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [08:58:33] [server thread/INFO] [FML]: [AppEng] Core Init [08:58:33] [server thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [08:58:33] [server thread/INFO] [FML]: Searching C:\Users\Lucas\Desktop\Server\mods for mods [08:58:33] [server thread/INFO] [FML]: Also searching C:\Users\Lucas\Desktop\Server\mods\1.7.10 for mods [08:58:33] [server thread/WARN] [DamageIndicatorsMod]: Mod DamageIndicatorsMod is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 3.2.3 [08:58:35] [server thread/WARN] [ChiselFacades]: Mod ChiselFacades is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.7.10-2.10-cricket [08:58:35] [server thread/INFO] [debug]: Mod debug is missing the required element 'name'. Substituting debug [08:58:35] [server thread/WARN] [debug]: Mod debug is missing the required element 'version' and no fallback can be found. Substituting '1.0'. [08:58:36] [server thread/WARN] [EnderStorage]: Mod EnderStorage is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.4.7.36 [08:58:36] [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.5 [08:58:38] [server thread/WARN] [neiintegration]: Mod neiintegration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.0.9 [08:58:38] [server thread/WARN] [ProjRed|Core]: Mod ProjRed|Core is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [08:58:38] [server thread/WARN] [ProjRed|Compatibility]: Mod ProjRed|Compatibility is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [08:58:38] [server thread/WARN] [ProjRed|Integration]: Mod ProjRed|Integration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [08:58:38] [server thread/WARN] [ProjRed|Transmission]: Mod ProjRed|Transmission is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [08:58:38] [server thread/WARN] [ProjRed|Illumination]: Mod ProjRed|Illumination is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [08:58:38] [server thread/WARN] [ProjRed|Expansion]: Mod ProjRed|Expansion is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [08:58:38] [server thread/WARN] [ProjRed|Transportation]: Mod ProjRed|Transportation is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [08:58:38] [server thread/WARN] [ProjRed|Exploration]: Mod ProjRed|Exploration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82 [08:58:38] [server thread/WARN] [simplyjetpacks]: Mod simplyjetpacks is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.4.1 [08:58:39] [server thread/WARN] [ThermalSmeltery]: Mod ThermalSmeltery is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.7.10-1.2.1 [08:58:39] [server thread/WARN] [ForgeMicroblock]: Mod ForgeMicroblock is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.344 [08:58:39] [server thread/WARN] [ForgeMultipart]: Mod ForgeMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.344 [08:58:39] [server thread/WARN] [McMultipart]: Mod McMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.344 [08:58:39] [server thread/WARN] [MrTJPCoreMod]: Mod MrTJPCoreMod is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.0.8.16 [08:58:39] [server thread/INFO] [FML]: Forge Mod Loader has identified 126 mods to load [08:58:39] [server thread/INFO] [FML]: Found mod(s) [ExtraUtilities] containing declared API package baubles.api (owned by Baubles) without associated API reference [08:58:39] [server thread/INFO] [FML]: Found mod(s) [EnderIO] containing declared API package mekanism.api.transmitters (owned by Mekanism) without associated API reference [08:58:39] [server thread/INFO] [FML]: Found mod(s) [EnderIO] containing declared API package com.cricketcraft.chisel.api (owned by Chisel) without associated API reference [08:58:39] [server thread/INFO] [FML]: Found mod(s) [stevesAddons] containing declared API package mcp.mobius.waila.api (owned by Waila) without associated API reference [08:58:39] [server thread/INFO] [FML]: Found mod(s) [exastris] containing declared API package cofh.api.energy (owned by CoFHAPI) without associated API reference [08:58:39] [server thread/INFO] [FML]: Found mod(s) [recycling] containing declared API package cofh.api.energy (owned by CoFHAPI) without associated API reference [08:58:39] [server thread/INFO] [FML]: Found mod(s) [simplyjetpacks] containing declared API package cofh.api (owned by CoFHLib) without associated API reference [08:58:39] [server thread/INFO] [FML]: Found mod(s) [EnderIO] containing declared API package mekanism.api (owned by Mekanism) without associated API reference [08:58:39] [server thread/INFO] [FML]: Found mod(s) [EnderIO] containing declared API package mekanism.api.gas (owned by Mekanism) without associated API reference [08:58:41] [server thread/INFO] [FML]: FML has found a non-mod file COFHLIB-[1.7.10]1.0.2-160.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible. [08:58:41] [server thread/INFO] [FML]: FML has found a non-mod file INDUSTRIALCRAFT-2-2.2.727-EXPERIMENTAL-API.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible. [08:58:41] [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. [08:58:41] [server thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, appliedenergistics2-core, CodeChickenCore, NotEnoughItems, VeinMiner_coremod, OpenModsCore, <CoFH ASM>, DamageIndicatorsMod, AdvancedMachines, ae2stuff, arsmagica2, AnimationAPI, appliedenergistics2, ArchimedesShips, asielib, bdlib, BigReactors, BuildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Silicon, BuildCraft|Core, BuildCraft|Transport, BuildCraft|Compat, bcadditions, CarpentersBlocks, chisel, ChiselFacades, CoFHCore, CompactMachines, ComputerCraft, computronics, debug, denseores, DraconicEvolution, EnderIO, EnderStorage, eureka, exastris, exnihilo, extracells, ExtraTiC, ExtraUtilities, advgenerators, HydCraft, IC2NuclearControl, ImmibisCore, ImmibisPeripherals, IC2, inventorytweaks, iridiummod, IronChest, JABBA, k4lib, magicalcrops, Mantle, Mekanism, MekanismGenerators, MekanismTools, Metallurgy, MetallurgyCore, meteors, 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, MineTweaker3, morechisels, NEIAddons, NEIAddons|AppEng, NEIAddons|Botany, NEIAddons|Forestry, NEIAddons|CraftingTables, NEIAddons|ExNihilo, neiintegration, NetherOres, OpenBlocks, OpenMods, ProjRed|Core, ProjRed|Compatibility, ProjRed|Integration, ProjRed|Transmission, ProjRed|Illumination, ProjRed|Expansion, ProjRed|Transportation, ProjRed|Exploration, xreliquary, simplyjetpacks, StevesAddons, StevesCarts, StevesFactoryManager, StevesWorkshop, TConstruct, ThermalDynamics, ThermalExpansion, ThermalFoundation, recycling, ThermalSmeltery, VeinMiner, VeinMinerModSupport, Waila, WailaHarvestability, WailaNBT, weaponmod, ForgeMicroblock, ForgeMultipart, McMultipart, libsandstone, MrTJPCoreMod] at CLIENT [08:58:41] [server thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, appliedenergistics2-core, CodeChickenCore, NotEnoughItems, VeinMiner_coremod, OpenModsCore, <CoFH ASM>, DamageIndicatorsMod, AdvancedMachines, ae2stuff, arsmagica2, AnimationAPI, appliedenergistics2, ArchimedesShips, asielib, bdlib, BigReactors, BuildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Silicon, BuildCraft|Core, BuildCraft|Transport, BuildCraft|Compat, bcadditions, CarpentersBlocks, chisel, ChiselFacades, CoFHCore, CompactMachines, ComputerCraft, computronics, debug, denseores, DraconicEvolution, EnderIO, EnderStorage, eureka, exastris, exnihilo, extracells, ExtraTiC, ExtraUtilities, advgenerators, HydCraft, IC2NuclearControl, ImmibisCore, ImmibisPeripherals, IC2, inventorytweaks, iridiummod, IronChest, JABBA, k4lib, magicalcrops, Mantle, Mekanism, MekanismGenerators, MekanismTools, Metallurgy, MetallurgyCore, meteors, 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, MineTweaker3, morechisels, NEIAddons, NEIAddons|AppEng, NEIAddons|Botany, NEIAddons|Forestry, NEIAddons|CraftingTables, NEIAddons|ExNihilo, neiintegration, NetherOres, OpenBlocks, OpenMods, ProjRed|Core, ProjRed|Compatibility, ProjRed|Integration, ProjRed|Transmission, ProjRed|Illumination, ProjRed|Expansion, ProjRed|Transportation, ProjRed|Exploration, xreliquary, simplyjetpacks, StevesAddons, StevesCarts, StevesFactoryManager, StevesWorkshop, TConstruct, ThermalDynamics, ThermalExpansion, ThermalFoundation, recycling, ThermalSmeltery, VeinMiner, VeinMinerModSupport, Waila, WailaHarvestability, WailaNBT, weaponmod, ForgeMicroblock, ForgeMultipart, McMultipart, libsandstone, MrTJPCoreMod] at SERVER [08:58:42] [server thread/INFO] [FML]: InvTweaks: net.minecraft.inventory.Container [08:58:43] [server thread/INFO] [sTDOUT]: [mods.immibis.core.ImmibisCore:initPreferredEnergySystem:163]: [immibis Core] Preferred energy system set to: ic2 [08:58:47] [server thread/INFO] [FML]: InvTweaks: net.minecraft.inventory.ContainerWorkbench [08:58:47] [server thread/INFO] [FML]: InvTweaks: net.minecraft.inventory.ContainerRepair [08:58:48] [server thread/INFO] [Draconic Evolution]: Hello Minecraft!!! [08:58:48] [server thread/INFO] [TConstruct]: Preparing to take over the world [08:58:49] [server thread/WARN] [FML]: ============================================================= [08:58:49] [server thread/WARN] [FML]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML! [08:58:49] [server thread/WARN] [FML]: Offendor: thirdParty/truetyper/TrueTypeFont.loadImage(Ljava/awt/image/BufferedImage;)I [08:58:49] [server thread/WARN] [FML]: Use FMLCommonHandler.exitJava instead [08:58:49] [server thread/WARN] [FML]: ============================================================= [08:58:52] [server thread/INFO] [FML]: Processing ObjectHolder annotations [08:58:54] [server thread/INFO] [FML]: Found 518 ObjectHolder annotations [08:58:54] [server thread/INFO] [FML]: Identifying ItemStackHolder annotations [08:58:54] [server thread/INFO] [FML]: Found 0 ItemStackHolder annotations [08:58:54] [server thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [08:58:57] [server thread/INFO] [AE2:S]: Pre Initialization ( started ) [08:58:58] [server thread/INFO] [AE2-CORE]: func_145841_b(Lnet/minecraft/nbt/NBTTagCompound;)V - Transformed [08:58:58] [server thread/INFO] [AE2-CORE]: func_145839_a(Lnet/minecraft/nbt/NBTTagCompound;)V - Transformed [08:58:58] [server thread/INFO] [AE2-CORE]: Allowing Interface ic2.api.energy.tile.IEnergySink from appeng/tile/powersink/IC2 because IC2 integration is enabled. [08:58:58] [server thread/INFO] [AE2-CORE]: Removing Interface Reika.RotaryCraft.API.Power.AdvancedShaftPowerReceiver from appeng/tile/powersink/RotaryCraft because RotaryCraft integration is disabled. [08:58:58] [server thread/INFO] [AE2-CORE]: Removing Interface Reika.RotaryCraft.API.Interfaces.Transducerable from appeng/tile/powersink/RotaryCraft because RotaryCraft integration is disabled. [08:58:58] [server thread/INFO] [AE2-CORE]: Removing Method Tick_RotaryCraft from appeng/tile/powersink/RotaryCraft because RotaryCraft integration is disabled. [08:58:58] [server thread/INFO] [AE2-CORE]: Updated appeng/tile/powersink/RotaryCraft [08:58:58] [server thread/INFO] [AE2-CORE]: Allowing Interface cofh.api.energy.IEnergyReceiver from appeng/tile/powersink/RedstoneFlux because RF integration is enabled. [08:58:58] [server thread/INFO] [AE2-CORE]: Allowing Interface mekanism.api.energy.IStrictEnergyAcceptor from appeng/tile/powersink/MekJoules because Mekanism integration is enabled. [08:58:59] [server thread/INFO] [AE2-CORE]: Allowing Interface powercrystals.minefactoryreloaded.api.rednet.connectivity.IRedNetConnection from appeng/block/networking/BlockCableBus because MFR integration is enabled. [08:58:59] [server thread/INFO] [AE2-CORE]: Allowing Method getConnectionType from appeng/block/networking/BlockCableBus because MFR integration is enabled. [08:58:59] [server thread/INFO] [AE2-CORE]: Allowing Interface buildcraft.api.tools.IToolWrench from appeng/items/tools/quartz/ToolQuartzWrench because BC integration is enabled. [08:58:59] [server thread/INFO] [AE2-CORE]: Allowing Interface ic2.api.item.ISpecialElectricItem from appeng/items/tools/powered/powersink/IC2 because IC2 integration is enabled. [08:58:59] [server thread/INFO] [AE2-CORE]: Allowing Interface ic2.api.item.IElectricItemManager from appeng/items/tools/powered/powersink/IC2 because IC2 integration is enabled. [08:58:59] [server thread/INFO] [AE2-CORE]: Allowing Method getManager from appeng/items/tools/powered/powersink/IC2 because IC2 integration is enabled. [08:58:59] [server thread/INFO] [AE2-CORE]: Allowing Interface cofh.api.energy.IEnergyContainerItem from appeng/items/tools/powered/powersink/RedstoneFlux because RFItem integration is enabled. [08:58:59] [server thread/INFO] [AE2-CORE]: Allowing Interface buildcraft.api.tools.IToolWrench from appeng/items/tools/ToolNetworkTool because BC integration is enabled. [08:58:59] [server thread/INFO] [AE2-CORE]: Allowing Interface buildcraft.api.transport.IPipeConnection from appeng/parts/misc/PartStorageBus because BC integration is enabled. [08:58:59] [server thread/INFO] [AE2-CORE]: Allowing Method overridePipeConnection from appeng/parts/misc/PartStorageBus because BC integration is enabled. [08:58:59] [server thread/INFO] [AE2-CORE]: Allowing Interface buildcraft.api.transport.IPipeConnection from appeng/parts/p2p/PartP2PItems because BC integration is enabled. [08:58:59] [server thread/INFO] [AE2-CORE]: Allowing Method overridePipeConnection from appeng/parts/p2p/PartP2PItems because BC integration is enabled. [08:58:59] [server thread/INFO] [AE2-CORE]: Allowing Interface ic2.api.energy.tile.IEnergySink from appeng/parts/p2p/PartP2PIC2Power because IC2 integration is enabled. [08:58:59] [server thread/INFO] [AE2-CORE]: Allowing Interface ic2.api.energy.tile.IEnergySource from appeng/parts/p2p/PartP2PIC2Power because IC2 integration is enabled. [08:58:59] [server thread/INFO] [AE2-CORE]: Allowing Interface cofh.api.energy.IEnergyReceiver from appeng/parts/p2p/PartP2PRFPower because RF integration is enabled. [08:58:59] [server thread/INFO] [AE2:S]: Starting AE2 VersionChecker [08:58:59] [server thread/INFO] [AE2:S]: Pre Initialization ( ended after 2085ms ) [08:58:59] [server thread/INFO] [bdlib]: bdlib 1.8.2.90 loaded [08:58:59] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.IllegalArgumentException: Raw channel stable did not contain any of the pre-programmed types. [08:58:59] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at appeng.services.version.VersionParser.parseChannel(VersionParser.java:117) [08:58:59] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at appeng.services.version.VersionParser.parseVersion(VersionParser.java:72) [08:58:59] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at appeng.services.version.VersionParser.parse(VersionParser.java:34) [08:58:59] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at appeng.services.version.ModVersionFetcher.get(ModVersionFetcher.java:34) [08:58:59] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at appeng.services.VersionChecker.processInterval(VersionChecker.java:106) [08:58:59] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at appeng.services.VersionChecker.run(VersionChecker.java:86) [08:58:59] [AE2 VersionChecker/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.run(Unknown Source) [08:59:00] [server thread/INFO] [bdlib]: Initialized network channel 'bdew.multiblock' for mod 'bdlib' [08:59:00] [server thread/INFO] [bdlib]: Loading internal config files for mod AE2 Stuff [08:59:00] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/AE2STUFF-0.3.0.30-MC1.7.10.jar!/assets/ae2stuff/config/tuning.cfg [08:59:01] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/AE2STUFF-0.3.0.30-MC1.7.10.jar!/assets/ae2stuff/config/recipes.cfg [08:59:01] [server thread/INFO] [bdlib]: Loading user config files for mod AE2 Stuff [08:59:02] [server thread/INFO] [bdlib]: Config loading for mod AE2 Stuff finished [08:59:02] [server thread/INFO] [bdlib]: Loaded creative tabs for ae2stuff [08:59:02] [server thread/INFO] [FML]: Ars Magica >> Extending Potions Array [08:59:02] [server thread/INFO] [FML]: Ars Magica >> injecting potions starting from index 32 [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Attempting to set enchantment magic_resist to ID 100 (configured currently as 100) [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Successfully registered enchanment! [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Attempting to set enchantment soulbound to ID 101 (configured currently as 101) [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Successfully registered enchanment! [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_phy [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_drn [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_fall [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_exp [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_fire [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_frst [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_mage [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dr_litn [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: mn_reg [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: bn_red [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: soulbnd [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: fl_lure [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: mg_xp [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: pp_ore [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: mg_gog [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: tc_nrv [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: stp_up [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: run_spd [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: dispel [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: fallprot [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: fireprot [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: freedom [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: healing [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: hungerup [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: highjump [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: lifesave [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: lightstep [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: minespd [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: recoil [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: swimspd [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: wtrbrth [08:59:03] [server thread/INFO] [FML]: Ars Magica 2 >> Registered imbuement: wtrwalk [08:59:03] [server thread/INFO] [CoFHWorld]: Registering Default Templates. [08:59:03] [server thread/INFO] [CoFHWorld]: Registering default generators [08:59:03] [server thread/INFO] [CoFHWorld]: Complete [08:59:04] [server thread/INFO] [ThermalFoundation]: Loading Plugins... [08:59:04] [server thread/INFO] [sTDOUT]: [cofh.thermalfoundation.plugins.mfr.MFRPlugin:preInit:14]: should work [08:59:04] [server thread/INFO] [ThermalFoundation]: Finished Loading Plugins. [08:59:04] [server thread/INFO] [ThermalExpansion]: Loading Plugins... [08:59:04] [server thread/INFO] [ThermalExpansion]: Finished Loading Plugins. [08:59:04] [server thread/INFO] [ThermalExpansion]: There are no crafting files present in C:\Users\Lucas\Desktop\Server\config\cofh\thermalexpansion\crafting. [08:59:05] [server thread/INFO] [buildCraft]: Starting BuildCraft 6.4.16 [08:59:05] [server thread/INFO] [buildCraft]: Copyright (c) SpaceToad, 2011-2015 [08:59:05] [server thread/INFO] [buildCraft]: http://www.mod-buildcraft.com [08:59:08] [server thread/INFO] [buildCraft Additions]: CompatModule 'Buildcraft' activated. [08:59:08] [server thread/INFO] [buildCraft Additions]: CompatModule 'Eureka' activated. [08:59:08] [server thread/ERROR] [buildCraft Additions]: CompatModule 'Framez' is missing a dependency: 'framez'! This module will not be loaded. [08:59:08] [server thread/INFO] [buildCraft Additions]: CompatModule 'Metals' activated. [08:59:08] [server thread/INFO] [buildCraft Additions]: CompatModule 'MineTweaker' activated. [08:59:08] [server thread/ERROR] [buildCraft Additions]: CompatModule 'Railcraft' is missing a dependency: 'Railcraft'! This module will not be loaded. [08:59:08] [server thread/INFO] [buildCraft Additions]: CompatModule 'Waila' activated. [08:59:08] [Thread-7/INFO] [buildCraft Additions]: Trying to get the special list file... [08:59:08] [Thread-7/INFO] [buildCraft Additions]: Successfully downloaded and read the special list file! [08:59:09] [server thread/INFO] [CarpentersBlocks]: Designs found: Bed(6), Chisel(9), FlowerPot(18), Tile(13) [08:59:10] [server thread/INFO] [Chisel 2]: Starting pre-init... [08:59:10] [server thread/INFO] [Chisel 2]: Loading blocks... [08:59:10] [server thread/INFO] [Chisel 2]: Skipping feature amber as its required mod Thaumcraft was missing. [08:59:10] [server thread/INFO] [Chisel 2]: Skipping feature arcane as its required mod Thaumcraft was missing. [08:59:10] [server thread/INFO] [Chisel 2]: Skipping feature bloodRune as its required mod AWWayofTime was missing. [08:59:10] [server thread/INFO] [Chisel 2]: Skipping feature bloodBlock as its required mod AWWayofTime was missing. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature railcraft as its required mod Railcraft was missing. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature rcAbyssalBlock as its parent feature railcraft was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature rcBleachedBone as its parent feature railcraft was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature rcBloodStained as its parent feature railcraft was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature rcFrostBoundBlock as its parent feature railcraft was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature rcInfernalStone as its parent feature railcraft was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature rcQuarriedBlock as its parent feature railcraft was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature rcSandyStone as its parent feature railcraft was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature tallow as its required mod Thaumcraft was missing. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature twilghtForest as its required mod TwilightForest was missing. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature tfMazestone as its parent feature twilghtForest was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature tfTowerstone as its parent feature twilghtForest was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature tfUnderBrick as its parent feature twilghtForest was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature thaumium as its required mod Thaumcraft was missing. [08:59:11] [server thread/INFO] [Chisel 2]: 87 Feature's blocks loaded. [08:59:11] [server thread/INFO] [Chisel 2]: Loading Tile Entities... [08:59:11] [server thread/INFO] [Chisel 2]: Tile Entities loaded. [08:59:11] [server thread/INFO] [Chisel 2]: Loading items... [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature amber as its required mod Thaumcraft was missing. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature arcane as its required mod Thaumcraft was missing. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature bloodRune as its required mod AWWayofTime was missing. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature bloodBlock as its required mod AWWayofTime was missing. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature railcraft as its required mod Railcraft was missing. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature rcAbyssalBlock as its parent feature railcraft was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature rcBleachedBone as its parent feature railcraft was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature rcBloodStained as its parent feature railcraft was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature rcFrostBoundBlock as its parent feature railcraft was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature rcInfernalStone as its parent feature railcraft was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature rcQuarriedBlock as its parent feature railcraft was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature rcSandyStone as its parent feature railcraft was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature tallow as its required mod Thaumcraft was missing. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature twilghtForest as its required mod TwilightForest was missing. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature tfMazestone as its parent feature twilghtForest was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature tfTowerstone as its parent feature twilghtForest was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature tfUnderBrick as its parent feature twilghtForest was disabled. [08:59:11] [server thread/INFO] [Chisel 2]: Skipping feature thaumium as its required mod Thaumcraft was missing. [08:59:11] [server thread/INFO] [Chisel 2]: 87 Feature's items loaded. [08:59:11] [server thread/INFO] [Chisel 2]: Pre-init finished. [08:59:12] [server thread/INFO] [Compact Machines]: Registering dimension 3 on server side [08:59:15] [server thread/INFO] [EnderIO]: XP Juice regististration left to Open Blocks. [08:59:15] [server thread/INFO] [computronics]: Multiperipheral system for ComputerCraft engaged. Hooray! [08:59:15] [server thread/INFO] [computronics]: Multiple mods registering peripherals for the same block now won't be a problem anymore. [08:59:16] [server thread/INFO] [Draconic Evolution]: Finished PreInitialization [08:59:18] [server thread/INFO] [Mantle]: Mantle (1.7.10-0.3.2.jenkins184) -- Preparing for launch. [08:59:18] [server thread/INFO] [Mantle]: Entering preinitialization phase. [08:59:18] [server thread/INFO] [Mantle]: Loading configuration from disk. [08:59:18] [server thread/INFO] [Mantle]: Configuration load completed. [08:59:18] [server thread/INFO] [PulseManager-TConstruct]: Skipping Pulse Tinkers Thaumcraft Compatibility; missing dependency: Thaumcraft [08:59:18] [server thread/INFO] [PulseManager-TConstruct]: Skipping Pulse Tinkers Mystcraft Compatibility; missing dependency: Mystcraft [08:59:18] [server thread/INFO] [PulseManager-TConstruct]: Skipping Pulse Tinkers' Underground Biomes Compatiblity; missing dependency: UndergroundBiomes [08:59:20] [server thread/INFO] [extrautils]: Hello World [08:59:20] [server thread/INFO] [extrautils]: Registering Packet class PacketAngelRingNotifier with discriminator: 0 [08:59:20] [server thread/INFO] [extrautils]: Registering Packet class PacketGUIWidget with discriminator: 1 [08:59:20] [server thread/INFO] [extrautils]: Registering Packet class PacketParticle with discriminator: 2 [08:59:20] [server thread/INFO] [extrautils]: Registering Packet class PacketParticleEvent with discriminator: 3 [08:59:20] [server thread/INFO] [extrautils]: Registering Packet class PacketPlaySound with discriminator: 4 [08:59:20] [server thread/INFO] [extrautils]: Registering Packet class PacketRain with discriminator: 5 [08:59:20] [server thread/INFO] [extrautils]: Registering Packet class PacketUseItemAlt with discriminator: 6 [08:59:20] [server thread/INFO] [extrautils]: Registering Packet class PacketVillager with discriminator: 7 [08:59:20] [server thread/INFO] [extrautils]: Registering Packet class PacketVillagerReturn with discriminator: 8 [08:59:20] [server thread/INFO] [extrautils]: Registering Packet class PacketYoink with discriminator: 9 [08:59:20] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:extractor_base_remote.0 will now be used in the Ender Constructor [08:59:20] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:extractor_base_remote.6 will now be used in the Ender Constructor [08:59:20] [server thread/INFO] [extrautils]: Recipes constructing item.extrautils:nodeUpgrade.5 will now be used in the Ender Constructor [08:59:20] [server thread/INFO] [extrautils]: Recipes constructing item.extrautils:nodeUpgrade.6 will now be used in the Ender Constructor [08:59:20] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:magnumTorch will now be used in the Ender Constructor [08:59:20] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:endMarker will now be used in the Ender Constructor [08:59:20] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:extractor_base.12 will now be used in the Ender Constructor [08:59:20] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:enderQuarryUpgrade.0 will now be used in the Ender Constructor [08:59:20] [server thread/INFO] [extrautils]: Recipes constructing tile.extrautils:extractor_base.13 will now be used in the Ender Constructor [08:59:21] [server thread/INFO] [extrautils]: Registering RecipeGlove to RecipeSorter [08:59:21] [server thread/INFO] [extrautils]: Registering RecipeMicroBlocks to RecipeSorter [08:59:21] [server thread/INFO] [extrautils]: Registering RecipeSoul to RecipeSorter [08:59:21] [server thread/INFO] [extrautils]: Registering RecipeMagicalWood to RecipeSorter [08:59:21] [server thread/INFO] [extrautils]: Registering RecipeCustomOres to RecipeSorter [08:59:21] [server thread/INFO] [extrautils]: Registering RecipeFilterInvert to RecipeSorter [08:59:21] [server thread/INFO] [extrautils]: Registering RecipeEnchantCrafting to RecipeSorter [08:59:21] [server thread/INFO] [extrautils]: Registering RecipeHorseTransmutation to RecipeSorter [08:59:21] [server thread/INFO] [extrautils]: Registering RecipeUnsigil to RecipeSorter [08:59:21] [server thread/INFO] [extrautils]: Registering RecipeUnEnchanting to RecipeSorter [08:59:21] [server thread/INFO] [extrautils]: Registering RecipeUnstableIngotCrafting to RecipeSorter [08:59:21] [server thread/INFO] [extrautils]: Registering RecipeUnstableNuggetCrafting to RecipeSorter [08:59:21] [server thread/INFO] [extrautils]: Registering RecipeUnstableCrafting to RecipeSorter [08:59:21] [server thread/INFO] [extrautils]: Registering RecipeDifficultySpecific to RecipeSorter [08:59:21] [server thread/INFO] [extrautils]: Registering RecipeBagDye to RecipeSorter [08:59:21] [server thread/INFO] [extrautils]: Registering RecipeGBEnchanting to RecipeSorter [08:59:21] [server thread/INFO] [ExtraTiC]: Metallurgy Detected [08:59:21] [server thread/INFO] [ExtraTiC]: Mekanism Detected [08:59:21] [server thread/INFO] [ExtraTiC]: Applied Energistics Detected [08:59:21] [server thread/INFO] [ExtraTiC]: Thaumic Integration / Thermal Smeltery Detected [08:59:21] [server thread/INFO] [ExtraTiC]: Dragonic Evolution Detected [08:59:21] [server thread/INFO] [ExtraTiC]: EnderIO Detected [08:59:21] [server thread/INFO] [ExtraTiC]: BigReactors Detected [08:59:21] [server thread/INFO] [ExtraTiC]: ExtraUtils Detected [08:59:21] [server thread/INFO] [ExtraTiC]: Thermal Foundation Detected [08:59:21] [server thread/INFO] [advgenerators]: IC2 Version: IC2 2.2.727-experimental [08:59:21] [server thread/INFO] [advgenerators]: RF Version: CoFHAPI 1.7.10R1.0.7 [08:59:21] [server thread/INFO] [bdlib]: Loading internal config files for mod Advanced Generators [08:59:21] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/GENERATORS-0.9.13.72-MC1.7.10.jar!/assets/advgenerators/config/generators.cfg [08:59:21] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/GENERATORS-0.9.13.72-MC1.7.10.jar!/assets/advgenerators/config/recipes.cfg [08:59:22] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/GENERATORS-0.9.13.72-MC1.7.10.jar!/assets/advgenerators/config/turbine.cfg [08:59:22] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/GENERATORS-0.9.13.72-MC1.7.10.jar!/assets/advgenerators/config/exchanger.cfg [08:59:22] [server thread/INFO] [bdlib]: Loading config: jar:file:/C:/Users/Lucas/Desktop/Server/mods/GENERATORS-0.9.13.72-MC1.7.10.jar!/assets/advgenerators/config/syngas.cfg [08:59:22] [server thread/INFO] [bdlib]: Loading user config files for mod Advanced Generators [08:59:22] [server thread/INFO] [bdlib]: Config loading for mod Advanced Generators finished [08:59:22] [server thread/INFO] [bdlib]: Loaded creative tabs for advgenerators [08:59:22] [server thread/INFO] [advgenerators]: Fluid 'syngas' not registered by any other mod, creating... [08:59:22] [server thread/INFO] [advgenerators]: Adding block for fluid 'syngas' [08:59:22] [server thread/INFO] [HydCraft]: Hydraulicraft Starting! [08:59:24] [server thread/INFO] [meteors]: Baubles not found. Baubles integration disabled. [08:59:24] [server thread/INFO] [meteors]: Thaumcraft not found. Thaumcraft integration disabled. [08:59:24] [server thread/INFO] [More Chisels]: Logging is go! [08:59:24] [server thread/INFO] [NEIAddons|AppEng]: Version check success: appliedenergistics2 required / rv2-stable-3 detected [08:59:24] [server thread/INFO] [NEIAddons|Botany]: Wrong side: SERVER, Botany Addon not loading [08:59:24] [server thread/INFO] [NEIAddons|Forestry]: Required mod Forestry is not installed, dependent features will be unavailable [08:59:24] [server thread/ERROR] [NEIAddons|Forestry]: Requirements unmet, Forestry Addon not loading [08:59:24] [server thread/INFO] [NEIAddons|CraftingTables]: Wrong side: SERVER, Crafting Tables Addon not loading [08:59:24] [server thread/INFO] [NEIAddons|ExNihilo]: Wrong side: SERVER, Ex Nihilo Addon not loading [08:59:24] [server thread/INFO] [neiintegration]: Starting NEI Integration [08:59:24] [server thread/INFO] [neiintegration]: Loading configuration files [08:59:25] [server thread/INFO] [FML]: InvTweaks: net.minecraft.inventory.ContainerPlayer [08:59:25] [server thread/WARN] [Project Red]: Failed to load PR Plugin: Treecapitator gem axe compatibility [08:59:25] [server thread/WARN] [Project Red]: Failed to load PR Plugin: CPT Colored Lights Compat for Illumination lighting [08:59:27] [server thread/INFO] [simplyjetpacks]: Starting Simply Jetpacks [08:59:27] [server thread/INFO] [simplyjetpacks]: Loading configuration files [08:59:27] [server thread/INFO] [simplyjetpacks]: Constructing items [08:59:27] [server thread/INFO] [simplyjetpacks]: Registering items [08:59:27] [server thread/INFO] [simplyjetpacks]: Registering handlers [08:59:27] [server thread/INFO] [stevesAddons]: Applying Transformer to vswe.stevesfactory.blocks.BlockCableCluster [08:59:27] [server thread/INFO] [stevesAddons]: Applied CREATE_TE transformer [08:59:27] [server thread/INFO] [stevesAddons]: Applying Transformers to vswe.stevesfactory.blocks.TileEntityManager [08:59:27] [server thread/INFO] [stevesAddons]: Applied ACTIVATE_TRIGGER transformer [08:59:27] [server thread/INFO] [stevesAddons]: Applied MANAGER_INIT transformer [08:59:27] [server thread/INFO] [stevesAddons]: Applied UPDATE_ENTITY transformer [08:59:27] [server thread/INFO] [stevesAddons]: Applying Transformers to vswe.stevesfactory.blocks.TileEntityCluster [08:59:27] [server thread/INFO] [stevesAddons]: Applied PUBLIC_PAIR transformer [08:59:27] [server thread/INFO] [stevesAddons]: Applied GET_PUBLIC_REGISTRATIONS transformer [08:59:27] [server thread/INFO] [stevesAddons]: Applying Transformers to vswe.stevesfactory.blocks.TileEntityRFCluster [08:59:27] [server thread/INFO] [stevesAddons]: Applied GET_REGISTRATIONS transformer [08:59:27] [server thread/INFO] [stevesAddons]: Applied GET_RF_NODE transformer [08:59:27] [server thread/INFO] [stevesAddons]: Applying Transformer to vswe.stevesfactory.blocks.ConnectionBlockType [08:59:27] [server thread/INFO] [stevesAddons]: Applied IS_INSTANCE transformer [08:59:27] [server thread/INFO] [stevesAddons]: Applying Transformer to vswe.stevesfactory.components.ComponentMenuInterval [08:59:28] [server thread/INFO] [stevesAddons]: Applying Transformer to vswe.stevesfactory.components.ComponentMenuItem [08:59:28] [server thread/INFO] [stevesAddons]: Applying Transformers to vswe.stevesfactory.components.ComponentMenuContainerTypes [08:59:28] [server thread/INFO] [stevesAddons]: Applied WRITE_TO_NBT transformer [08:59:28] [server thread/INFO] [stevesAddons]: Applied READ_FROM_NBT transformer [08:59:30] [server thread/INFO] [FML]: Applying holder lookups [08:59:30] [server thread/WARN] [FML]: Unable to lookup chisel:cobblestoneWall for public static com.cricketcraft.chisel.block.BlockMarbleWall com.cricketcraft.chisel.init.ChiselBlocks.cobblestoneWall. Is there something wrong with the registry? [08:59:30] [server thread/WARN] [FML]: Unable to lookup chisel:obsidian2 for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.obsidian2. Is there something wrong with the registry? [08:59:30] [server thread/WARN] [FML]: Unable to lookup chisel:arcane for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.arcane. Is there something wrong with the registry? [08:59:30] [server thread/WARN] [FML]: Unable to lookup chisel:thaumium for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.thaumium. Is there something wrong with the registry? [08:59:30] [server thread/WARN] [FML]: Unable to lookup chisel:tallow for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.tallow. Is there something wrong with the registry? [08:59:30] [server thread/WARN] [FML]: Unable to lookup chisel:bloodRune for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.bloodRune. Is there something wrong with the registry? [08:59:30] [server thread/WARN] [FML]: Unable to lookup chisel:bloodBrick for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.bloodBrick. Is there something wrong with the registry? [08:59:30] [server thread/WARN] [FML]: Unable to lookup CompactMachines:interfaceblock for public static org.dave.CompactMachines.block.BlockCM org.dave.CompactMachines.init.ModBlocks.interfaceblock. Is there something wrong with the registry? [08:59:30] [server thread/INFO] [FML]: Holder lookups applied [08:59:30] [server thread/INFO] [FML]: Injecting itemstacks [08:59:30] [server thread/INFO] [FML]: Itemstack injection complete [08:59:30] [server thread/INFO]: Loading properties [08:59:30] [server thread/INFO]: Default game type: SURVIVAL [08:59:30] [server thread/INFO]: Generating keypair [08:59:30] [server thread/INFO]: Starting Minecraft server on *:25565 [08:59:30] [server thread/INFO] [FML]: InvTweaks: net.minecraft.inventory.ContainerEnchantment [08:59:31] [server thread/INFO] [AE2:S]: Initialization ( started ) [08:59:31] [server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.WoodenGear:0 [08:59:31] [server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.IronNugget:0 [08:59:31] [server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.GoldDust:0 [08:59:31] [server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.IronDust:0 [08:59:31] [server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.Silicon:0 [08:59:31] [server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.Silicon:0 [08:59:31] [server thread/INFO] [AE2:S]: Recipes Loading: Pulverizer: 9 loaded. [08:59:31] [server thread/INFO] [AE2:S]: Recipes Loading: MekCrusher: 3 loaded. [08:59:31] [server thread/INFO] [AE2:S]: Recipes Loading: Macerator: 8 loaded. [08:59:31] [server thread/INFO] [AE2:S]: Recipes Loading: OreRegistration: 12 loaded. [08:59:31] [server thread/INFO] [AE2:S]: Recipes Loading: Smelt: 2 loaded. [08:59:31] [server thread/INFO] [AE2:S]: Recipes Loading: GrindFZ: 7 loaded. [08:59:31] [server thread/INFO] [AE2:S]: Recipes Loading: Crusher: 9 loaded. [08:59:31] [server thread/INFO] [AE2:S]: Recipes Loading: MekEnrichment: 2 loaded. [08:59:31] [server thread/INFO] [AE2:S]: Recipes Loading: HCCrusher: 9 loaded. [08:59:31] [server thread/INFO] [AE2:S]: Recipes Loading: Shaped: 202 loaded. [08:59:31] [server thread/INFO] [AE2:S]: Recipes Loading: Shapeless: 55 loaded. [08:59:31] [server thread/INFO] [AE2:S]: Recipes Loading: Grind: 4 loaded. [08:59:31] [server thread/INFO] [AE2:S]: Recipes Loading: Press: 3 loaded. [08:59:31] [server thread/INFO] [AE2:S]: Recipes Loading: Inscribe: 8 loaded. [08:59:31] [server thread/INFO] [AE2:S]: Initialization ( ended after 393ms ) [08:59:31] [server thread/INFO] [bdlib]: Initialized network channel 'bdew.ae2stuff' for mod 'ae2stuff' [08:59:31] [server thread/WARN] [FML]: Redundant call to BiomeDictionary.registerAllBiomes ignored [08:59:32] [server thread/INFO] [FML]: Ars Magica 2 >> Unregistered spell part in skill trees: am2.spell.components.MeltArmor@192f092c [08:59:32] [server thread/INFO] [FML]: Ars Magica 2 >> Unregistered spell part in skill trees: am2.spell.components.ScrambleSynapses@5f03349e [08:59:32] [server thread/INFO] [FML]: Ars Magica 2 >> Unregistered spell part in skill trees: am2.spell.components.Nauseate@4b73a1cd [08:59:32] [server thread/INFO] [FML]: Ars Magica 2 >> Initializing API Hooks... [08:59:32] [server thread/INFO] [FML]: Ars Magica 2 >> Finished API Initialization [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 1, Name: Iron, Color multiplier: 13815497, Dust type: Metal [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 2, Name: Gold, Color multiplier: 16310039, Dust type: Metal [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 3, Name: Diamond, Color multiplier: 1305852, Dust type: Gem [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 55, Name: Emerald, Color multiplier: 45112, Dust type: Gem [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 56, Name: Coal, Color multiplier: 1776411, Dust type: Coal [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 57, Name: Charcoal, Color multiplier: 5458234, Dust type: Charcoal [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 58, Name: Obsidian, Color multiplier: 1511716, Dust type: Obsidian [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 59, Name: EnderPearl, Color multiplier: 1072721, Dust type: Ender Pearl [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 60, Name: NetherQuartz, Color multiplier: 14404799, Dust type: Nether Quartz [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added a dust: Meta: 83, Name: GildedRedMetal, Color multiplier: 16739867, Dust type: Metal [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: oreRedstone Output: 10xitem.redstone@0 [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: oreCoal Output: 2xitem.coal@0 [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: oreLapis Output: 12xitem.dyePowder@4 [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: oreQuartz Output: 2xitem.netherquartz@0 [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: stone Output: 1xtile.gravel@0 [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: cobblestone Output: 1xtile.sand@0 [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: oreDiamond Output: 2xitem.diamond@0 [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: oreEmerald Output: 2xitem.emerald@0 [08:59:34] [server thread/INFO] [buildCraft Additions]: Successfully added duster recipe with Input: 1xitem.blazeRod@0 Output: 4xitem.blazePowder@0 [08:59:34] [server thread/INFO] [Chisel 2]: Starting init... [08:59:34] [server thread/INFO] [Chisel 2]: Loading recipes... [08:59:34] [server thread/INFO] [Chisel 2]: Skipping feature amber as its required mod Thaumcraft was missing. [08:59:34] [server thread/INFO] [Chisel 2]: Skipping feature arcane as its required mod Thaumcraft was missing. [08:59:34] [server thread/INFO] [Chisel 2]: Skipping feature bloodRune as its required mod AWWayofTime was missing. [08:59:34] [server thread/INFO] [Chisel 2]: Skipping feature bloodBlock as its required mod AWWayofTime was missing. [08:59:34] [server thread/INFO] [Chisel 2]: Skipping feature railcraft as its required mod Railcraft was missing. [08:59:34] [server thread/INFO] [Chisel 2]: Skipping feature rcAbyssalBlock as its parent feature railcraft was disabled. [08:59:34] [server thread/INFO] [Chisel 2]: Skipping feature rcBleachedBone as its parent feature railcraft was disabled. [08:59:34] [server thread/INFO] [Chisel 2]: Skipping feature rcBloodStained as its parent feature railcraft was disabled. [08:59:34] [server thread/INFO] [Chisel 2]: Skipping feature rcFrostBoundBlock as its parent feature railcraft was disabled. [08:59:34] [server thread/INFO] [Chisel 2]: Skipping feature rcInfernalStone as its parent feature railcraft was disabled. [08:59:34] [server thread/INFO] [Chisel 2]: Skipping feature rcQuarriedBlock as its parent feature railcraft was disabled. [08:59:34] [server thread/INFO] [Chisel 2]: Skipping feature rcSandyStone as its parent feature railcraft was disabled. [08:59:34] [server thread/INFO] [Chisel 2]: Skipping feature tallow as its required mod Thaumcraft was missing. [08:59:34] [server thread/INFO] [Chisel 2]: Skipping feature twilghtForest as its required mod TwilightForest was missing. [08:59:34] [server thread/INFO] [Chisel 2]: Skipping feature tfMazestone as its parent feature twilghtForest was disabled. [08:59:34] [server thread/INFO] [Chisel 2]: Skipping feature tfTowerstone as its parent feature twilghtForest was disabled. [08:59:34] [server thread/INFO] [Chisel 2]: Skipping feature tfUnderBrick as its parent feature twilghtForest was disabled. [08:59:34] [server thread/INFO] [Chisel 2]: Skipping feature thaumium as its required mod Thaumcraft was missing. [08:59:34] [server thread/INFO] [Chisel 2]: 87 Feature's recipes loaded. [08:59:34] [server thread/INFO] [Chisel 2]: Init finished. [08:59:34] [server thread/INFO] [ChiselFacades]: Creating Facades... [08:59:34] [server thread/INFO] [ChiselFacades]: Old pillars disabled, adding Pillar slab Facades [08:59:34] [server thread/INFO] [ChiselFacades]: Successfully created Facades for 36 Chisel block variations [08:59:37] [server thread/INFO] [Compact Machines]: Creating new Entangle Registry [08:59:47] [server thread/INFO] [Mantle]: Entering initialization phase. [08:59:49] [server thread/ERROR] [exastris]: Skipping event FMLInitializationEvent and marking errored mod exastris since required dependency exnihilo has errored [08:59:51] [server thread/ERROR] [ExtraTiC]: Skipping event FMLInitializationEvent and marking errored mod ExtraTiC since required dependency TConstruct has errored [08:59:55] [server thread/ERROR] [immibisPeripherals]: Skipping event FMLInitializationEvent and marking errored mod ImmibisPeripherals since required dependency ComputerCraft has errored [08:59:58] [server thread/ERROR] [MekanismGenerators]: Skipping event FMLInitializationEvent and marking errored mod MekanismGenerators since required dependency Mekanism has errored [08:59:58] [server thread/ERROR] [MekanismTools]: Skipping event FMLInitializationEvent and marking errored mod MekanismTools since required dependency Mekanism has errored [09:00:05] [server thread/ERROR] [MineFactoryReloaded|CompatChococraft]: Skipping event FMLInitializationEvent and marking errored mod MineFactoryReloaded|CompatChococraft since required dependency MineFactoryReloaded has errored [09:00:13] [server thread/INFO] [NEIAddons]: Loading NEI Addons [09:00:13] [server thread/INFO] [NEIAddons]: Loading Applied Energistics 2 Addon... [09:00:25] [server thread/ERROR] [stevesAddons]: Skipping event FMLInitializationEvent and marking errored mod StevesAddons since required dependency StevesFactoryManager has errored [09:00:30] [server thread/ERROR] [ThermalSmeltery]: Skipping event FMLInitializationEvent and marking errored mod ThermalSmeltery since required dependency TConstruct has errored [09:00:32] [server thread/INFO] [denseores]: Ph'nglui mglw'nafh, y'uln Dense Ores shugg ch'agl [09:00:34] [server thread/ERROR] [FML]: Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue [09:00:34] [server thread/ERROR] [FML]: mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized FML{7.10.99.99} [Forge Mod Loader] (server-jar.jar) Unloaded->Constructed->Pre-initialized->Initialized Forge{10.13.3.1428} [Minecraft Forge] (server-jar.jar) Unloaded->Constructed->Pre-initialized->Initialized appliedenergistics2-core{rv2-stable-3} [AppliedEnergistics2 Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized CodeChickenCore{1.0.6.43} [CodeChicken Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized NotEnoughItems{1.0.4.106} [Not Enough Items] (NOTENOUGHITEMS-1.7.10-1.0.4.106-UNIVERSAL.jar) Unloaded->Constructed->Pre-initialized->Initialized VeinMiner_coremod{0.27.1_build.unknown} [Core mod] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized OpenModsCore{0.7.3} [OpenModsCore] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized <CoFH ASM>{000} [CoFH ASM] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized debug{1.0} [debug] (DENSEORES-1.6.2.jar) Unloaded->Constructed->Pre-initialized->Initialized DamageIndicatorsMod{3.2.3} [Damage Indicators] ([1.7.10]DAMAGEINDICATORSMOD-3.2.3.jar) Unloaded->Constructed->Pre-initialized->Errored IC2{2.2.727-experimental} [industrialCraft 2] (INDUSTRIALCRAFT-2-2.2.727-EXPERIMENTAL.jar) Unloaded->Constructed->Pre-initialized->Initialized ImmibisCore{59.1.0} [immibis Core] (IMMIBIS-CORE-59.1.0.jar) Unloaded->Constructed->Pre-initialized->Initialized AdvancedMachines{59.0.2} [Advanced Machines] (ADVANCED-MACHINES-59.0.2.jar) Unloaded->Constructed->Pre-initialized->Initialized appliedenergistics2{rv2-stable-3} [Applied Energistics 2] (APPLIEDENERGISTICS2-RV2-STABLE-3.jar) Unloaded->Constructed->Pre-initialized->Initialized bdlib{1.8.2.90} [bD Lib] (bdlib-1.8.2.90-mc1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized ae2stuff{0.3.0.30} [AE2 Stuff] (AE2STUFF-0.3.0.30-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized AnimationAPI{1.2.4} [AnimationAPI] (AnimationAPI-1.7.10-1.2.4.jar) Unloaded->Constructed->Pre-initialized->Initialized arsmagica2{1.4.0.005} [Ars Magica 2] (AM2-1.4.0.006.jar) Unloaded->Constructed->Pre-initialized->Initialized ArchimedesShips{1.7.10 v1.7.1} [Archimedes' Ships] (ARCHIMEDESSHIPS-1.7.1.jar) Unloaded->Constructed->Pre-initialized->Initialized CoFHCore{1.7.10R3.0.2} [CoFH Core] (COFHCORE-[1.7.10]3.0.2-262.jar) Unloaded->Constructed->Pre-initialized->Initialized asielib{0.4.1} [asielib] (ASIELIB-1.7.10-0.4.1.jar) Unloaded->Constructed->Pre-initialized->Initialized ThermalFoundation{1.7.10R1.0.0} [Thermal Foundation] (THERMALFOUNDATION-[1.7.10]1.0.0-81.jar) Unloaded->Constructed->Pre-initialized->Initialized ThermalExpansion{1.7.10R4.0.1} [Thermal Expansion] (THERMALEXPANSION-[1.7.10]4.0.1-182.jar) Unloaded->Constructed->Pre-initialized->Initialized BigReactors{0.4.3A} [big Reactors] (BIGREACTORS-0.4.3A.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Core{6.4.16} [buildCraft] (BUILDCRAFT-6.4.16.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Builders{6.4.16} [bC Builders] (BUILDCRAFT-6.4.16.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Energy{6.4.16} [bC Energy] (BUILDCRAFT-6.4.16.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Factory{6.4.16} [bC Factory] (BUILDCRAFT-6.4.16.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Transport{6.4.16} [bC Transport] (BUILDCRAFT-6.4.16.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Silicon{6.4.16} [bC Silicon] (BUILDCRAFT-6.4.16.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Compat{6.4.0} [buildCraft Compat] (BUILDCRAFT-COMPAT-6.4.2.jar) Unloaded->Constructed->Pre-initialized->Initialized eureka{3.0.2} [Eureka] (EUREKA-1.7.10-3.0.2.jar) Unloaded->Constructed->Pre-initialized->Initialized bcadditions{2.1.2} [buildCraft Additions] (BUILDCRAFTADDITIONS-1.7.10-2.1.2.jar) Unloaded->Constructed->Pre-initialized->Initialized CarpentersBlocks{3.3.6} [Carpenter's Blocks] (CARPENTERS BLOCKS V3.3.6 - MC 1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized ForgeMultipart{1.2.0.344} [Forge Multipart] (ForgeMultipart-1.7.10-1.2.0.344-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized chisel{2.3.10.37} [Chisel 2] (CHISEL2-2.3.10.37.jar) Unloaded->Constructed->Pre-initialized->Initialized ChiselFacades{1.7.10-2.10-cricket} [Chisel Facades] (CHISELFACADES-1.7.10-2.10-CRICKET.jar) Unloaded->Constructed->Pre-initialized->Initialized MrTJPCoreMod{1.0.8.16} [MrTJPCore] (MrTJPCore-1.7.10-1.0.8.16-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized ProjRed|Core{4.6.2.82} [ProjectRed] (PROJECTRED-1.7.10-4.6.2.82-BASE.jar) Unloaded->Constructed->Pre-initialized->Initialized ProjRed|Transmission{4.6.2.82} [ProjectRed-Transmission] (PROJECTRED-1.7.10-4.6.2.82-INTEGRATION.jar) Unloaded->Constructed->Pre-initialized->Initialized Waila{1.5.10} [Waila] (Waila-1.5.10_1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized CompactMachines{1.7.10-1.19b} [Compact Machines] (COMPACTMACHINES-1.7.10-1.19B.jar) Unloaded->Constructed->Pre-initialized->Initialized ComputerCraft{1.73} [ComputerCraft] (COMPUTERCRAFT1.73.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded{1.7.10R2.8.0} [MineFactory Reloaded] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Errored MetallurgyCore{4.0.4} [Metallurgy Core] (METALLURGYCORE-1.7.10-4.0.4.18.jar) Unloaded->Constructed->Pre-initialized->Initialized Mekanism{8.1.3} [Mekanism] (MEKANISM-1.7.10-8.1.3.231.jar) Unloaded->Constructed->Pre-initialized->Errored EnderIO{1.7.10-2.2.8.381} [Ender IO] (ENDERIO-1.7.10-2.2.8.381.jar) Unloaded->Constructed->Pre-initialized->Errored computronics{1.5.1} [Computronics] (COMPUTRONICS-1.7.10-1.5.1.jar) Unloaded->Constructed->Pre-initialized->Errored DraconicEvolution{1.0.1c} [Draconic Evolution] (DRACONIC-EVOLUTION-1.7.10-1.0.1C.jar) Unloaded->Constructed->Pre-initialized->Errored EnderStorage{1.4.7.36} [EnderStorage] (ENDERSTORAGE-1.7.10-1.4.7.36-UNIVERSAL.jar) Unloaded->Constructed->Pre-initialized->Errored exnihilo{1.38-36} [Ex Nihilo] (Ex-Nihilo-1.38-36.jar) Unloaded->Constructed->Pre-initialized->Errored Mantle{1.7.10-0.3.2.jenkins184} [Mantle] (MANTLE-1.7.10-0.3.2.jar) Unloaded->Constructed->Pre-initialized->Initialized TConstruct{1.7.10-1.8.2.build858} [Tinkers' Construct] (TConstruct-1.7.10-1.8.2a.jar) Unloaded->Constructed->Pre-initialized->Errored Metallurgy{4.0.8} [Metallurgy 4] (METALLURGY-1.7.10-4.0.8.97.jar) Unloaded->Constructed->Pre-initialized->Errored exastris{MC1.7.10-1.16-35} [Ex Astris] (Ex-Astris-MC1.7.10-1.16-35.jar) Unloaded->Constructed->Pre-initialized->Errored extracells{2.2.70} [Extra Cells 2] (EXTRACELLS-1.7.10-2.2.70B119.jar) Unloaded->Constructed->Pre-initialized->Errored ExtraUtilities{1.2.5} [Extra Utilities] (EXTRAUTILITIES-1.2.5.jar) Unloaded->Constructed->Pre-initialized->Errored ExtraTiC{1.4.5} [ExtraTiC] (EXTRATIC-1.7.10-1.4.5.jar) Unloaded->Constructed->Pre-initialized->Errored advgenerators{0.9.13.72} [Advanced Generators] (GENERATORS-0.9.13.72-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Errored k4lib{1.7.10-0.1.35} [K4Lib] (K4LIB-1.7.10-0.1.35-UNIVERSAL.jar) Unloaded->Constructed->Pre-initialized->Initialized HydCraft{1.7.10-2.0.87} [Hydraulicraft] (HYDCRAFT-1.7.10-2.0.87-UNIVERSAL.jar) Unloaded->Constructed->Pre-initialized->Errored IC2NuclearControl{2.0.8c} [Nuclear Control 2] (IC2NUCLEARCONTROL-2.0.8C.jar) Unloaded->Constructed->Pre-initialized->Errored ImmibisPeripherals{59.0.2} [immibis's Peripherals] (IMMIBIS-PERIPHERALS-59.0.2.jar) Unloaded->Constructed->Pre-initialized->Errored inventorytweaks{1.59-dev-156-af3bc68} [inventory Tweaks] (INVENTORYTWEAKS-1.59-DEV-156.jar) Unloaded->Constructed->Pre-initialized->Errored iridiummod{1.0.1} [iridium Mod] (IRIDIUM MOD-1.0.2.jar) Unloaded->Constructed->Pre-initialized->Initialized IronChest{6.0.62.742} [iron Chest] (IRONCHEST-1.7.10-6.0.62.742-UNIVERSAL.jar) Unloaded->Constructed->Pre-initialized->Initialized JABBA{1.2.0b} [JABBA] (JABBA-1.2.1_1.7.10.jar) Unloaded->Constructed->Pre-initialized->Errored magicalcrops{4.0.0_PUBLIC_BETA_3} [Magical Crops] (MAGICALCROPS-4.0.0_PUBLIC_BETA_3.jar) Unloaded->Constructed->Pre-initialized->Errored MekanismGenerators{8.1.3} [MekanismGenerators] (MEKANISMGENERATORS-1.7.10-8.1.3.231.jar) Unloaded->Constructed->Pre-initialized->Errored MekanismTools{8.1.3} [MekanismTools] (MEKANISMTOOLS-1.7.10-8.1.3.231.jar) Unloaded->Constructed->Pre-initialized->Errored meteors{2.14.1} [Falling Meteors] (METEORS-1.7.10-2.14.1.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatAppliedEnergistics{1.7.10R2.8.0} [MFR Compat: Applied Energistics] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatAtum{1.7.10R2.8.0} [MFR Compat: Atum] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatBackTools{1.7.10R2.8.0} [MFR Compat: BackTools] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatBuildCraft{1.7.10R2.8.0} [MFR Compat: BuildCraft] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatChococraft{1.7.10R2.8.0} [MFR Compat: Chococraft] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatExtraBiomes{1.7.10R2.8.0} [MFR Compat: ExtraBiomes] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatForestry{1.7.10R2.8.0} [MFR Compat: Forestry] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatForgeMicroblock{1.7.10R2.8.0} [MFR Compat: ForgeMicroblock] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatIC2{1.7.10R2.8.0} [MFR Compat: IC2] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatMystcraft{1.7.10R2.8.0} [MFR Compat: Mystcraft] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized ProjRed|Exploration{4.6.2.82} [ProjectRed-Exploration] (PROJECTRED-1.7.10-4.6.2.82-WORLD.jar) Unloaded->Constructed->Pre-initialized->Errored MineFactoryReloaded|CompatProjRed{1.7.10R2.8.0} [MFR Compat ProjectRed] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatRailcraft{1.7.10R2.8.0} [MFR Compat: Railcraft] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatSufficientBiomes{1.7.10R2.8.0} [MFR Compat: Sufficient Biomes] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatThaumcraft{1.7.10R2.8.0} [MFR Compat: Thaumcraft] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatThermalExpansion{1.7.10R2.8.0} [MFR Compat: Thermal Expansion] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatTConstruct{1.7.10R2.8.0} [MFR Compat: Tinkers' Construct] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatTwilightForest{1.7.10R2.8.0} [MFR Compat: TwilightForest] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Initialized MineFactoryReloaded|CompatVanilla{1.7.10R2.8.0} [MFR Compat: Vanilla] (MineFactoryReloaded-[1.7.10]2.8.0-104.jar) Unloaded->Constructed->Pre-initialized->Errored MineTweaker3{3.0.9B} [MineTweaker 3] (MINETWEAKER3-1.7.10-3.0.9C.jar) Unloaded->Constructed->Pre-initialized->Initialized morechisels{@VERSION@} [More Chisels] (MORECHISELS-1.7.10-1.0-20.jar) Unloaded->Constructed->Pre-initialized->Errored NEIAddons{1.12.8.29} [NEI Addons] (NEIADDONS-1.12.8.29-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Errored NEIAddons|AppEng{1.12.8.29} [NEI Addons: Applied Energistics 2] (NEIADDONS-1.12.8.29-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized NEIAddons|Botany{1.12.8.29} [NEI Addons: Botany] (NEIADDONS-1.12.8.29-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized NEIAddons|Forestry{1.12.8.29} [NEI Addons: Forestry] (NEIADDONS-1.12.8.29-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized NEIAddons|CraftingTables{1.12.8.29} [NEI Addons: Crafting Tables] (NEIADDONS-1.12.8.29-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized NEIAddons|ExNihilo{1.12.8.29} [NEI Addons: Ex Nihilo] (NEIADDONS-1.12.8.29-MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized neiintegration{1.0.9} [NEI Integration] (NEIINTEGRATION-MC1.7.10-1.0.9.jar) Unloaded->Constructed->Pre-initialized->Initialized NetherOres{1.7.10R2.3.0} [Nether Ores] (NETHERORES-[1.7.10]2.3.0-12.jar) Unloaded->Constructed->Pre-initialized->Errored OpenMods{0.7.3} [OpenMods] (OPENMODSLIB-1.7.10-0.7.3.jar) Unloaded->Constructed->Pre-initialized->Initialized OpenBlocks{1.4.3} [OpenBlocks] (OPENBLOCKS-1.7.10-1.4.3.jar) Unloaded->Constructed->Pre-initialized->Errored ProjRed|Transportation{4.6.2.82} [ProjectRed-Transportation] (PROJECTRED-1.7.10-4.6.2.82-MECHANICAL_BETA.jar) Unloaded->Constructed->Pre-initialized->Errored ProjRed|Compatibility{4.6.2.82} [ProjectRed-Compatibility] (PROJECTRED-1.7.10-4.6.2.82-COMPAT.jar) Unloaded->Constructed->Pre-initialized->Errored ProjRed|Integration{4.6.2.82} [ProjectRed-Integration] (PROJECTRED-1.7.10-4.6.2.82-INTEGRATION.jar) Unloaded->Constructed->Pre-initialized->Errored ProjRed|Illumination{4.6.2.82} [ProjectRed-Illumination] (PROJECTRED-1.7.10-4.6.2.82-LIGHTING.jar) Unloaded->Constructed->Pre-initialized->Errored ProjRed|Expansion{4.6.2.82} [ProjectRed-Expansion] (PROJECTRED-1.7.10-4.6.2.82-MECHANICAL_BETA.jar) Unloaded->Constructed->Pre-initialized->Errored libsandstone{1.0.0} [libsandstone] (LibSandstone-1.0.0.jar) Unloaded->Constructed->Pre-initialized->Initialized xreliquary{1.2} [Reliquary] (RELIQUARY-1.2.jar) Unloaded->Constructed->Pre-initialized->Errored simplyjetpacks{1.4.1} [simply Jetpacks] (SIMPLYJETPACKS-MC1.7.10-1.4.1.jar) Unloaded->Constructed->Pre-initialized->Errored StevesFactoryManager{A93} [steve's Factory Manager] (STEVESFACTORYMANAGERA93.jar) Unloaded->Constructed->Pre-initialized->Errored StevesAddons{0.10.12} [steve's Addons] (STEVESADDONS-1.7.10-0.10.12.jar) Unloaded->Constructed->Pre-initialized->Errored StevesCarts{2.0.0.b18} [steve's Carts 2] (STEVESCARTS2.0.0.B18.jar) Unloaded->Constructed->Pre-initialized->Errored StevesWorkshop{0.5.1} [steve's Workshop] (STEVESWORKSHOP-0.5.1.jar) Unloaded->Constructed->Pre-initialized->Errored ThermalDynamics{1.7.10R1.0.0} [Thermal Dynamics] (THERMALDYNAMICS-[1.7.10]1.0.0-122.jar) Unloaded->Constructed->Pre-initialized->Errored recycling{0.3.4.2} [Thermal Recycling] (THERMALRECYCLING-1.7.10-0.3.4.2.jar) Unloaded->Constructed->Pre-initialized->Errored ThermalSmeltery{1.7.10-1.2.1} [Thermal Smeltery] (THERMALSMELTERY-1.7.10-1.2.1.jar) Unloaded->Constructed->Pre-initialized->Errored VeinMiner{0.27.1_build.unknown} [Vein Miner] (VEINMINER-1.7.10_0.27.1.UNKNOWN.jar) Unloaded->Constructed->Pre-initialized->Initialized VeinMinerModSupport{0.27.1_build.unknown} [Mod Support] (VEINMINER-1.7.10_0.27.1.UNKNOWN.jar) Unloaded->Constructed->Pre-initialized->Errored WailaHarvestability{1.1.2} [Waila Harvestability] (WailaHarvestability-mc1.7.x-1.1.2.jar) Unloaded->Constructed->Pre-initialized->Initialized WailaNBT{1.4} [Waila NBT] (WailaNBT-1.7.10-1.4.jar) Unloaded->Constructed->Pre-initialized->Initialized weaponmod{v1.14.3} [balkon's WeaponMod] (WEAPONMOD-1.14.3.jar) Unloaded->Constructed->Pre-initialized->Errored McMultipart{1.2.0.344} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.2.0.344-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized denseores{1.0} [Dense Ores] (DENSEORES-1.6.2.jar) Unloaded->Constructed->Pre-initialized->Errored ForgeMicroblock{1.2.0.344} [Forge Microblocks] (ForgeMultipart-1.7.10-1.2.0.344-universal.jar) Unloaded->Constructed->Pre-initialized->Errored [09:00:34] [server thread/ERROR] [FML]: The following problems were captured during this phase [09:00:36] [server thread/WARN] [FML]: Can't revert to frozen GameData state without freezing first. [09:00:36] [server thread/INFO] [FML]: Applying holder lookups [09:00:36] [server thread/WARN] [FML]: Unable to lookup chisel:cobblestoneWall for public static com.cricketcraft.chisel.block.BlockMarbleWall com.cricketcraft.chisel.init.ChiselBlocks.cobblestoneWall. Is there something wrong with the registry? [09:00:36] [server thread/WARN] [FML]: Unable to lookup chisel:obsidian2 for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.obsidian2. Is there something wrong with the registry? [09:00:36] [server thread/WARN] [FML]: Unable to lookup chisel:arcane for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.arcane. Is there something wrong with the registry? [09:00:36] [server thread/WARN] [FML]: Unable to lookup chisel:thaumium for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.thaumium. Is there something wrong with the registry? [09:00:36] [server thread/WARN] [FML]: Unable to lookup chisel:tallow for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.tallow. Is there something wrong with the registry? [09:00:36] [server thread/WARN] [FML]: Unable to lookup chisel:bloodRune for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.bloodRune. Is there something wrong with the registry? [09:00:36] [server thread/WARN] [FML]: Unable to lookup chisel:bloodBrick for public static com.cricketcraft.chisel.block.BlockCarvable com.cricketcraft.chisel.init.ChiselBlocks.bloodBrick. Is there something wrong with the registry? [09:00:36] [server thread/WARN] [FML]: Unable to lookup CompactMachines:interfaceblock for public static org.dave.CompactMachines.block.BlockCM org.dave.CompactMachines.init.ModBlocks.interfaceblock. Is there something wrong with the registry? [09:00:36] [server thread/INFO] [FML]: Holder lookups applied [09:00:37] [server thread/ERROR] [exastris]: Skipping event FMLServerStoppedEvent and marking errored mod exastris since required dependency exnihilo has errored [09:00:37] [server thread/ERROR] [ExtraTiC]: Skipping event FMLServerStoppedEvent and marking errored mod ExtraTiC since required dependency TConstruct has errored [09:00:37] [server thread/ERROR] [immibisPeripherals]: Skipping event FMLServerStoppedEvent and marking errored mod ImmibisPeripherals since required dependency ComputerCraft has errored [09:00:37] [server thread/ERROR] [MekanismGenerators]: Skipping event FMLServerStoppedEvent and marking errored mod MekanismGenerators since required dependency Mekanism has errored [09:00:37] [server thread/ERROR] [MekanismTools]: Skipping event FMLServerStoppedEvent and marking errored mod MekanismTools since required dependency Mekanism has errored [09:00:37] [server thread/ERROR] [MineFactoryReloaded|CompatChococraft]: Skipping event FMLServerStoppedEvent and marking errored mod MineFactoryReloaded|CompatChococraft since required dependency MineFactoryReloaded has errored [09:00:41] [server thread/ERROR] [stevesAddons]: Skipping event FMLServerStoppedEvent and marking errored mod StevesAddons since required dependency StevesFactoryManager has errored [09:00:41] [server thread/ERROR] [ThermalSmeltery]: Skipping event FMLServerStoppedEvent and marking errored mod ThermalSmeltery since required dependency TConstruct has errored [09:00:41] [server thread/INFO] [FML]: The state engine was in incorrect state ERRORED and forced into state SERVER_STOPPED. Errors may have been discarded. [09:00:41] [server thread/INFO] [FML]: The state engine was in incorrect state ERRORED and forced into state AVAILABLE. Errors may have been discarded. Any help would be much appreciated.
  22. Wow. Didn't even occur to me. I am such an idiot. Lol, thanks man.
  23. My Minecraft has a lot of mods in it. While testing to see if they are compatible I recieved this error on startup: "Forge Mod Loader has found a problem with your installation. The mods and versions listed below could not be found: Forge: minimum version required is 10.13.3." So Forge can't find itself? Running MC 1.7.10 and Forge 10.13.2.1291
×
×
  • Create New...

Important Information

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