Is this the FULL rash report? I do not see any mod information in this, or this crash was caused by a error in Minecraft. I can only suggest re-installing Minecraft if this is the full report. if not, post that and MAKE SURE YOU PUT IT INTO A SPOILER BOX.
I'm getting crashes when my world loads. I haven't been using optifine for a few weeks. Since then I've updated several mods I use. I wanted to try some texture packs that require optifine or MCpatcher. I added optifine back to my mods, no texture packs added yet.
I suspect one of the mods that were recently updated. I'm not that great reading crashlogs, but it seems to point to Biomesoplenty. Can anyone confirm?
---- Minecraft Crash Report ----
// Don't be sad, have a hug! <3
Time: 10/9/14 11:18 AM
Description: Exception in server tick loop
java.lang.NullPointerException: Exception in server tick loop
at java.util.ArrayList.addAll(Unknown Source)
at biomesoplenty.common.world.layer.GenLayerBiomeBOP.<init>(GenLayerBiomeBOP.java:33)
at biomesoplenty.common.world.WorldTypeBOP.getBiomeLayer(WorldTypeBOP.java:25)
at biomesoplenty.common.world.layer.GenLayerBOP.initializeAllBiomeGenerators(GenLayerBOP.java:62)
at biomesoplenty.common.world.WorldChunkManagerBOP.<init>(WorldChunkManagerBOP.java:38)
at biomesoplenty.common.world.WorldTypeBOP.getChunkManager(WorldTypeBOP.java:35)
at net.minecraft.world.WorldProvider.func_76572_b(WorldProvider.java:61)
at net.minecraft.world.WorldProvider.func_76558_a(WorldProvider.java:44)
at net.minecraft.world.World.<init>(World.java:244)
at net.minecraft.world.WorldServer.<init>(WorldServer.java:97)
at WorldServerOF.<init>(WorldServerOF.java:69)
at net.minecraft.server.integrated.IntegratedServer.func_71247_a(IntegratedServer.java:65)
at net.minecraft.server.integrated.IntegratedServer.func_71197_b(IntegratedServer.java:153)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:387)
at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:685)
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
I'm getting crashes when my world loads. I haven't been using optifine for a few weeks. Since then I've updated several mods I use. I wanted to try some texture packs that require optifine or MCpatcher. I added optifine back to my mods, no texture packs added yet.
I suspect one of the mods that were recently updated. I'm not that great reading crashlogs, but it seems to point to Biomesoplenty. Can anyone confirm?
---- Minecraft Crash Report ----
// Don't be sad, have a hug! <3
Time: 10/9/14 11:18 AM
Description: Exception in server tick loop
java.lang.NullPointerException: Exception in server tick loop
at java.util.ArrayList.addAll(Unknown Source)
at biomesoplenty.common.world.layer.GenLayerBiomeBOP.<init>(GenLayerBiomeBOP.java:33)
at biomesoplenty.common.world.WorldTypeBOP.getBiomeLayer(WorldTypeBOP.java:25)
at biomesoplenty.common.world.layer.GenLayerBOP.initializeAllBiomeGenerators(GenLayerBOP.java:62)
at biomesoplenty.common.world.WorldChunkManagerBOP.<init>(WorldChunkManagerBOP.java:38)
at biomesoplenty.common.world.WorldTypeBOP.getChunkManager(WorldTypeBOP.java:35)
at net.minecraft.world.WorldProvider.func_76572_b(WorldProvider.java:61)
at net.minecraft.world.WorldProvider.func_76558_a(WorldProvider.java:44)
at net.minecraft.world.World.<init>(World.java:244)
at net.minecraft.world.WorldServer.<init>(WorldServer.java:97)
at WorldServerOF.<init>(WorldServerOF.java:69)
at net.minecraft.server.integrated.IntegratedServer.func_71247_a(IntegratedServer.java:65)
at net.minecraft.server.integrated.IntegratedServer.func_71197_b(IntegratedServer.java:153)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:387)
at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:685)
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
Looks as though your issue seems to come from Biomes'O Plenty.
So after a few hours of troubleshooting I've seemed to find that it is an incompatibility between BoP 1.7.10-2.1.0.978 and Forge 1.7.10-10.13.1.1224. Forge .1222 works.
-snip-
There should be some sort of rule to not provide any sort of help to people who have a hacked client and maybe delete the posts to avoid future confusion and false assumptions that we don't help users.
-snip-
I agree full-heartedly. I didn't notice that he was using a hacked account.
So after a few hours of troubleshooting I've seemed to find that it is an incompatibility between BoP 1.7.10-2.1.0.978 and Forge 1.7.10-10.13.1.1224. Forge .1222 works.
Thanks!
Yeah, sometimes it's not a good idea to update forge unless the mod otherwise states to do so. Sometimes updating a forge version will cause wonky things to happen with mods.
1. Both Forge and Liteloader can load all known tweak mods (each other, Optifine and shader mod) if they're placed in the mods folder. In short, Optifine can be loaded by Liteloader
2. There's a Liteloader mod that allows (a bit limited) use of World Edit in singleplayer. World Edit Wrapper.
Go read Liteloader instructions.
I loaded Forge, extracted LiteLoader into the /mods/1.7.10 folder, then added Optifine. There is a complete Voxel Modpack available (individual parts can be handled the same) Forge and LiteLoader Mods both work.
The WorldEdit commands (nearly 5 pages) are exactly like they were with SPC. With Voxel many equivalent SPC commands/functions are available.
Finished fixing the MCP mappings.
This was a huuuuuge update. So many new classes and functions.
Rendering system
The old Notch code was straightforward and relatively easy to follow. The new rendering system is an over-engineered monster full of factories, builders, bakeries, baked items, managers, dispatchers, states, enums and layers.
Object allocation is rampant, small objects are allocated like there is no tomorrow. No wonder that the garbage collector has to work so hard.
On the positive side the rendering engine can load configurable block models and supports VBO rendering, which may be a bit faster. Because it is so complex there is a lot of optimization potential.
Chunk loading
The multithreaded chunk loading is crude and it will need a lot of optimizations in order to behave properly. Currently it works best with multi-core systems, quad-core is optimal, dual-core suffers a bit and single-core CPUs are practically doomed with vanilla. Lag spikes are present with all types of CPU.
Finished fixing the MCP mappings.
This was a huuuuuge update. So many new classes and functions.
Rendering system
The old Notch code was straightforward and relatively easy to follow. The new rendering system is an over-engineered monster full of factories, builders, bakeries, baked items, managers, dispatchers, states, enums and layers.
Object allocation is rampant, small objects are allocated like there is no tomorrow. No wonder that the garbage collector has to work so hard.
On the positive side the rendering engine can load configurable block models and supports VBO rendering, which may be a bit faster. Because it is so complex there is a lot of optimization potential.
Chunk loading
The multithreaded chunk loading is crude and it will need a lot of optimizations in order to behave properly. Currently it works best with multi-core systems, quad-core is optimal, dual-core suffers a bit and single-core CPUs are practically doomed with vanilla. Lag spikes are present with all types of CPU.
Many including myself are very pleased to see progress is being made on Optifine for the newest version of Minecraft, Sp614x. I was VERY pleased to read 'Currently it works best with multi-core systems, quad-core is optimal' because I just happen to use a Core 2 Quad Q6600 2.4ghz, which may be an older model compared to the current i3, i5, and i7 series, but it works great nevertheless!
Finished fixing the MCP mappings.
This was a huuuuuge update. So many new classes and functions.
Rendering system
The old Notch code was straightforward and relatively easy to follow. The new rendering system is an over-engineered monster full of factories, builders, bakeries, baked items, managers, dispatchers, states, enums and layers.
Object allocation is rampant, small objects are allocated like there is no tomorrow. No wonder that the garbage collector has to work so hard.
On the positive side the rendering engine can load configurable block models and supports VBO rendering, which may be a bit faster. Because it is so complex there is a lot of optimization potential.
Chunk loading
The multithreaded chunk loading is crude and it will need a lot of optimizations in order to behave properly. Currently it works best with multi-core systems, quad-core is optimal, dual-core suffers a bit and single-core CPUs are practically doomed with vanilla. Lag spikes are present with all types of CPU.
Good to hear. Do you think you will find a lot of ways to speed up the new rendering system then? Or is that something Mojang has to optimize? As for multithreading, do you think it will be possible to turn off for single core systems with optifine?
It seems like 1.8 has to potential to be faster than 1.7 was, but so far it is quite a bit slower....
Good to hear. Do you think you will find a lot of ways to speed up the new rendering system then? Or is that something Mojang has to optimize? As for multithreading, do you think it will be possible to turn off for single core systems with optifine?
It seems like 1.8 has to potential to be faster than 1.7 was, but so far it is quite a bit slower....
The rendering can probably be made faster, there are some interesting shortcuts that can be taken.
The chunk loading will probably be configurable between auto, single-core, dual-core and quad-core+. The Auto option will use the best setting for the CPU. There may also be a second option which will make it work like the 1.7 OptiFine Multi-Core which should be even faster.
Hey sp614x or as I like to call you, "Optifine guy"...I just wanted to say thanks for the great mod. Its always been one of my favorites. Last night, I clicked one of the tabs in the optifine menu and my FPS skyrocketed from 25ish to 80ish. And I had already maxed out all of the other mojang options. This is with over 140 mods installed. Its incredible, and has made the game so much more enjoyable for me. Thanks!
When this is updated for 1.8 will the connected textures be bugged? Right now I'd you break a large chest it appears to break the whole thing until it autually breaks. Will connected textures be like that?
Rollback Post to RevisionRollBack
Help Me by clicking above links and skipping ad! I support:
Is this the FULL rash report? I do not see any mod information in this, or this crash was caused by a error in Minecraft. I can only suggest re-installing Minecraft if this is the full report. if not, post that and MAKE SURE YOU PUT IT INTO A SPOILER BOX.
Never arbitrary,

