java.lang.OutOfMemoryError: Java heap space
at net.minecraft.client.renderer.texture.TextureUtil.func_110993_a(SourceFile:100)
at net.minecraft.client.renderer.texture.TextureUtil.func_110995_a(SourceFile:90)
at net.minecraft.client.renderer.texture.TextureUtil.func_110989_a(SourceFile:78)
at net.minecraft.client.renderer.texture.SimpleTexture.func_110551_a(SourceFile:45)
at net.minecraft.client.renderer.texture.TextureManager.func_110579_a(SourceFile:69)
at net.minecraft.client.renderer.texture.TextureManager.func_110577_a(SourceFile:37)
at net.minecraft.client.gui.FontRenderer.<init>(SourceFile:53)
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:481)
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:808)
at net.minecraft.client.main.Main.main(SourceFile:101)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)
at net.minecraft.launchwrapper.Launch.main(Launch.java:27)
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- Head --
Stacktrace:
at net.minecraft.client.renderer.texture.TextureUtil.func_110993_a(SourceFile:100)
at net.minecraft.client.renderer.texture.TextureUtil.func_110995_a(SourceFile:90)
at net.minecraft.client.renderer.texture.TextureUtil.func_110989_a(SourceFile:78)
at net.minecraft.client.renderer.texture.SimpleTexture.func_110551_a(SourceFile:45)
-- Resource location being registered --
Details:
Resource location: minecraft:textures/font/ascii_sga.png
Texture object class: net.minecraft.client.renderer.texture.SimpleTexture
Stacktrace:
at net.minecraft.client.renderer.texture.TextureManager.func_110579_a(SourceFile:69)
at net.minecraft.client.renderer.texture.TextureManager.func_110577_a(SourceFile:37)
at net.minecraft.client.gui.FontRenderer.<init>(SourceFile:53)
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:481)
-- Initialization --
Details:
Stacktrace:
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:808)
at net.minecraft.client.main.Main.main(SourceFile:101)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)
at net.minecraft.launchwrapper.Launch.main(Launch.java:27)
Remember to put logs into a spoiler block! This way, people don't have to scroll down to see answers.
This looks like your client ran out of memory when loading all the textures. Try increasing the allocated RAM. You allocated ~256MB, which may be enough for a vanilla client, but you'll need more for this many mods!
Looking through your log, the JVM got arguments of -Xmx4096M, then -Xmx256M. This means that the first 4096 was canceled out by the 256 added later. If you remove the -Xmx256M from your launch script, you will allow the JVM to get up to 4096 MB of RAM.
---- Minecraft Crash Report ----
// Everything's going to plan. No, really, that was supposed to happen.
Time: 27/10/16 2:43 PM
Description: Registering texture
java.lang.OutOfMemoryError: Java heap space
at net.minecraft.client.renderer.texture.TextureUtil.func_110993_a(SourceFile:100)
at net.minecraft.client.renderer.texture.TextureUtil.func_110995_a(SourceFile:90)
at net.minecraft.client.renderer.texture.TextureUtil.func_110989_a(SourceFile:78)
at net.minecraft.client.renderer.texture.SimpleTexture.func_110551_a(SourceFile:45)
at net.minecraft.client.renderer.texture.TextureManager.func_110579_a(SourceFile:69)
at net.minecraft.client.renderer.texture.TextureManager.func_110577_a(SourceFile:37)
at net.minecraft.client.gui.FontRenderer.<init>(SourceFile:53)
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:481)
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:808)
at net.minecraft.client.main.Main.main(SourceFile:101)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)
at net.minecraft.launchwrapper.Launch.main(Launch.java:27)
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- Head --
Stacktrace:
at net.minecraft.client.renderer.texture.TextureUtil.func_110993_a(SourceFile:100)
at net.minecraft.client.renderer.texture.TextureUtil.func_110995_a(SourceFile:90)
at net.minecraft.client.renderer.texture.TextureUtil.func_110989_a(SourceFile:78)
at net.minecraft.client.renderer.texture.SimpleTexture.func_110551_a(SourceFile:45)
-- Resource location being registered --
Details:
Resource location: minecraft:textures/font/ascii_sga.png
Texture object class: net.minecraft.client.renderer.texture.SimpleTexture
Stacktrace:
at net.minecraft.client.renderer.texture.TextureManager.func_110579_a(SourceFile:69)
at net.minecraft.client.renderer.texture.TextureManager.func_110577_a(SourceFile:37)
at net.minecraft.client.gui.FontRenderer.<init>(SourceFile:53)
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:481)
-- Initialization --
Details:
Stacktrace:
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:808)
at net.minecraft.client.main.Main.main(SourceFile:101)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)
at net.minecraft.launchwrapper.Launch.main(Launch.java:27)
-- System Details --
Details:
Minecraft Version: 1.6.4
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_25, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 27102176 bytes (25 MB) / 252706816 bytes (241 MB) up to 252706816 bytes (241 MB)
JVM Flags: 5 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx4096m -Xms256m -XX:PermSize=256m -Xmx256M
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
Suspicious classes: FML and Forge are installed
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: MCP v8.11 FML v6.4.49.965 Minecraft Forge 9.11.1.965 127 mods loaded, 127 mods active
mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized
FML{6.4.49.965} [Forge Mod Loader] (minecraftforge-9.11.1.965.jar) Unloaded->Constructed->Pre-initialized
Forge{9.11.1.965} [Minecraft Forge] (minecraftforge-9.11.1.965.jar) Unloaded->Constructed->Pre-initialized
AppliedEnergistics-Core{rv14.finale3} [AppliedEnergistics Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized
CodeChickenCore{0.9.0.9} [CodeChicken Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized
denLib{3.1.35} [denLib] (minecraft.jar) Unloaded->Constructed->Pre-initialized
Evoc{1.0.0} [Evoc] (minecraft.jar) Unloaded->Constructed->Pre-initialized
MobiusCore{1.2.1} [MobiusCore] (minecraft.jar) Unloaded->Constructed->Pre-initialized
NotEnoughItems{1.6.1.9} [Not Enough Items] (NotEnoughItems-1.6.4-1.6.1.9-universal.jar) Unloaded->Constructed->Pre-initialized
OpenModsCore{0.2} [OpenModsCore] (minecraft.jar) Unloaded->Constructed->Pre-initialized
PowerCrystalsCore{1.1.8} [PowerCrystals Core] (PowerCrystalsCore-1.1.8-9.jar) Unloaded->Constructed->Pre-initialized
switches|pistontweak{1.3.0 build 25} [Switches|PistonTweak] (minecraft.jar) Unloaded->Constructed->Pre-initialized
TConstruct-Preloader{0.0.1} [Tinkers Corestruct] (minecraft.jar) Unloaded->Constructed->Pre-initialized
bspkrsCore{v5.0(1.6.4)} [bspkrsCore] ([1.6.4]bspkrsCorev5.0.zip) Unloaded->Constructed->Pre-initialized
ArmorStatusHUD{v1.15(1.6.4)} [ArmorStatusHUD] ([1.6.4]ArmorStatusHUDv1.15.zip) Unloaded->Constructed->Pre-initialized
mod_bspkrsCore{v5.0(1.6.4)} [bspkrsCore] ([1.6.4]bspkrsCorev5.0.zip) Unloaded->Constructed->Pre-initialized
StatusEffectHUD{v1.19(1.6.4)} [StatusEffectHUD] ([1.6.4]StatusEffectHUDv1.19.zip) Unloaded->Constructed->Pre-initialized
CoFHCore{2.0.0.5} [CoFH Core] (CoFHCore-2.0.0.5.jar) Unloaded->Constructed->Pre-initialized
ForgeMultipart{1.0.0.244} [Forge Multipart] (ForgeMultipart-universal-1.6.4-1.0.0.244.jar) Unloaded->Constructed->Pre-initialized
BuildCraft|Core{4.2.2} [BuildCraft] (buildcraft-A-1.6.4-4.2.2.jar) Unloaded->Constructed->Pre-initialized
ThermalExpansion{3.0.0.7} [Thermal Expansion] (ThermalExpansion-3.0.0.7.jar) Unloaded->Constructed->Pre-initialized
IC2{2.0.354-experimental} [IndustrialCraft 2] (industrialcraft-2_2.0.354-experimental.jar) Unloaded->Constructed->Pre-initialized
BuildCraft|Builders{4.2.2} [BC Builders] (buildcraft-A-1.6.4-4.2.2.jar) Unloaded->Constructed->Pre-initialized
BuildCraft|Energy{4.2.2} [BC Energy] (buildcraft-A-1.6.4-4.2.2.jar) Unloaded->Constructed->Pre-initialized
BuildCraft|Factory{4.2.2} [BC Factory] (buildcraft-A-1.6.4-4.2.2.jar) Unloaded->Constructed->Pre-initialized
BuildCraft|Transport{4.2.2} [BC Transport] (buildcraft-A-1.6.4-4.2.2.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded{1.6.4R2.7.9} [MineFactory Reloaded] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
Waila{1.5.2a} [Waila] (Waila_1.5.2a.zip) Unloaded->Constructed->Pre-initialized
TConstruct{1.6.X_1.5.5.7} [Tinkers' Construct] (TConstruct_mc1.6.4_1.5.5.7.jar) Unloaded->Constructed->Pre-initialized
aobd{1.1.1} [Another One Bites The Dust] (AOBD v1.1.1.jar) Unloaded->Constructed->Pre-initialized
AppliedEnergistics{rv14.finale3} [Applied Energistics] (appeng-rv14-finale3-mc16x.jar) Unloaded->Constructed->Pre-initialized
ATG{0.9.3} [Alternate Terrain Generation] (ATG-1.6.4-0.9.3.jar) Unloaded->Constructed->Pre-initialized
Backpack{1.26.29} [Backpack] (backpack-1.26.29-1.6.x.jar) Unloaded->Constructed->Pre-initialized
bdlib{1.2.1.40} [BD Lib] (bdlib-mc164-1.2.1.40.jar) Unloaded->Constructed->Pre-initialized
BiblioCraft{1.5.5} [BiblioCraft] (BiblioCraft[v1.5.5].zip) Unloaded->Constructed->Pre-initialized
ComputerCraft{1.58} [ComputerCraft] (ComputerCraft1.58.zip) Unloaded->Constructed->Pre-initialized
BigReactors{0.2.15A} [Big Reactors] (BigReactors-0.2.15A.jar) Unloaded->Constructed->Pre-initialized
BiomesOPlenty{1.2.1} [Biomes O' Plenty] (BiomesOPlenty-universal-1.6.4-1.2.1.416.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatForestryPre{1.6.4R2.7.9} [MFR Compat: Forestry (part 2)] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
Forestry{2.3.1.1} [Forestry for Minecraft] (forestry-A-2.3.1.1.jar) Unloaded->Constructed->Pre-initialized
BinnieCore{1.8.0} [Binnie Core] (binnie-mods-1.8.0.jar) Unloaded->Constructed->Pre-initialized
ExtraBees{1.8.0} [Extra Bees] (binnie-mods-1.8.0.jar) Unloaded->Constructed->Pre-initialized
ExtraTrees{1.8.0} [Extra Trees] (binnie-mods-1.8.0.jar) Unloaded->Constructed->Pre-initialized
BuildCraft|Silicon{4.2.2} [BC Silicon] (buildcraft-A-1.6.4-4.2.2.jar) Unloaded->Constructed->Pre-initialized
ChickenChunks{1.3.3.4} [ChickenChunks] (ChickenChunks 1.3.3.4.jar) Unloaded->Constructed->Pre-initialized
CoFHLoot{2.0.0.5} [CoFH Loot] (CoFHCore-2.0.0.5.jar) Unloaded->Constructed->Pre-initialized
CoFHMasquerade{2.0.0.5} [CoFH Masquerade] (CoFHCore-2.0.0.5.jar) Unloaded->Constructed->Pre-initialized
CoFHSocial{2.0.0.5} [CoFH Social] (CoFHCore-2.0.0.5.jar) Unloaded->Constructed->Pre-initialized
CoFHWorld{2.0.0.5} [CoFH World] (CoFHCore-2.0.0.5.jar) Unloaded->Constructed->Pre-initialized
CompactSolars{4.4.19.224} [Compact Solar Arrays] (compactsolars-universal-1.6.4-4.4.19.224.zip) Unloaded->Constructed->Pre-initialized
CompactWindmills{1.0.2.2} [CompactWindmills] (CompactWindmills+MC.1.6.4+v.1.0.2.2.jar) Unloaded->Constructed->Pre-initialized
CCTurtle{1.58} [ComputerCraft Turtles] (ComputerCraft1.58.zip) Unloaded->Constructed->Pre-initialized
DenPipes-Forestry{1.1.8} [DenPipes-Forestry] (DenPipes-Forestry-1.6.4-1.1.8.jar) Unloaded->Constructed->Pre-initialized
DenPipes-Emerald{1.1.6} [DenPipes-Emerald] (DenPipes-Emerald-1.6.4-1.1.6.jar) Unloaded->Constructed->Pre-initialized
DenPipes{2.1.18} [DenPipes] (DenPipes-1.6.4-2.1.18.jar) Unloaded->Constructed->Pre-initialized
numina{0.1.2-55} [Numina] (Numina-1.6.2-0.1.2-55.jar) Unloaded->Constructed->Pre-initialized
powersuits{0.10.0-91} [MachineMuse's Modular Powersuits] (ModularPowersuits-1.6.4-0.10.0-91.jar) Unloaded->Constructed->Pre-initialized
DragonAPI{release} [DragonAPI] (DragonAPI 1.6 v16d.zip) Unloaded->Constructed->Pre-initialized
emashercore{1.2.2.0} [Emasher Resource] (EmasherResource-1.2.2.0.zip) Unloaded->Constructed->Pre-initialized
eng_toolbox{1.1.7.1} [Engineer's Toolbox] (EngineersToolbox-1.1.7.1.zip) Unloaded->Constructed->Pre-initialized
EnhancedPortals3{3.0.0_Beta-3b} [EnhancedPortals] (EnhancedPortals_3.0.0_Beta-3b.jar) Unloaded->Constructed->Pre-initialized
ExtraUtilities{1.0.3c} [Extra Utilities] (extrautils-1.0.3c.zip) Unloaded->Constructed->Pre-initialized
factorization{0.8.29} [Factorization] (Factorization-0.8.29.jar) Unloaded->Constructed->Pre-initialized
factorization.misc{0.8.29} [Factorization Miscellaneous Nonsense] (Factorization-0.8.29.jar) Unloaded->Constructed->Pre-initialized
factorization.notify{0.8.29} [Factorization Notification System] (Factorization-0.8.29.jar) Unloaded->Constructed->Pre-initialized
factorization.dimensionalSlice{0.8.29} [Factorization Dimensional Slices] (Factorization-0.8.29.jar) Unloaded->Constructed->Pre-initialized
gascraft{2.0.4.1} [GasCraft] (GasCraft-2.0.4.1.zip) Unloaded->Constructed->Pre-initialized
GateCopy{3.1.4} [GateCopy] (GateCopy-1.6.4-3.1.4.jar) Unloaded->Constructed->Pre-initialized
gendustry{1.1.1.64} [GenDustry] (gendustry-mc164-1.1.1.64.jar) Unloaded->Constructed->Pre-initialized
HopperDuctMod{1.2.2} [Hopper Ducts] (HopperDuctsMod1.2.2.zip) Unloaded->Constructed->Pre-initialized
IC2NuclearControl{1.6.2e} [Nuclear Control] (IC2NuclearControl-1.6.2e-ic2-experimental.zip) Unloaded->Constructed->Pre-initialized
iChunUtil{2.4.0} [iChunUtil] (iChunUtil2.4.0.zip) Unloaded->Constructed->Pre-initialized
inventorytweaks{1.56} [Inventory Tweaks] (InventoryTweaks-1.6.2-1.56.b77.jar) Unloaded->Constructed->Pre-initialized
IronChest{5.4.1.702} [Iron Chest] (ironchest-universal-1.6.4-5.4.1.702.zip) Unloaded->Constructed->Pre-initialized
JABBA{1.1.3} [JABBA] (JABBA_1.1.3.zip) Unloaded->Constructed->Pre-initialized
MFR Compat Forestry Trees{1.0} [MFR Compat Forestry Trees] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MFR Compat Extra Trees{1.0} [MFR Compat Extra Trees] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatAppliedEnergistics{1.6.4R2.7.9} [MFR Compat: Applied Energistics] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatAtum{1.6.4R2.7.9} [MFR Compat: Atum] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatBackTools{1.6.4R2.7.9} [MFR Compat: BackTools] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatBuildCraft{1.6.4R2.7.9} [MFR Compat: BuildCraft] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatChococraft{1.6.4R2.7.9} [MFR Compat: Chococraft] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatExtraBiomes{1.6.4R2.7.9} [MFR Compat: ExtraBiomes] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatForestry{1.6.4R2.7.9} [MFR Compat: Forestry] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatForgeMicroblock{1.6.4R2.7.9} [MFR Compat: ForgeMicroblock] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatIC2{1.6.4R2.7.9} [MFR Compat: IC2] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
Mystcraft{0.10.12.01} [Mystcraft] (mystcraft-uni-1.6.4-0.10.12.01.zip) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatMystcraft{1.6.4R2.7.9} [MFR Compat: Mystcraft] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatPams{1.6.4R2.7.9} [MFR Compat: Pam's Mods] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatProjRed{1.6.4R2.7.9} [MFR Compat ProjectRed] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
Railcraft{8.2.0.0} [Railcraft] (Railcraft_1.6.2-8.2.0.0.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatRailcraft{1.6.4R2.7.9} [MFR Compat: Railcraft] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatRP2{1.6.4R2.7.9} [MFR Compat: RP2] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatSufficientBiomes{1.6.4R2.7.9} [MFR Compat: Sufficient Biomes] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatThaumcraft{1.6.4R2.7.9} [MFR Compat: Thaumcraft] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatThermalExpansion{1.6.4R2.7.9} [MFR Compat: Thermal Expansion] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatTwilightForest{1.6.4R2.7.9} [MFR Compat: TwilightForest] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatVanilla{1.6.4R2.7.9} [MFR Compat: Vanilla] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
MineFactoryReloaded|CompatXyCraft{1.6.4R2.7.9} [MFR Compat: XyCraft] (MineFactoryReloaded-2.7.9-final.jar) Unloaded->Constructed->Pre-initialized
NEIAddons{1.9.4.r51} [NEI Addons] (neiaddons-1.6.2-1.9.4.r51.jar) Unloaded->Constructed->Pre-initialized
NEIAddons|AE{1.9.4.r51} [NEI Addons: Applied Energistics] (neiaddons-1.6.2-1.9.4.r51.jar) Unloaded->Constructed->Pre-initialized
NEIAddons|CraftingTables{1.9.4.r51} [NEI Addons: Crafting Tables] (neiaddons-1.6.2-1.9.4.r51.jar) Unloaded->Constructed->Pre-initialized
NEIAddons|ExtraBees{1.9.4.r51} [NEI Addons: Extra Bees] (neiaddons-1.6.2-1.9.4.r51.jar) Unloaded->Constructed->Pre-initialized
NEIAddons|Forestry{1.9.4.r51} [NEI Addons: Forestry] (neiaddons-1.6.2-1.9.4.r51.jar) Unloaded->Constructed->Pre-initialized
NEIAddons|MiscPeripherals{1.9.4.r51} [NEI Addons: Misc Peripherals] (neiaddons-1.6.2-1.9.4.r51.jar) Unloaded->Constructed->Pre-initialized
NEIPlugins{1.1.0.6} [NEI Plugins] (NEIPlugins-1.1.0.6.jar) Unloaded->Constructed->Pre-initialized
OpenMods{0.2} [OpenMods] (OpenModsLib-0.2.jar) Unloaded->Constructed->Pre-initialized
OpenPeripheralCore{0.3.1} [OpenPeripheralCore] (OpenPeripheralCore-0.3.1.jar) Unloaded->Constructed->Pre-initialized
OpenPeripheral{0.1.1} [OpenPeripheralAddons] (OpenPeripheralAddons-0.1.1.jar) Unloaded->Constructed->Pre-initialized
OpenBlocks{1.2.5} [OpenBlocks] (OpenBlocks-1.2.5.jar) Unloaded->Constructed->Pre-initialized
PowerConverters{1.6.4R2.4.0pre3} [Power Converters] (PC_PowerConverters_ZS ed_2.4.0pre3_forge 965_mc 1.6.4.zip) Unloaded->Constructed->Pre-initialized
PortalGun{2.0.2} [PortalGun] (PortalGun2.0.2.zip) Unloaded->Constructed->Pre-initialized
powersuitaddons{@[email protected]} [Modular Powersuits Addon] (powersuitaddons-1.6.4-886.jar) Unloaded->Constructed->Pre-initialized
RotaryCraft{Gamma} [RotaryCraft] (RotaryCraft 1.6 v16c.zip) Unloaded->Constructed->Pre-initialized
ReactorCraft{beta} [ReactorCraft] (ReactorCraft 1.6 v16.zip) Unloaded->Constructed->Pre-initialized
remoteIO{@[email protected]@[email protected]@[email protected]${env.BUILD_NUMBER}} [Remote IO] (RemoteIO-1.5.1.jar) Unloaded->Constructed->Pre-initialized
simplyjetpacks{0.1.3} [Simply Jetpacks] (SimplyJetpacks-0.1.3.jar) Unloaded->Constructed->Pre-initialized
StevesCarts{2.0.0.b11} [Steve's Carts 2] (StevesCarts2.0.0.b11.zip) Unloaded->Constructed->Pre-initialized
switches{1.3.0} [Switches] (switches-1.6.4-universal-coremod-1.3.0.25.jar) Unloaded->Constructed->Pre-initialized
TiCTooltips{1.1.5} [TiC Tooltips] (TiCTooltips-mc1.6.4-1.1.5.jar) Unloaded->Constructed->Pre-initialized
TMechworks{33.c001660} [Tinkers' Mechworks] (TMechworks_mc1.6.4_0.1.6.jar) Unloaded->Constructed->Pre-initialized
WR-CBE|Core{1.4.0.7} [WR-CBE Core] (WR-CBE 1.4.0.7.jar) Unloaded->Constructed->Pre-initialized
WR-CBE|Addons{1.4.0.7} [WR-CBE Addons] (WR-CBE 1.4.0.7.jar) Unloaded->Constructed->Pre-initialized
WR-CBE|Logic{1.4.0.7} [WR-CBE Logic] (WR-CBE 1.4.0.7.jar) Unloaded->Constructed->Pre-initialized
xact{0.4.3} [XACT Mod] (XACT v0.4.3.jar) Unloaded->Constructed->Pre-initialized
McMultipart{1.0.0.244} [Minecraft Multipart Plugin] (ForgeMultipart-universal-1.6.4-1.0.0.244.jar) Unloaded->Constructed->Pre-initialized
ForgeMicroblock{1.0.0.244} [Forge Microblocks] (ForgeMultipart-universal-1.6.4-1.0.0.244.jar) Unloaded->Constructed->Pre-initialized
TConstruct Environment: Sane and ready for action. Bugs may be reported.
Launched Version: forge-9.11.1.965
LWJGL: 2.9.0
OpenGL: Intel(R) HD Graphics 4600 GL version 4.3.0 - Build 20.19.15.4444, Intel
Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Resource Pack: Default
Current Language: English (US)
Profiler Position: N/A (disabled)
Vec3 Pool Size: ~~ERROR~~ NullPointerException: null
-
View User Profile
-
View Posts
-
Send Message
Curse PremiumRemember to put logs into a spoiler block! This way, people don't have to scroll down to see answers.
This looks like your client ran out of memory when loading all the textures. Try increasing the allocated RAM. You allocated ~256MB, which may be enough for a vanilla client, but you'll need more for this many mods!
Looking through your log, the JVM got arguments of -Xmx4096M, then -Xmx256M. This means that the first 4096 was canceled out by the 256 added later. If you remove the -Xmx256M from your launch script, you will allow the JVM to get up to 4096 MB of RAM.
Visit my website here. I use MultiMC and play on CubeKrowd and FrostCraft.