-Dablizz
Well... Probably should have seen that part... Guess that's what happens if one hasn't slept in 15 hours XD
Never arbitrary,

-Dablizz
I suspect one of the mods that were recently updated. I'm not that great reading crashlogs, but it seems to point to Biomesoplenty. Can anyone confirm?
http://pastebin.com/sQ77Rxqu
---- Minecraft Crash Report ----
// Don't be sad, have a hug! <3
Time: 10/9/14 11:18 AM
Description: Exception in server tick loop
java.lang.NullPointerException: Exception in server tick loop
at java.util.ArrayList.addAll(Unknown Source)
at biomesoplenty.common.world.layer.GenLayerBiomeBOP.<init>(GenLayerBiomeBOP.java:33)
at biomesoplenty.common.world.WorldTypeBOP.getBiomeLayer(WorldTypeBOP.java:25)
at biomesoplenty.common.world.layer.GenLayerBOP.initializeAllBiomeGenerators(GenLayerBOP.java:62)
at biomesoplenty.common.world.WorldChunkManagerBOP.<init>(WorldChunkManagerBOP.java:38)
at biomesoplenty.common.world.WorldTypeBOP.getChunkManager(WorldTypeBOP.java:35)
at net.minecraft.world.WorldProvider.func_76572_b(WorldProvider.java:61)
at net.minecraft.world.WorldProvider.func_76558_a(WorldProvider.java:44)
at net.minecraft.world.World.<init>(World.java:244)
at net.minecraft.world.WorldServer.<init>(WorldServer.java:97)
at WorldServerOF.<init>(WorldServerOF.java:69)
at net.minecraft.server.integrated.IntegratedServer.func_71247_a(IntegratedServer.java:65)
at net.minecraft.server.integrated.IntegratedServer.func_71197_b(IntegratedServer.java:153)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:387)
at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:685)
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- System Details --
Details:
Minecraft Version: 1.7.10
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.7.0_67, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 1299109560 bytes (1238 MB) / 2040135680 bytes (1945 MB) up to 6120341504 bytes (5836 MB)
JVM Flags: 20 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx6G -Xms2048m -XX:PermSize=256m -XX:NewRatio=3 -XX:SurvivorRatio=3 -XX:TargetSurvivorRatio=80 -XX:MaxTenuringThreshold=8 -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -XX:MaxGCPauseMillis=10 -XX:GCPauseIntervalMillis=50 -XX:MaxGCMinorPauseMillis=7 -XX:+ExplicitGCInvokesConcurrent -XX:+UseCMSInitiatingOccupancyOnly -XX:CMSInitiatingOccupancyFraction=60 -XX:+BindGCTaskThreadsToCPUs -Xnoclassgc -XX:+CICompilerCountPerCPU -XX:+TieredCompilation
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: MCP v9.05 FML v7.10.85.1224 Minecraft Forge 10.13.1.1224 Optifine OptiFine_1.7.10_HD_U_A4 104 mods loaded, 104 mods active
mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
FML{7.10.85.1224} [Forge Mod Loader] (forge-1.7.10-10.13.1.1224.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
Forge{10.13.1.1224} [Minecraft Forge] (forge-1.7.10-10.13.1.1224.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
CodeChickenCore{1.0.3.28} [CodeChicken Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
<CoFH ASM>{000} [CoFH ASM Data Initialization] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
NotEnoughItems{1.0.3.60} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.3.60-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
bspkrsCore{6.14} [bspkrsCore] ([1.7.10]bspkrsCore-universal-6.14.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ArmorStatusHUD{1.27} [ArmorStatusHUD] ([1.7.10]ArmorStatusHUD-client-1.27.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
WorldStateCheckpoints{1.7.10.r02} [WorldStateCheckpoints] ([1.7.10]WorldStateCheckpoints-client-1.7.10.r02.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
Treecapitator{1.7.2} [Treecapitator] ([1.7.2]Treecapitator-universal-2.0.3.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
Backpack{2.0.1} [Backpack] (backpack-2.0.1-1.7.x.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
BBG{1.0.0} [BetterBedrockGen] (BBG-1.0.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
CoFHCore{1.7.10R3.0.0B6} [CoFH Core] (CoFHCore-[1.7.10]3.0.0B6-32.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ThermalFoundation{1.7.10R1.0.0B3} [Thermal Foundation] (ThermalFoundation-[1.7.10]1.0.0B3-8.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ThermalExpansion{1.7.10R4.0.0B5} [Thermal Expansion] (ThermalExpansion-[1.7.10]4.0.0B5-13.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
BigReactors{0.4.0rc9} [Big Reactors] (BigReactors-0.4.0rc9.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
Mantle{1.7.10-0.3.2.jenkins184} [Mantle] (Mantle-1.7.10-0.3.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
Natura{2.2.0} [Natura] (natura-1.7.10-2.2.0-b1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
BiomesOPlenty{2.1.0} [Biomes O' Plenty] (BiomesOPlenty-1.7.10-2.1.0.978-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
BuildCraft|Core{6.0.18} [BuildCraft] (buildcraft-6.0.18.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
BuildCraft|Builders{6.0.18} [BC Builders] (buildcraft-6.0.18.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
BuildCraft|Energy{6.0.18} [BC Energy] (buildcraft-6.0.18.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
BuildCraft|Factory{6.0.18} [BC Factory] (buildcraft-6.0.18.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
BuildCraft|Transport{6.0.18} [BC Transport] (buildcraft-6.0.18.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
BuildCraft|Silicon{6.0.18} [BC Silicon] (buildcraft-6.0.18.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ChickenChunks{1.3.4.13} [ChickenChunks] (ChickenChunks-1.7.10-1.3.4.13-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
chisel{1.5.7} [Chisel] (Chisel-1.7.10-1.5.7.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ComputerCraft{1.64} [ComputerCraft] (ComputerCraft1.64.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
IC2{2.2.648-experimental} [IndustrialCraft 2] (industrialcraft-2-2.2.648-experimental.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ImmibisCore{59.0.3} [Immibis Core] (immibis-core-59.0.3.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
DimensionalAnchors{59.0.2} [Dimensional Anchors] (dimensional-anchor-59.0.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
EnderIO{1.7.10-2.1.0.225} [Ender IO] (EnderIO-1.7.10-2.1.0.225.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
EnderStorage{1.4.5.24} [EnderStorage] (EnderStorage-1.7.10-1.4.5.24-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
enhancedportals{3.0.6} [EnhancedPortals] (EnhancedPortals_1.7.10-universal-3.0.6.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
EE3{0.2.347} [Equivalent Exchange 3] (EquivalentExchange3-1.7.10-0.2.347.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded{1.7.10R2.8.0RC3} [MineFactory Reloaded] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
Waila{1.5.5} [Waila] (Waila-1.5.5_1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
TConstruct{1.7.10-1.7.0.build721} [Tinkers' Construct] (TConstruct-1.7.10-1.7.0d4.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ExtraTiC{0.8.4} [ExtraTiC] (ExtraTiC-1.7.10-1.0.3.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ForgeMultipart{1.1.0.310} [Forge Multipart] (ForgeMultipart-1.7.10-1.1.0.310-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ExtraUtilities{1.1.0k} [Extra Utilities] (extrautilities-1.1.0k.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
FastCraft{1.9} [FastCraft] (fastcraft-1.9.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
Forestry{3.1.0.3} [Forestry for Minecraft] (forestry_1.7.10-3.1.0.3.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
iChunUtil{4.0.0} [iChunUtil] (iChunUtil-4.0.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
inventorytweaks{1.59-dev-155-5dbbb14} [Inventory Tweaks] (InventoryTweaks-1.59-dev-155.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
IronChest{6.0.62.742} [Iron Chest] (ironchest-1.7.10-6.0.62.742-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
journeymap{4.0.5} [JourneyMap] (JourneyMap4.0.5_Unlimited_MC1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
magicalcrops{1.7.2 - 0.1 ALPHA} [Magical Crops] (magicalcrops-1.7.10_0.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
NetherOres{1.7.10R2.3.0RC3} [Nether Ores] (NetherOres-[1.7.10]2.3.0RC3-84.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
Mimicry{1.7.x_1067_1.0.1} [Mimicry] (Mimicry-1.7.x_1067_1.0.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatAppliedEnergistics{1.7.10R2.8.0RC3} [MFR Compat: Applied Energistics] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatAtum{1.7.10R2.8.0RC2} [MFR Compat: Atum] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatBackTools{1.7.10R2.8.0RC3} [MFR Compat: BackTools] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatBuildCraft{1.7.10R2.8.0RC3} [MFR Compat: BuildCraft] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatChococraft{1.7.10R2.8.0RC2} [MFR Compat: Chococraft] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatExtraBiomes{1.7.10R2.8.0RC2} [MFR Compat: ExtraBiomes] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatForestry{1.7.10R2.8.0RC3} [MFR Compat: Forestry] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatForgeMicroblock{1.7.10R2.8.0RC3} [MFR Compat: ForgeMicroblock] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatIC2{1.7.10R2.8.0RC3} [MFR Compat: IC2] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatMystcraft{1.7.10R2.8.0RC2} [MFR Compat: Mystcraft] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatPams{1.7.10R2.8.0RC2} [MFR Compat: Pam's Mods] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ProjRed|Core{4.5.0.50} [ProjectRed] (ProjectRed-Base-1.7.10-4.5.0.50.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ProjRed|Exploration{4.5.0.50} [ProjectRed-Exploration] (ProjectRed-World-1.7.10-4.5.0.50.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatProjRed{1.7.10R2.8.0RC2} [MFR Compat ProjectRed] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
Railcraft{9.3.3.0} [Railcraft] (Railcraft_1.7.10-9.3.3.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatRailcraft{1.7.10R2.8.0RC3} [MFR Compat: Railcraft] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatRP2{1.7.10R2.8.0RC2} [MFR Compat: RP2] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatSufficientBiomes{1.7.10R2.8.0RC2} [MFR Compat: Sufficient Biomes] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatThaumcraft{1.7.10R2.8.0RC3} [MFR Compat: Thaumcraft] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatThermalExpansion{1.7.10R2.8.0RC3} [MFR Compat: Thermal Expansion] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
TwilightForest{2.3.2} [The Twilight Forest] (twilightforest-1.7.10-2.3.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatTwilightForest{1.7.10R2.8.0RC3} [MFR Compat: TwilightForest] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
MineFactoryReloaded|CompatVanilla{1.7.10R2.8.0RC3} [MFR Compat: Vanilla] (MineFactoryReloaded-[1.7.10]2.8.0RC3-591.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ricksoft_mc-lcd-app{0.3} [Minecraft LCD Application] (mod_MinecraftLCD-1.7.10-0.3.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
NEIAddons{1.12.2.9} [NEI Addons] (neiaddons-mc1710-1.12.2.9.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
NEIAddons|Botany{1.12.2.9} [NEI Addons: Botany] (neiaddons-mc1710-1.12.2.9.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
NEIAddons|Forestry{1.12.2.9} [NEI Addons: Forestry] (neiaddons-mc1710-1.12.2.9.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
NEIAddons|CraftingTables{1.12.2.9} [NEI Addons: Crafting Tables] (neiaddons-mc1710-1.12.2.9.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
NEIAddons|ExNihilo{1.12.2.9} [NEI Addons: Ex Nihilo] (neiaddons-mc1710-1.12.2.9.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
NEIPlugins{1.1.0.11-unofficial} [NEI Plugins Unofficial] (NEIPlugins-MC1.7.10-1.1.0.11-unofficial.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
nhwrench{2.0.1} [NHAVE's OmniWrench 2] (nhwrench2-1.7.10-2.0.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
OpenComponents{0.2.0.22} [OpenComponents] (OpenComponents-MC1.7.10-0.2.0.22-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ProjRed|Transmission{4.5.0.50} [ProjectRed-Transmission] (ProjectRed-Integration-1.7.10-4.5.0.50.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
OpenComputers|Core{1.0.0} [OpenComputers (Core)] (OpenComputers-MC1.7.10-1.3.5.67-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
OpenComputers{1.3.5.67} [OpenComputers] (OpenComputers-MC1.7.10-1.3.5.67-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
fodc{1.5.2} [Ore Dictionary Converter] (OreDictionaryConverter-1.5.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ProjRed|Transportation{4.5.0.50} [ProjectRed-Transportation] (ProjectRed-Mechanical_beta-1.7.10-4.5.0.50.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ProjRed|Compatibility{4.5.0.50} [ProjectRed-Compatibility] (ProjectRed-Compat-1.7.10-4.5.0.50.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ProjRed|Integration{4.5.0.50} [ProjectRed-Integration] (ProjectRed-Integration-1.7.10-4.5.0.50.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ProjRed|Illumination{4.5.0.50} [ProjectRed-Illumination] (ProjectRed-Lighting-1.7.10-4.5.0.50.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ProjRed|Expansion{4.5.0.50} [ProjectRed-Expansion] (ProjectRed-Mechanical_beta-1.7.10-4.5.0.50.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
RandomThings{2.1.6} [Random Things] (RandomThings-2.1.6.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
libsandstone{1.0.0} [libsandstone] (LibSandstone-1.0.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
xreliquary{1.2.DEV} [Reliquary] (Reliquary-1.2.163.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
Roguelike{1.3.5} [Roguelike Dungeons] (roguelike-1.7.10-1.3.5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
SophisticatedWolves{3.0.4} [SophisticatedWolves] (Sophisticated Wolves 3.0.4.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
TiCTooltips{1.1.11b} [TiC Tooltips] (TiCTooltips-mc1.7.10-1.1.11b.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
VersionChecker{1.1.7} [Version Checker] (VersionChecker-1.1.7.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
WailaHarvestability{1.1.0} [Waila Harvestability] (WailaHarvestability-mc1.7.x-1.1.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
warpbook{2.0.34} [Warp Book] (warpbook-2.0.34.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
wawla{1.0.7} [What Are We Looking At] (Wawla-1.0.7_1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
McMultipart{1.1.0.310} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.1.0.310-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
aobd{2.2.4} [Another One Bites The Dust] (AOBD-2.2.4.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
ForgeMicroblock{1.1.0.310} [Forge Microblocks] (ForgeMultipart-1.7.10-1.1.0.310-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available
Mantle Environment: DO NOT REPORT THIS CRASH! Unsupported mods in environment: optifine
TConstruct Environment: Environment healthy.
Forestry : [Forestry] Warning: You have mods that change the behavior of Minecraft, ForgeModLoader, and/or Minecraft Forge to your client:
Optifine
These may have caused this error, and may not be supported. Try reproducing the crash WITHOUT these mods, and report it then.
Profiler Position: N/A (disabled)
Player Count: 0 / 8; []
Type: Integrated Server (map_client.txt)
Is Modded: Definitely; Client brand changed to 'fml,forge'
Looks as though your issue seems to come from Biomes'O Plenty.
showmethemods has been terrorizing this thread since 29 Sep. You'll never be able to answer his question because he never does what you ask! It starts here:
http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/1272953-optifine-hd-a4-fps-boost-hd-textures-aa-af-and?comment=43316
and continues every few days until present.
Lou
Links to pdf format, downloadable, command lists for (these often clarify/expand descriptions, and where possible link to the author's posting):
MoreCommands: http://www.mediafire.com/view/qjc9c6klcnp660e/CmdLstMoreCommands.pdf
WorldEdit: http://www.mediafire.com/view/bi7r00xd9rgxrrt/WE_Commands.pdf
So after a few hours of troubleshooting I've seemed to find that it is an incompatibility between BoP 1.7.10-2.1.0.978 and Forge 1.7.10-10.13.1.1224. Forge .1222 works.
Thanks!
I agree full-heartedly. I didn't notice that he was using a hacked account.
Never arbitrary,

-Dablizz
Yeah, sometimes it's not a good idea to update forge unless the mod otherwise states to do so. Sometimes updating a forge version will cause wonky things to happen with mods.
LiteLoader: It is not a LiteLoader mod, so it cannot be run by LiteLoader. It can however be run by Forge or as a jar mod alongside LiteLoader.WorldEdit: WorldEdit is a Bukkit plugin, so IDK why this would be incompatible.I'm an old-school guy who hasn't had any experience with LiteLoader. Probally should try it sometime. Listen to the gentleman below me. \/
--My PC --SEUS 10.1 Fixes --SEUS Water Fix --SEUS 10.2 Preview --MultiMC 1.8 Shaders Fix (Not needed if using Forge)
I loaded Forge, extracted LiteLoader into the /mods/1.7.10 folder, then added Optifine. There is a complete Voxel Modpack available (individual parts can be handled the same) Forge and LiteLoader Mods both work.
The WorldEdit commands (nearly 5 pages) are exactly like they were with SPC. With Voxel many equivalent SPC commands/functions are available.
Links to pdf format, downloadable, command lists for (these often clarify/expand descriptions, and where possible link to the author's posting):
MoreCommands: http://www.mediafire.com/view/qjc9c6klcnp660e/CmdLstMoreCommands.pdf
WorldEdit: http://www.mediafire.com/view/bi7r00xd9rgxrrt/WE_Commands.pdf
This was a huuuuuge update. So many new classes and functions.
Rendering system
The old Notch code was straightforward and relatively easy to follow. The new rendering system is an over-engineered monster full of factories, builders, bakeries, baked items, managers, dispatchers, states, enums and layers.
Object allocation is rampant, small objects are allocated like there is no tomorrow. No wonder that the garbage collector has to work so hard.
On the positive side the rendering engine can load configurable block models and supports VBO rendering, which may be a bit faster. Because it is so complex there is a lot of optimization potential.
Chunk loading
The multithreaded chunk loading is crude and it will need a lot of optimizations in order to behave properly. Currently it works best with multi-core systems, quad-core is optimal, dual-core suffers a bit and single-core CPUs are practically doomed with vanilla. Lag spikes are present with all types of CPU.
Many including myself are very pleased to see progress is being made on Optifine for the newest version of Minecraft, Sp614x. I was VERY pleased to read 'Currently it works best with multi-core systems, quad-core is optimal' because I just happen to use a Core 2 Quad Q6600 2.4ghz, which may be an older model compared to the current i3, i5, and i7 series, but it works great nevertheless!
Good to hear. Do you think you will find a lot of ways to speed up the new rendering system then? Or is that something Mojang has to optimize? As for multithreading, do you think it will be possible to turn off for single core systems with optifine?
It seems like 1.8 has to potential to be faster than 1.7 was, but so far it is quite a bit slower....
The rendering can probably be made faster, there are some interesting shortcuts that can be taken.
The chunk loading will probably be configurable between auto, single-core, dual-core and quad-core+. The Auto option will use the best setting for the CPU. There may also be a second option which will make it work like the 1.7 OptiFine Multi-Core which should be even faster.
Help Me by clicking above links and skipping ad!
I support: