Minecraft Blogs / Tutorial

Understanding Crash Reports - How to fix errors by yourself

  • 153,144 views, 18 today
  • 27
  • 17
  • 116
sep87x's Avatar sep87x
Level 56 : Grandmaster Fox
52
Greetings, lads and gents,

Call me crazy, but I love reading crash reports. They contain so many information about the cause, pc specs and what type of crash it is. What I don't like are people who don't even try to understand crash reports and put it in a forum without any details. So that's why I want to explain you what these "crash reports" mean and how you can help yourself to get rid of the crash.

1. Don't panic!

I understand that you might be shocked after your game crashed. You've installed a new, fresh mod or something else you like but it makes the game crash. So what to do? Yes, inform the mod developer. No. Crashes can happen anytime in Java. Crashes are something like the second heart of Java. There's a positive aspect about these crashes. Java is a programming language which explains very exact what happened at which time and where. So grab your file explorer and head over to step two.

2. Analysing the source

The easiest way to attempt this is to disable and enable mods to see which mod caused the error (might be effective), but we're not in kindergarten, so we want to go deeper in matters. Usually Minecraft shows the crash report (since the new launcher came out) in a new tab in the new launcher. If you don't use the official launcher and use another launcher like MagicLauncher instead, don't worry. A copy of the crash report will always be saved into the .minecraft/crash-reports folder. Look for the latest crash report and open it. The first thing you'll see is the time and the description and some more lines filled with text, but directly after the error type comes the line where the error has been found. An example:

java.lang.NullPointerException
at net.sep87x.blowme.EnumHUDType.getEnumByString(EnumHUDType.java:30)

Now let me explain the lower line to you. If you don't know about Java that much, then the first line won't help you a lot, but the second line is VERY interesting. Let's dive into Java a bit

net.sep87x.blowme.EnumHUDType.getEnumByString(EnumHUDType.java:30)

As you can see the "path" consists of three different parts. The blue highlighted part is the so called "package". A package is a mechanism to organize Java classes (orange). For the user, it will only appear as a folder structure. The class (orange) itself contains the code to run. That's where errors can appear. A more detailed location is the method (green), which tells you in which line of the class the error has been raised (bold). So what can you do with this information? Now you can open the mod's zip or jar file with your favorite archiver and look for the class shown in your crash report (in this case, EnumHUDType) et voila:

JjQHFpng

This was of course just an example. This crash has been raised in an early development phase of one of my mods. Now it may also happen that the information on the second line is not enough or incomplete ... or just unreadable.

java.lang.OutOfMemoryError: Java heap space
at java.awt.image.DataBufferByte.<init>(Unknown Source)

In this case you should care about the first line. Sometimes the first line explains itself (not enough RAM), but there are so called "Javadocs" out there which explain classes without revealing their code. So in my case, just type "OutOfMemoryError Javadoc" in your search bar and you should find at least one search result by the oracle foundation.

MugRropng

If you click on this link and look inside the website, you'll see the definition of the error.

qyULBZCpng

So what do you do? Allocate more memory. Now you may want to report this error, but to whom?

3. Reporting the error

For this step, Minecraft wrote some further information inside the crash report and it's right at the bottom. Yep, the system details.

-- System Details --
Details:
Minecraft Version: 1.6.2
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.7.0_05, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 180655648 bytes (172 MB) / 477233152 bytes (455 MB) up to 477233152 bytes (455 MB)
JVM Flags: 2 total; -Xms512m -Xmx512m
AABB Pool Size: 4 (224 bytes; 0 MB) allocated, 4 (224 bytes; 0 MB) used
Suspicious classes: FML and Forge are installed
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: MCP v8.04 FML v6.2.35.804 Minecraft Forge 9.10.0.804 Optifine OptiFine_1.6.2_HD_U_B4 3 mods loaded, 3 mods active
mcp{8.04} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
FML{6.2.35.804} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Forge{9.10.0.804} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

Launched Version: 1.6.2-Forge9.10.0.804
LWJGL: 2.9.0
OpenGL: GeForce GT 540M/PCI/SSE2 GL version 4.1.0, NVIDIA Corporation
Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Resource Pack: Postercraft HD 256x.zip
Current Language: English (US)
Profiler Position: N/A (disabled)
Vec3 Pool Size: 29 (1624 bytes; 0 MB) allocated, 29 (1624 bytes; 0 MB) used

Now I already marked up some text of our interest. At first "suspicious classes". These are classes, which could have caused the error. This helps out if you really don't understand the crash report. Now we'll skip the bigger part and jump directly to "is modded". This tells us to whom we should talk to. If it is not modded, then report this error to Mojang. If it is likely modded, then head over to the 4th step. I'll explain this a bit later. If it is definitely modded (llike FML), you should take a look at the big, bold highlighted part. This tells in which construction phase the mods have been in. If a mod errors in the construction phase, this Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available thing will not be complete. This tells you exactly which mod is the evil one. So head over to the mod's page and contact the author or post the crash report into the comments. A bit more on "correct reporting" can be found in step 5.

4. Fixing the error by yourself

If you've collected all the information you need like the source of the error, the meaning of the error and the mod which might have caused the error, it's time to fix the error. If you're having an error like "OutOfMemory" and it is clearly documented, search in some forums on what to do in the case of this error. Just type "Java <YourErrorType> Fix" or "Java <YourErrorType> Fix Tutorial". If you like then you can even add the application like "Minecraft <YourErrorType> Fix". If you don't find anything on how to solve this problem, you should think about removing the mod which has caused the error or report the error to the responsible person (as explained in 3).

5. Correct reporting

You can freak out a modder very fast if you don't report a crash correctly. You may ask now: "Correctly?". Usually it is already enough to post the whole crash report and put it into a code spoiler. You can also provide a download link for the crash report which is even more effective (but insecure too, sorry :c). If the programmer hasn't told it differently, remember to explain short but detailed what you did when the crash happened and what the game did when the crash happened. PC specs and further information can be found in the crash report. That's almost everything a modder needs to know to fix an error. If he wants you to say a bit more about the crash, be cooperative and do as he says. The modder might be very thankful.

That's all I have to say. Thanks for reading this long tutorial on understanding crash reports. I think I could help you out a bit.

Greets from Germany
~sep87x
Tags

Create an account or sign in to comment.

1
01/31/2020 12:22 pm
Level 1 : New Miner
Viad530
Viad530's Avatar
[19:07:23] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[19:07:23] [main/INFO]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[19:07:23] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[19:07:23] [main/INFO]: Forge Mod Loader version 14.23.5.2845 for Minecraft 1.12.2 loading
[19:07:23] [main/INFO]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_51, running on Windows 10:amd64:10.0, installed at C:\Users\User\Twitch\Minecraft\Install\runtime\jre-x64
[19:07:23] [main/WARN]: The coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin) is not signed!
[19:07:23] [main/WARN]: The coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin) is not signed!
[19:07:23] [main/INFO]: Searching C:\Users\User\Twitch\Minecraft\Instances\Macroscopic!\mods for mods
[19:07:24] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in colytra-1.12.2-1.2.0.4.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
[19:07:24] [main/WARN]: The coremod c4.colytra.asm.ColytraLoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[19:07:24] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in ForgeEndertech-1.12.2-4.5.0.0-build.0435.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
[19:07:24] [main/WARN]: The coremod com.endertech.minecraft.forge.coremod.CorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[19:07:24] [main/WARN]: The coremod CorePlugin (com.endertech.minecraft.forge.coremod.CorePlugin) is not signed!
[19:07:24] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in InventoryTweaks-1.63.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
[19:07:24] [main/WARN]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[19:07:24] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in LucraftCore-1.12.2-2.4.9 (2).jar. This is not recommended, @Mods should be in a separate jar from the coremod.
[19:07:24] [main/WARN]: The coremod lucraft.mods.lucraftcore.core.LucraftCoreCoreMod does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[19:07:24] [main/WARN]: The coremod LucraftCoreCoreMod (lucraft.mods.lucraftcore.core.LucraftCoreCoreMod) is not signed!
[19:07:24] [main/INFO]: Loading tweaker org.spongepowered.asm.launch.MixinTweaker from phosphor-1.12.2-0.2.6+build50.jar
[19:07:24] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[19:07:24] [main/INFO]: Loading tweak class name org.spongepowered.asm.launch.MixinTweaker
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: java.util.ServiceConfigurationError: org.spongepowered.asm.service.IMixinServiceBootstrap: Error reading configuration file
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.ServiceLoader.fail(ServiceLoader.java:232)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.ServiceLoader.parse(ServiceLoader.java:309)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.ServiceLoader.access$200(ServiceLoader.java:185)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.ServiceLoader$LazyIterator.hasNextService(ServiceLoader.java:357)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.ServiceLoader$LazyIterator.access$600(ServiceLoader.java:323)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.ServiceLoader$LazyIterator$1.run(ServiceLoader.java:396)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.ServiceLoader$LazyIterator$1.run(ServiceLoader.java:395)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.security.AccessController.doPrivileged(Native Method)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.ServiceLoader$LazyIterator.hasNext(ServiceLoader.java:398)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.util.ServiceLoader$1.hasNext(ServiceLoader.java:474)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at org.spongepowered.asm.service.MixinService.runBootServices(MixinService.java:77)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at org.spongepowered.asm.service.MixinService.<init>(MixinService.java:72)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at org.spongepowered.asm.service.MixinService.getInstance(MixinService.java:92)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at org.spongepowered.asm.service.MixinService.boot(MixinService.java:102)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at org.spongepowered.asm.launch.MixinBootstrap.<clinit>(MixinBootstrap.java:76)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at org.spongepowered.asm.launch.MixinTweaker.<init>(MixinTweaker.java:44)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.lang.Class.newInstance(Class.java:442)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:98)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1052]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1061]: Caused by: java.io.FileNotFoundException: C:\Users\User\Twitch\Minecraft\Instances\Macroscopic (The system cannot find the file specified)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1061]: at java.util.zip.ZipFile.open(Native Method)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1061]: at java.util.zip.ZipFile.<init>(ZipFile.java:220)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1061]: at java.util.zip.ZipFile.<init>(ZipFile.java:150)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1061]: at java.util.jar.JarFile.<init>(JarFile.java:166)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1061]: at java.util.jar.JarFile.<init>(JarFile.java:103)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1061]: at sun.net.www.protocol.jar.URLJarFile.<init>(URLJarFile.java:93)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1061]: at sun.net.www.protocol.jar.URLJarFile.getJarFile(URLJarFile.java:69)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1061]: at sun.net.www.protocol.jar.JarFileFactory.get(JarFileFactory.java:94)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1061]: at sun.net.www.protocol.jar.JarURLConnection.connect(JarURLConnection.java:122)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1061]: at sun.net.www.protocol.jar.JarURLConnection.getInputStream(JarURLConnection.java:150)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1061]: at java.net.URL.openStream(URL.java:1038)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1061]: at java.util.ServiceLoader.parse(ServiceLoader.java:304)
[19:07:24] [main/INFO]: [java.lang.ThreadGroup:uncaughtException:1061]: ... 21 more
1
12/23/2019 2:43 am
Level 1 : New Miner
dzumaki
dzumaki's Avatar
You can Help me? PPLease


---- Minecraft Crash Report ----

WARNING: coremods are present:
llibrary (llibrary-core-1.0.11-1.12.2.jar)
FMLModule (mdxlib-1.12.2-3.0.0.22.jar)
ForgelinPlugin (Forgelin (1.8.2).jar)
CorePlugin (AcademyCraft_1.12.2_1.1.2.jar)
TLSkinCapeHookLoader (tlskincape_1.12.2-1.4.jar)
SpongeCoremod (spongeforge-1.12.2-2768-7.1.4.jar)
midnight (themidnight_0.3.3_mc1.12.2.jar)
Contact their authors BEFORE contacting forge

// Who set us up the TNT?

Time: 12/23/19 2:36 PM
Description: Initializing game

java.lang.RuntimeException: Invalid id 4096 - maximum id range exceeded.
at net.minecraftforge.registries.ForgeRegistry.add(ForgeRegistry.java:295)
at net.minecraftforge.registries.ForgeRegistry.add(ForgeRegistry.java:281)
at net.minecraftforge.registries.ForgeRegistry.register(ForgeRegistry.java:113)
at net.minecraftforge.registries.ForgeRegistry.registerAll(ForgeRegistry.java:154)
at naturix.divinerpg.utils.handlers.RegistryHandler.onBlockRegister(RegistryHandler.java:31)
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_119_RegistryHandler_onBlockRegister_Register.invoke(.dynamic)
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90)
at net.minecraftforge.fml.common.eventhandler.EventBus$1.invoke(EventBus.java:144)
at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:693)
at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:641)
at net.minecraftforge.registries.GameData.fireRegistryEvents(GameData.java:845)
at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:630)
at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:252)
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:467)
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378)
at net.minecraft.client.main.Main.main(SourceFile:123)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)


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

-- Head --
Thread: Client thread
Stacktrace:
at net.minecraftforge.registries.ForgeRegistry.add(ForgeRegistry.java:295)
at net.minecraftforge.registries.ForgeRegistry.add(ForgeRegistry.java:281)
at net.minecraftforge.registries.ForgeRegistry.register(ForgeRegistry.java:113)
at net.minecraftforge.registries.ForgeRegistry.registerAll(ForgeRegistry.java:154)
at naturix.divinerpg.utils.handlers.RegistryHandler.onBlockRegister(RegistryHandler.java:31)
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_119_RegistryHandler_onBlockRegister_Register.invoke(.dynamic)
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90)
at net.minecraftforge.fml.common.eventhandler.EventBus$1.invoke(EventBus.java:144)
at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:693)
at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:641)
at net.minecraftforge.registries.GameData.fireRegistryEvents(GameData.java:845)
at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:630)
at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:252)
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:467)

-- Initialization --
Details:
Stacktrace:
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378)
at net.minecraft.client.main.Main.main(SourceFile:123)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

-- System Details --
Details:
Minecraft Version: 1.12.2
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_201, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 14305268640 bytes (13642 MB) / 15904800768 bytes (15168 MB) up to 15904800768 bytes (15168 MB)
JVM Flags: 8 total; -Xmn128M -Xmx15151M -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: MCP 9.42 Powered by Forge 14.23.5.2847 Optifine OptiFine_1.12.2_HD_U_F5 112 mods loaded, 112 mods active
States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored

| State | ID | Version | Source | Signature |
|:----- |:-------------------------- |:----------------- |:-------------------------------------------------- |:---------------------------------------- |
| LCH | minecraft | 1.12.2 | minecraft.jar | None |
| LCH | mcp | 9.42 | minecraft.jar | None |
| LCH | FML | 8.0.99.99 | forge-1.12.2-14.23.5.2847.jar | None |
| LCH | forge | 14.23.5.2847 | forge-1.12.2-14.23.5.2847.jar | None |
| LCH | LambdaLib|Core | 0.1.9 | minecraft.jar | None |
| LCH | spongeapi | 7.1.0-70763aa8 | spongeforge-1.12.2-2768-7.1.4.jar | None |
| LCH | sponge | 1.12.2-7.1.4 | spongeforge-1.12.2-2768-7.1.4.jar | None |
| LCH | spongeforge | 1.12.2-2768-7.1.4 | spongeforge-1.12.2-2768-7.1.4.jar | None |
| LCH | creepypastacraft | 1.0 | 1.12.2CreepypastaCraftRebornalpha_0.1.jar | None |
| LCH | securitycraft | v1.8.14.1 | 1.12.2SecurityCraftv1.8.14.1.jar | None |
| LCH | lambdalib2 | 0.1.9 | AcademyCraft_1.12.2_1.1.2.jar | None |
| LCH | academy | 1.1.2 | AcademyCraft_1.12.2_1.1.2.jar | None |
| LCH | academymonster | 1.1.0a | AcademyMonster_1.1.0a.jar | None |
| LCH | ic2 | 2.8.107-ex112 | IC2 (2.8.107-ex112).jar | de041f9f6187debbc77034a344134053277aa3b0 |
| LCH | advanced_solar_panels | 4.3.0 | AdvancedSolarPanels (4.3.0).jar | None |
| LCH | mdxlib | 3.0.0.22 | mdxlib-1.12.2-3.0.0.22.jar | None |
| LCH | redstoneflux | 2.1.0 | RedstoneFlux (2.1.0.6).jar | 8a6abf2cb9e141b866580d369ba6548732eff25f |
| LCH | avp | 6.0.0.51 | aliensvspredator-1.12.2-6.0.0.51.jar | None |
| LCH | codechickenlib | 3.2.2.353 | CodeChickenLib (3.2.2.353).jar | f1850c39b2516232a2108a7bd84d1cb5df93b261 |
| LCH | ancientwarfare | 1.12.2-2.7.0.772 | ancientwarfare_1.12.2_2.7.0.772.jar | None |
| LCH | ancientwarfarestructure | 1.12.2-2.7.0.772 | ancientwarfare_1.12.2_2.7.0.772.jar | None |
| LCH | ancientwarfarevehicle | 1.12.2-2.7.0.772 | ancientwarfare_1.12.2_2.7.0.772.jar | None |
| LCH | ancientwarfarenpc | 1.12.2-2.7.0.772 | ancientwarfare_1.12.2_2.7.0.772.jar | None |
| LCH | ancientwarfareautomation | 1.12.2-2.7.0.772 | ancientwarfare_1.12.2_2.7.0.772.jar | None |
| LCH | antiqueatlas | 4.5.0 | antiqueatlas_1.12.2_4.5.0.jar | e631d7254e451d0360d0148cb21407d5511d45e9 |
| LCH | antiqueatlasoverlay | 1.2 | antiqueatlas_1.12.2_4.5.0.jar | e631d7254e451d0360d0148cb21407d5511d45e9 |
| LCH | appliedenergistics2 | rv6-stable-6 | AppliedEnergistics2-rv6-stable-6.jar | dfa4d3ac143316c6f32aa1a1beda1e34d42132e5 |
| LCH | mcjtylib_ng | 3.5.0 | mcjtylib-1.12-3.5.0.jar | None |
| LCH | hologui | 0.0.6-beta | hologui-1.12-0.0.6-beta.jar | None |
| LCH | ariente | 0.0.11-alpha | ariente-1.12-0.0.11-alpha.jar | None |
| LCH | baubles | 1.5.2 | Baubles_1.12_1.5.2.jar | None |
| LCH | betteranimalsplus | 8.1.0 | betteranimalsplus_1.12.2_8.1.0.jar | None |
| LCH | jei | 4.15.0.291 | jei_1.12.2_4.15.0.291.jar | None |
| LCH | forestry | 5.8.2.380 | Forestry (5.8.2.380).jar | None |
| LCH | binniecore | 2.5.1.186 | Binnie-Mods (2.5.1.186).jar | None |
| LCH | binniedesign | 2.5.1.186 | Binnie-Mods (2.5.1.186).jar | None |
| LCH | genetics | 2.5.1.186 | Binnie-Mods (2.5.1.186).jar | None |
| LCH | botany | 2.5.1.186 | Binnie-Mods (2.5.1.186).jar | None |
| LCH | extrabees | 2.5.1.186 | Binnie-Mods (2.5.1.186).jar | None |
| LCH | extratrees | 2.5.1.186 | Binnie-Mods (2.5.1.186).jar | None |
| LCH | biomesoplenty | 7.0.1.2424 | BiomesOPlenty (7.0.1.2424).jar | None |
| LCH | blocklings | 6.0.0 | Blocklings6.0.0_1.12.2.jar | None |
| LCH | bookshelf | 2.3.590 | Bookshelf_1.12.2_2.3.590.jar | d476d1b22b218a10d845928d1665d45fce301b27 |
| LCH | bookworm | 1.12.2-2.3.0 | bookworm-1.12.2-2.3.0.jar | None |
| LCH | brandonscore | 2.4.15 | BrandonsCore-1.12.2-2.4.15.206-universal.jar | None |
| LCH | cofhcore | 4.6.1 | CoFHCore (4.6.1.22).jar | None |
| LCH | cofhworld | 1.3.0 | CoFHWorld (1.3.0.6).jar | 8a6abf2cb9e141b866580d369ba6548732eff25f |
| LCH | sticky_craft | 1.0.0 | Core-1.12.2-Indastrial.jar | None |
| LCH | craftstudioapi | 1.0.0 | CraftStudio-1.0.0.93-mc1.12-alpha.jar | None |
| LCH | crafttweaker | 4.1.6 | CraftTweaker2 (4.1.6).jar | None |
| LCH | ctgui | 1.0.0 | CraftTweaker2 (4.1.6).jar | None |
| LCH | crafttweakerjei | 2.0.0 | CraftTweaker2 (4.1.6).jar | None |
| LCH | divinerpg | 1.12.2.0 | divinerpg_1.12.2.0.20.jar | None |
| LCH | thermalfoundation | 2.6.1 | ThermalFoundation (2.6.1.22).jar | 8a6abf2cb9e141b866580d369ba6548732eff25f |
| LCH | draconicevolution | 2.3.23 | Draconic-Evolution-1.12.2-2.3.23.345-universal.jar | None |
| LCH | dynamictrees | 1.12.2-0.9.3 | DynamicTrees (0.9.3).jar | None |
| LCH | dynamictreesbop | 1.12.2-1.4.1e | DynamicTreesBOP (1.4.1e).jar | None |
| LCH | elemental_blades | 1.1 | ElementalBlades1.1_1.jar | None |
| LCH | extracells | 2.6.2 | ExtraCells (2.6.2a).jar | None |
| LCH | f0-resources | 1.0.3.1 | Factory0_Resources_Mod_1.12.2.jar | None |
| LCH | flansmod | 5.5.2 | Flans_Mod_1.12.2_5.5.2.jar | None |
| LCH | flansmodapocalypse | 1.0 | Flans_Mod_1.12.2_5.5.2.jar | None |
| LCH | floodlights | 1.4.1-17 | FloodLights_1.12.2_1.4.1_17.jar | None |
| LCH | forgelin | 1.8.2 | Forgelin (1.8.2).jar | None |
| LCH | llibrary | 1.7.19 | llibrary_1.7.19_1.12.2.jar | b9f30a813bee3b9dd5652c460310cfcd54f6b7ec |
| LCH | fossil | 8.0.3 | fossilsarcheology_1.12.2_8.0.3.jar | None |
| LCH | cfm | 6.3.0 | furniture_6.3.0_1.12.2.jar | None |
| LCH | durabilityviewer | 1.4 | Giselbaers_Durability_Viewer_Mod_1.12.2.jar | None |
| LCH | gb | 1.1.202 | Gobber_1.12.2_1.1.202.jar | None |
| LCH | guardillagers | 1.0.0 | guardillagers_1.12.2_1.0.0.jar | None |
| LCH | guardscraft | 1.0.0 | GuardsCraft_1.0.0_1.12.2.jar | None |
| LCH | hungryanimals | 1.12.2-5.4.7 | hungryanimals_1.12.2_5.4.7.0.jar | None |
| LCH | hunterillager | 1.1 | hunterillager_1.12.2_1.1.jar | None |
| LCH | huntersdream | 1.1.1 | HuntersDream_1.12.2_1.1.1.jar | None |
| LCH | huntingdim | 1.0.1 | HuntingDimension_1.12.2_1.0.1.jar | d476d1b22b218a10d845928d1665d45fce301b27 |
| LCH | illagers_plus | 1.1 | IllagersPlus_1.12.2_1.1.3.jar | None |
| LCH | infernalmobs | 1.7.3 | InfernalMobs_1.12.2.jar | None |
| LCH | ironchest | 1.12.2-7.0.54.838 | IronChest (7.0.54.838).jar | None |
| LCH | lvldifficulty | 0.2.2 | leveledDifficulty_1.12.2_0.2.2.jar | None |
| LCH | mapwriter | 2.8.0 | MapWriter_1.12.2_2.8.0.jar | None |
| LCH | metallurgy | 0.2.1 | Metallurgy_4_Reforged_1.12.2_0.2.1.jar | None |
| LCH | minestrapp | 5.7.0 | Minestrappolation_1.12.25.7.0.jar | None |
| LCH | goblin_mod_reforged | 1.0.0 | Mod_Goblin_1.12.2_1.0.1_byestorc.jar | None |
| LCH | morebees | 1.12.2-2.0.1 | MoreBees (2.0.1).jar | None |
| LCH | zawa | 1.12.2-1.7.0 | zawa-1.12.2-1.7.0.jar | 3ee471ded1bba54aa82f4f5ca5ca82dd67b8ef42 |
| LCH | faunanatural | 1.12.2-1.5.0 | NaturalFaunaMod_1.12.2_1.5.0.jar | None |
| LCH | nuclear_furnase | 1.0.0 | Nuclear_Furnace_1.0.0__1.12.2.jar | None |
| LCH | ore_biome | 1.0.0 | ore_biome_1.12.2_1.0.0.jar | None |
| LCH | petcraft | 1.0.0 | PetCraft_Mod_1.12.2.jar | None |
| LCH | pirates | 0.0.5 | pirates_1.12.2_0.0.5.jar | None |
| LCH | thaumcraft | 6.1.BETA26 | Thaumcraft_1.12.2_6.1.BETA26.jar | None |
| LCH | pneumaticcraft | 1.12.2-0.11.7-375 | pneumaticcraft_repressurized_1.12.2_0.11.7_375.jar | None |
| LCH | rallyhealth | 1.0.0 | RallyHealth_1.0.jar | None |
| LCH | rovytra | v1.00 | Realm_of_Vytra_1.00.jar | None |
| LCH | realworld | 1.18 | RealWorld_Mod_1.12.2.jar | None |
| LCH | simplycats | 1.12.2-0.0.2.1 | simplycats_1.12.2_0.0.2.1.jar | None |
| LCH | tektopia | 1.1.0 | tektopia_1.1.0_rus.jar | None |
| LCH | thermalexpansion | 5.5.2 | ThermalExpansion (5.5.2.39).jar | 8a6abf2cb9e141b866580d369ba6548732eff25f |
| LCH | thermaldynamics | 2.5.3 | ThermalDynamics (2.5.3.16).jar | 8a6abf2cb9e141b866580d369ba6548732eff25f |
| LCH | tlauncher_custom_cape_skin | 1.4 | tlskincape_1.12.2-1.4.jar | None |
| LCH | treechopper | 1.2.4 | TreeChopper (1.2.4).jar | None |
| LCH | tropicraft | 7.1.9.115 | tropicraft_MC1.12.2_7.1.9.115.jar | None |
| LCH | twilightforest | 3.10.1013 | twilightforest_1.12.2_3.10.1013_universal.jar | None |
| LCH | vampirism | 1.5.6 | Vampirism_1.12.2_1.5.6.jar | None |
| LCH | teamlapen-lib | 1.5.6 | Vampirism_1.12.2_1.5.6.jar | None |
| LCH | idk | 1.0.0 | VPPVu3_1.12.2.jar | None |
| LCH | wanionlib | 1.12.2-2.2 | WanionLib (2.2).jar | None |
| LCH | warriorspath | v1.1 | Warriors_Path_v1.1_1.12.2.jar | None |
| LCH | thejungle | 1.2004.1222 | WelcomeToTheJungle_1.12.2_1.2004.1222.jar | None |
| LCH | midnight | 0.3.3 | themidnight_0.3.3_mc1.12.2.jar | None |
| LCH | superores | 1.9.0_1.12 | superores_1.9.0_1.12.jar | None |
| LCH | unidict | 1.12.2-2.9.2 | UniDict (2.9.2).jar | None |

Loaded coremods (and transformers):
llibrary (llibrary-core-1.0.11-1.12.2.jar)
net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer
net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher
FMLModule (mdxlib-1.12.2-3.0.0.22.jar)
com.asx.mdx.AccessTransformer
ForgelinPlugin (Forgelin (1.8.2).jar)

CorePlugin (AcademyCraft_1.12.2_1.1.2.jar)
cn.lambdalib2.render.mc.PipelineTransformer
cn.lambdalib2.registry.impl.RegistryTransformer
TLSkinCapeHookLoader (tlskincape_1.12.2-1.4.jar)
gloomyfolken.hooklib.minecraft.PrimaryClassTransformer
SpongeCoremod (spongeforge-1.12.2-2768-7.1.4.jar)
org.spongepowered.common.launch.transformer.SpongeSuperclassTransformer
midnight (themidnight_0.3.3_mc1.12.2.jar)
com.mushroom.midnight.core.transformer.MidnightClassTransformer
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 441.66' Renderer: 'GeForce GTX 1070 Ti/PCIe/SSE2'
AE2 Version: stable rv6-stable-6 for Forge 14.23.5.2768
Launched Version: Forge 1.12.2
LWJGL: 2.9.4
OpenGL: GeForce GTX 1070 Ti/PCIe/SSE2 GL version 4.6.0 NVIDIA 441.66, NVIDIA Corporation
GL Caps: Using GL 1.3 multitexturing.
Using GL 1.3 texture combiners.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Shaders are available because OpenGL 2.1 is supported.
VBOs are available because OpenGL 1.5 is supported.

Using VBOs: No
Is Modded: Definitely; Client brand changed to 'fml,forge,sponge'
Type: Client (map_client.txt)
Resource Packs: Faithful_1.12_rv1.zip
Current Language: Русский (Россия)
Profiler Position: N/A (disabled)
CPU: 8x Intel(R) Core(TM) i7-7700 CPU @ 3.60GHz
OptiFine Version: OptiFine_1.12.2_HD_U_F5
OptiFine Build: 20191204-141934
Render Distance Chunks: 10
Mipmaps: 4
Anisotropic Filtering: 1
Antialiasing: 0
Multitexture: false
Shaders: null
OpenGlVersion: 4.6.0 NVIDIA 441.66
OpenGlRenderer: GeForce GTX 1070 Ti/PCIe/SSE2
OpenGlVendor: NVIDIA Corporation
CpuCount: 8
1
10/14/2019 10:41 pm
Level 1 : New Miner
Floathead23
Floathead23's Avatar
Okay so I have a problem with forge 1.14.4 crashing because of a rendering overlay issue
// You're mean.

Time: 10/14/19 7:35 PM
Description: Rendering overlay

java.lang.NoSuchMethodError: net.minecraft.client.renderer.model.ModelBakery.<init>(Lnet/minecraft/resources/IResourceManager;Lnet/minecraft/client/renderer/texture/AtlasTexture;Lnet/minecraft/client/renderer/color/BlockColors;Z)V
at net.minecraftforge.client.model.ModelLoader.<init>(ModelLoader.java:139) ~[?:?] {re:classloading}
at net.minecraft.client.renderer.model.ModelManager.func_212854_a_(ModelManager.java:46) ~[?:?] {re:classloading,pl:runtimedistcleaner:A}
at net.minecraft.client.renderer.model.ModelManager.func_212854_a_(ModelManager.java:17) ~[?:?] {re:classloading,pl:runtimedistcleaner:A}
at net.minecraft.client.resources.ReloadListener.func_215270_b(SourceFile:11) ~[?:?] {re:classloading}
at net.minecraft.client.resources.ReloadListener$$Lambda$2393/289858350.get(Unknown Source) ~[?:?] {}
at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1582) ~[?:1.8.0_51] {}
at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1574) ~[?:1.8.0_51] {}
at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289) ~[?:1.8.0_51] {}
at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056) ~[?:1.8.0_51] {}
at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1689) ~[?:1.8.0_51] {}
at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157) ~[?:1.8.0_51] {}


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

-- Head --
Thread: Client thread
Stacktrace:
at net.minecraft.client.renderer.GameRenderer.func_195458_a(GameRenderer.java:882)

-- Overlay render details --
Details:
Overlay name: net.minecraft.client.gui.ResourceLoadProgressGui
Stacktrace:
at net.minecraft.client.renderer.GameRenderer.func_195458_a(GameRenderer.java:882)
at net.minecraft.client.Minecraft.func_195542_b(Minecraft.java:890)
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:384)
at net.minecraft.client.main.Main.main(SourceFile:155)
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:497)
at net.minecraftforge.fml.loading.FMLClientLaunchProvider.lambda$launchService$0(FMLClientLaunchProvider.java:56)
at net.minecraftforge.fml.loading.FMLClientLaunchProvider$$Lambda$393/1443173326.call(Unknown Source)
at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37)
at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54)
at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72)
at cpw.mods.modlauncher.Launcher.run(Launcher.java:81)
at cpw.mods.modlauncher.Launcher.main(Launcher.java:65)

-- System Details --
Details:
Minecraft Version: 1.14.4
Minecraft Version ID: 1.14.4
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_51, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 1055576232 bytes (1006 MB) / 2147483648 bytes (2048 MB) up to 2147483648 bytes (2048 MB)
CPUs: 4
JVM Flags: 9 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx2G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M
ModLauncher: 4.1.0+62+5bfa59b
ModLauncher launch target: fmlclient
ModLauncher naming: srg
ModLauncher services:
/eventbus-1.0.0-service.jar eventbus PLUGINSERVICE
/forge-1.14.4-28.1.47.jar object_holder_definalize PLUGINSERVICE
/forge-1.14.4-28.1.47.jar runtime_enum_extender PLUGINSERVICE
/accesstransformers-1.0.0-shadowed.jar accesstransformer PLUGINSERVICE
/forge-1.14.4-28.1.47.jar capability_inject_definalize PLUGINSERVICE
/forge-1.14.4-28.1.47.jar runtimedistcleaner PLUGINSERVICE
/OptiFine_1.14.4_HD_U_F4.jar OptiFine TRANSFORMATIONSERVICE
/forge-1.14.4-28.1.47.jar fml TRANSFORMATIONSERVICE
FML: 28.1
Forge: net.minecraftforge:28.1.47
FML Language Providers:
javafml@28.1
minecraft@1
Mod List:
jei-1.14.4-6.0.0.13.jar Just Enough Items {jei@6.0.0.13 ENQUEUE_IMC}
mod_autofish_forge-1.14.4-1.7.jar AutoFish Forge Mod {mod_autofish@1.14.4-1.7 ENQUEUE_IMC}
Xaeros_Minimap_1.18.5.3_Forge_1.14.4.jar Xaero's Minimap {xaerominimap@1.18.5.3 ENQUEUE_IMC}
XaerosWorldMap_1.4.10.1_Forge_1.14.4.jar Xaero's World Map {xaeroworldmap@1.4.10.1 ENQUEUE_IMC}
forge-1.14.4-28.1.47-universal.jar Forge {forge@28.1.47 ENQUEUE_IMC}
forge-1.14.4-28.1.47-client.jar Minecraft {minecraft@1.14.4 ENQUEUE_IMC}
Launched Version: 1.14.4-forge-28.1.47
LWJGL: 3.2.2 build 10
OpenGL: Radeon RX 570 Series GL version 4.6.13558 Compatibility Profile Context 26.20.11015.9003, ATI Technologies Inc.
GL Caps: Using GL 1.3 multitexturing.
Using GL 1.3 texture combiners.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Shaders are available because OpenGL 2.1 is supported.
VBOs are available because OpenGL 1.5 is supported.

Using VBOs: Yes
Is Modded: Definitely; Client brand changed to 'forge'
Type: Client (map_client.txt)
Resource Packs: vanilla, programer_art
Current Language: English (US)
CPU: 4x AMD Athlon(tm) X4 880K Quad Core Processor
1
07/12/2019 3:35 pm
Level 1 : New Miner
JeromeXXXX
JeromeXXXX's Avatar
Can someone help me? I have a problem whenever i try to load a world with the pixelmon mod i get this

---- Minecraft Crash Report ----

WARNING: coremods are present:
Java8CheckerCoremod (Pixelmon-1.8.9-4.2.7-universal.jar)
Contact their authors BEFORE contacting forge

// Sorry :(

Time: 7/12/19 3:11 PM
Description: Ticking memory connection

java.util.NoSuchElementException: No value present
at java.util.Optional.get(Optional.java:135)
at com.pixelmonmod.pixelmon.comm.packetHandlers.StarterListPacket.<init>(StarterListPacket.java:30)
at com.pixelmonmod.pixelmon.TickHandler.registerStarterList(TickHandler.java:132)
at com.pixelmonmod.pixelmon.storage.PokeballManager.loadPlayer(PokeballManager.java:196)
at com.pixelmonmod.pixelmon.storage.PokeballManager.getPlayerStorage(PokeballManager.java:52)
at com.pixelmonmod.pixelmon.comm.PixelmonPlayerTracker.onPlayerLogin(PixelmonPlayerTracker.java:40)
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_46_PixelmonPlayerTracker_onPlayerLogin_PlayerLoggedInEvent.invoke(.dynamic)
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:55)
at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:140)
at net.minecraftforge.fml.common.FMLCommonHandler.firePlayerLoggedIn(FMLCommonHandler.java:557)
at net.minecraft.server.management.ServerConfigurationManager.initializeConnectionToPlayer(ServerConfigurationManager.java:175)
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.completeServerSideConnection(NetworkDispatcher.java:239)
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.access$100(NetworkDispatcher.java:54)
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher$1.func_73660_a(NetworkDispatcher.java:190)
at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:289)
at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:189)
at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:724)
at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:605)
at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:152)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:481)
at java.lang.Thread.run(Thread.java:745)


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

-- Head --
Stacktrace:
at java.util.Optional.get(Optional.java:135)
at com.pixelmonmod.pixelmon.comm.packetHandlers.StarterListPacket.<init>(StarterListPacket.java:30)
at com.pixelmonmod.pixelmon.TickHandler.registerStarterList(TickHandler.java:132)
at com.pixelmonmod.pixelmon.storage.PokeballManager.loadPlayer(PokeballManager.java:196)
at com.pixelmonmod.pixelmon.storage.PokeballManager.getPlayerStorage(PokeballManager.java:52)
at com.pixelmonmod.pixelmon.comm.PixelmonPlayerTracker.onPlayerLogin(PixelmonPlayerTracker.java:40)
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_46_PixelmonPlayerTracker_onPlayerLogin_PlayerLoggedInEvent.invoke(.dynamic)
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:55)
at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:140)
at net.minecraftforge.fml.common.FMLCommonHandler.firePlayerLoggedIn(FMLCommonHandler.java:557)
at net.minecraft.server.management.ServerConfigurationManager.initializeConnectionToPlayer(ServerConfigurationManager.java:175)
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.completeServerSideConnection(NetworkDispatcher.java:239)
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.access$100(NetworkDispatcher.java:54)
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher$1.func_73660_a(NetworkDispatcher.java:190)
at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:289)

-- Ticking connection --
Details:
Connection: net.minecraft.network.NetworkManager@e3274c2
Stacktrace:
at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:189)
at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:724)
at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:605)
at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:152)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:481)
at java.lang.Thread.run(Thread.java:745)

-- System Details --
Details:
Minecraft Version: 1.8.9
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_51, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 725213360 bytes (691 MB) / 2013265920 bytes (1920 MB) up to 4294967296 bytes (4096 MB)
JVM Flags: 8 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx4G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M
IntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 95
FML: MCP 9.19 Powered by Forge 11.15.1.1722 4 mods loaded, 4 mods active
States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
UCHIJAAAA mcp{9.19} [Minecraft Coder Pack] (minecraft.jar)
UCHIJAAAA FML{8.0.99.99} [Forge Mod Loader] (forge-1.8.9-11.15.1.1722.jar)
UCHIJAAAA Forge{11.15.1.1722} [Minecraft Forge] (forge-1.8.9-11.15.1.1722.jar)
UCHIJAAAA pixelmon{4.2.7} [Pixelmon] (Pixelmon-1.8.9-4.2.7-universal.jar)
Loaded coremods (and transformers):
Java8CheckerCoremod (Pixelmon-1.8.9-4.2.7-universal.jar)

GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.
Profiler Position: N/A (disabled)
Player Count: 1 / 8; [EntityPlayerMP['HCxxGAMING'/71, l='§6 §l? §6 §lPixelmon §eSpirit of §e §lThunder §6 §l?', x=164.50, y=83.00, z=202.50]]
Type: Integrated Server (map_client.txt)
Is Modded: Definitely; Client brand changed to 'fml,forge'
1
06/28/2019 4:11 pm
Level 1 : New Explorer
VoidPelt
VoidPelt's Avatar
Soooooooo, any help lads? I removed a mod that caused one problem and now I have another. (original problem was caused by Colorful health bars) Game version:1.13.2 (don't ask) Log:

[13:55:46] [main/INFO]: ModLauncher running: args [--username, VoidPelt, --version, forge-25.0.219, --gameDir, C:\Users\Void\Documents\Curse\Minecraft\Instances\yote survival\, --assetsDir, C:\Users\Void\Documents\Curse\Minecraft\Install\assets, --assetIndex, 1.13, --uuid, 235f961cd6834c4db08056f1c4b71332, --accessToken, ????????, --userType, mojang, --versionType, release, --width, 1900, --height, 1080, --launchTarget, fmlclient, --fml.forgeVersion, 25.0.219, --fml.mcVersion, 1.13.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20190213.203750]
[13:55:46] [main/INFO]: ModLauncher starting: java version 1.8.0_51
[13:55:47] [main/INFO]: Added Lets Encrypt root certificates as additional trust
[13:55:49] [main/WARN]: Mod file Mod File: C:\Users\Void\Documents\Curse\Minecraft\Instances\yote survival\mods\riftmod_mineAmp_1.2.1_for_1.13_2.jar is missing mods.toml file
[13:55:49] [main/WARN]: File C:\Users\Void\Documents\Curse\Minecraft\Instances\yote survival\mods\riftmod_mineAmp_1.2.1_for_1.13_2.jar has been ignored - it is invalid
[13:55:51] [main/INFO]: Launching target 'fmlclient' with arguments [--version, forge-25.0.219, --gameDir, C:\Users\Void\Documents\Curse\Minecraft\Instances\yote survival, --assetsDir, C:\Users\Void\Documents\Curse\Minecraft\Install\assets, --username, VoidPelt, --assetIndex, 1.13, --uuid, 235f961cd6834c4db08056f1c4b71332, --accessToken, ????????, --userType, mojang, --versionType, release, --width, 1900, --height, 1080]
[13:55:56] [Client thread/INFO]: Setting user: VoidPelt
[13:56:07] [Client thread/WARN]: Skipping bad option: lastServer:
[13:56:07] [Client thread/INFO]: LWJGL Version: 3.1.6 build 14
[13:56:10] [Client thread/INFO]: Loading Network data for FML net version: FML2
[13:56:10] [Client thread/ERROR]: Failed to load class net.darkhax.gamestages.GameStages
java.lang.NoClassDefFoundError: net/darkhax/bookshelf/network/NetworkHelper
at net.darkhax.gamestages.GameStages.<clinit>(GameStages.java:23) ~[?:3.0.2]
at java.lang.Class.forName0(Native Method) ~[?:1.8.0_51]
at java.lang.Class.forName(Class.java:348) ~[?:1.8.0_51]
at net.minecraftforge.fml.javafmlmod.FMLModContainer.<init>(FMLModContainer.java:70) [?:25.0]
at sun.reflect.GeneratedConstructorAccessor22.newInstance(Unknown Source) [?:1.8.0_51]
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) [?:1.8.0_51]
at java.lang.reflect.Constructor.newInstance(Constructor.java:422) [?:1.8.0_51]
at net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider$FMLModTarget.loadMod(FMLJavaModLanguageProvider.java:73) [forge-1.13.2-25.0.219-universal.jar:25.0]
at net.minecraftforge.fml.ModLoader.buildModContainerFromTOML(ModLoader.java:188) [?:?]
at net.minecraftforge.fml.ModLoader.lambda$buildMods$6(ModLoader.java:170) [?:?]
at net.minecraftforge.fml.ModLoader$$Lambda$1326/1446787786.apply(Unknown Source) [?:?]
at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:193) [?:1.8.0_51]
at java.util.HashMap$EntrySpliterator.forEachRemaining(HashMap.java:1683) [?:1.8.0_51]
at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:512) [?:1.8.0_51]
at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:502) [?:1.8.0_51]
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708) [?:1.8.0_51]
at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) [?:1.8.0_51]
at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499) [?:1.8.0_51]
at net.minecraftforge.fml.ModLoader.buildMods(ModLoader.java:170) [?:?]
at net.minecraftforge.fml.ModLoader.lambda$loadMods$2(ModLoader.java:129) [?:?]
at net.minecraftforge.fml.ModLoader$$Lambda$1323/1244266030.apply(Unknown Source) [?:?]
at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:193) [?:1.8.0_51]
at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:193) [?:1.8.0_51]
at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374) [?:1.8.0_51]
at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:512) [?:1.8.0_51]
at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:502) [?:1.8.0_51]
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708) [?:1.8.0_51]
at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) [?:1.8.0_51]
at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499) [?:1.8.0_51]
at net.minecraftforge.fml.ModLoader.loadMods(ModLoader.java:131) [?:?]
at net.minecraftforge.fml.client.ClientModLoader.begin(ClientModLoader.java:63) [?:?]
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:412) [?:?]
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:345) [?:?]
at net.minecraft.client.main.Main.main(SourceFile:144) [?:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_51]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_51]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_51]
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_51]
at net.minecraftforge.fml.loading.FMLClientLaunchProvider.lambda$launchService$0(FMLClientLaunchProvider.java:51) [forge-1.13.2-25.0.219.jar:25.0]
at net.minecraftforge.fml.loading.FMLClientLaunchProvider$$Lambda$331/732189840.call(Unknown Source) [forge-1.13.2-25.0.219.jar:25.0]
at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:19) [modlauncher-2.1.1.jar:?]
at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:32) [modlauncher-2.1.1.jar:?]
at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:50) [modlauncher-2.1.1.jar:?]
at cpw.mods.modlauncher.Launcher.run(Launcher.java:59) [modlauncher-2.1.1.jar:?]
at cpw.mods.modlauncher.Launcher.main(Launcher.java:44) [modlauncher-2.1.1.jar:?]
Caused by: java.lang.ClassNotFoundException: net.darkhax.bookshelf.network.NetworkHelper
at java.lang.ClassLoader.findClass(ClassLoader.java:530) ~[?:1.8.0_51]
at java.lang.ClassLoader.loadClass(ClassLoader.java:424) ~[?:1.8.0_51]
at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:84) ~[modlauncher-2.1.1.jar:?]
at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ~[?:1.8.0_51]
... 45 more
[13:56:10] [Client thread/FATAL]: Unable to load FMLModContainer, wut?
java.lang.reflect.InvocationTargetException: null
at sun.reflect.GeneratedConstructorAccessor22.newInstance(Unknown Source) ~[?:?]
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:1.8.0_51]
at java.lang.reflect.Constructor.newInstance(Constructor.java:422) ~[?:1.8.0_51]
at net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider$FMLModTarget.loadMod(FMLJavaModLanguageProvider.java:73) [forge-1.13.2-25.0.219-universal.jar:25.0]
at net.minecraftforge.fml.ModLoader.buildModContainerFromTOML(ModLoader.java:188) [?:?]
at net.minecraftforge.fml.ModLoader.lambda$buildMods$6(ModLoader.java:170) [?:?]
at net.minecraftforge.fml.ModLoader$$Lambda$1326/1446787786.apply(Unknown Source) [?:?]
at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:193) [?:1.8.0_51]
at java.util.HashMap$EntrySpliterator.forEachRemaining(HashMap.java:1683) [?:1.8.0_51]
at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:512) [?:1.8.0_51]
at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:502) [?:1.8.0_51]
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708) [?:1.8.0_51]
at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) [?:1.8.0_51]
at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499) [?:1.8.0_51]
at net.minecraftforge.fml.ModLoader.buildMods(ModLoader.java:170) [?:?]
at net.minecraftforge.fml.ModLoader.lambda$loadMods$2(ModLoader.java:129) [?:?]
at net.minecraftforge.fml.ModLoader$$Lambda$1323/1244266030.apply(Unknown Source) [?:?]
at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:193) [?:1.8.0_51]
at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:193) [?:1.8.0_51]
at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374) [?:1.8.0_51]
at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:512) [?:1.8.0_51]
at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:502) [?:1.8.0_51]
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708) [?:1.8.0_51]
at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) [?:1.8.0_51]
at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499) [?:1.8.0_51]
at net.minecraftforge.fml.ModLoader.loadMods(ModLoader.java:131) [?:?]
at net.minecraftforge.fml.client.ClientModLoader.begin(ClientModLoader.java:63) [?:?]
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:412) [?:?]
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:345) [?:?]
at net.minecraft.client.main.Main.main(SourceFile:144) [?:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_51]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_51]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_51]
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_51]
at net.minecraftforge.fml.loading.FMLClientLaunchProvider.lambda$launchService$0(FMLClientLaunchProvider.java:51) [forge-1.13.2-25.0.219.jar:25.0]
at net.minecraftforge.fml.loading.FMLClientLaunchProvider$$Lambda$331/732189840.call(Unknown Source) [forge-1.13.2-25.0.219.jar:25.0]
at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:19) [modlauncher-2.1.1.jar:?]
at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:32) [modlauncher-2.1.1.jar:?]
at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:50) [modlauncher-2.1.1.jar:?]
at cpw.mods.modlauncher.Launcher.run(Launcher.java:59) [modlauncher-2.1.1.jar:?]
at cpw.mods.modlauncher.Launcher.main(Launcher.java:44) [modlauncher-2.1.1.jar:?]
Caused by: net.minecraftforge.fml.ModLoadingException: fml.modloading.failedtoloadmodclass
at net.minecraftforge.fml.javafmlmod.FMLModContainer.<init>(FMLModContainer.java:76) ~[?:25.0]
... 41 more
Caused by: java.lang.NoClassDefFoundError: net/darkhax/bookshelf/network/NetworkHelper
at net.darkhax.gamestages.GameStages.<clinit>(GameStages.java:23) ~[?:3.0.2]
at java.lang.Class.forName0(Native Method) ~[?:1.8.0_51]
at java.lang.Class.forName(Class.java:348) ~[?:1.8.0_51]
at net.minecraftforge.fml.javafmlmod.FMLModContainer.<init>(FMLModContainer.java:70) ~[?:25.0]
... 41 more
Caused by: java.lang.ClassNotFoundException: net.darkhax.bookshelf.network.NetworkHelper
at java.lang.ClassLoader.findClass(ClassLoader.java:530) ~[?:1.8.0_51]
at java.lang.ClassLoader.loadClass(ClassLoader.java:424) ~[?:1.8.0_51]
at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:84) ~[modlauncher-2.1.1.jar:?]
at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ~[?:1.8.0_51]
at net.darkhax.gamestages.GameStages.<clinit>(GameStages.java:23) ~[?:3.0.2]
at java.lang.Class.forName0(Native Method) ~[?:1.8.0_51]
at java.lang.Class.forName(Class.java:348) ~[?:1.8.0_51]
at net.minecraftforge.fml.javafmlmod.FMLModContainer.<init>(FMLModContainer.java:70) ~[?:25.0]
... 41 more
[13:56:11] [Client thread/INFO]: [net.minecraft.init.Bootstrap:func_179870_a:467]: ---- Minecraft Crash Report ----
// My bad.

Time: 6/28/19 1:56 PM
Description: Initializing game

java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
at net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider$FMLModTarget.loadMod(FMLJavaModLanguageProvider.java:78) ~[?:25.0] {pl:eventbus:A,pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
at net.minecraftforge.fml.ModLoader.buildModContainerFromTOML(ModLoader.java:188) ~[?:?] {pl:eventbus:A,pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
at net.minecraftforge.fml.ModLoader.lambda$buildMods$6(ModLoader.java:170) ~[?:?] {pl:eventbus:A,pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
at net.minecraftforge.fml.ModLoader$$Lambda$1326/1446787786.apply(Unknown Source) ~[?:?] {}
at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:193) ~[?:1.8.0_51] {}
at java.util.HashMap$EntrySpliterator.forEachRemaining(HashMap.java:1683) ~[?:1.8.0_51] {}
at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:512) ~[?:1.8.0_51] {}
at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:502) ~[?:1.8.0_51] {}
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708) ~[?:1.8.0_51] {}
at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:1.8.0_51] {}
at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499) ~[?:1.8.0_51] {}
at net.minecraftforge.fml.ModLoader.buildMods(ModLoader.java:170) ~[?:?] {pl:eventbus:A,pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
at net.minecraftforge.fml.ModLoader.lambda$loadMods$2(ModLoader.java:129) ~[?:?] {pl:eventbus:A,pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
at net.minecraftforge.fml.ModLoader$$Lambda$1323/1244266030.apply(Unknown Source) ~[?:?] {}
at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:193) ~[?:1.8.0_51] {}
at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:193) ~[?:1.8.0_51] {}
at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374) ~[?:1.8.0_51] {}
at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:512) ~[?:1.8.0_51] {}
at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:502) ~[?:1.8.0_51] {}
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708) ~[?:1.8.0_51] {}
at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:1.8.0_51] {}
at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499) ~[?:1.8.0_51] {}
at net.minecraftforge.fml.ModLoader.loadMods(ModLoader.java:131) ~[?:?] {pl:eventbus:A,pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
at net.minecraftforge.fml.client.ClientModLoader.begin(ClientModLoader.java:63) ~[?:?] {pl:eventbus:A,pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:412) [?:?] {pl:accesstransformer:B,pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:345) [?:?] {pl:accesstransformer:B,pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
at net.minecraft.client.main.Main.main(SourceFile:144) [?:?] {pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_51] {}
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_51] {}
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_51] {}
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_51] {}
at net.minecraftforge.fml.loading.FMLClientLaunchProvider.lambda$launchService$0(FMLClientLaunchProvider.java:51) [forge-1.13.2-25.0.219.jar:25.0] {}
at net.minecraftforge.fml.loading.FMLClientLaunchProvider$$Lambda$331/732189840.call(Unknown Source) [forge-1.13.2-25.0.219.jar:25.0] {}
at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:19) [modlauncher-2.1.1.jar:?] {}
at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:32) [modlauncher-2.1.1.jar:?] {}
at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:50) [modlauncher-2.1.1.jar:?] {}
at cpw.mods.modlauncher.Launcher.run(Launcher.java:59) [modlauncher-2.1.1.jar:?] {}
at cpw.mods.modlauncher.Launcher.main(Launcher.java:44) [modlauncher-2.1.1.jar:?] {}
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.GeneratedConstructorAccessor22.newInstance(Unknown Source) ~[?:?] {}
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:1.8.0_51] {}
at java.lang.reflect.Constructor.newInstance(Constructor.java:422) ~[?:1.8.0_51] {}
at net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider$FMLModTarget.loadMod(FMLJavaModLanguageProvider.java:73) ~[?:25.0] {pl:eventbus:A,pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
... 37 more
Caused by: net.minecraftforge.fml.ModLoadingException: fml.modloading.failedtoloadmodclass
at net.minecraftforge.fml.javafmlmod.FMLModContainer.<init>(FMLModContainer.java:76) ~[?:25.0] {pl:eventbus:A,pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
at sun.reflect.GeneratedConstructorAccessor22.newInstance(Unknown Source) ~[?:?] {}
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:1.8.0_51] {}
at java.lang.reflect.Constructor.newInstance(Constructor.java:422) ~[?:1.8.0_51] {}
at net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider$FMLModTarget.loadMod(FMLJavaModLanguageProvider.java:73) ~[?:25.0] {pl:eventbus:A,pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
... 37 more
Caused by: java.lang.NoClassDefFoundError: net/darkhax/bookshelf/network/NetworkHelper
at net.darkhax.gamestages.GameStages.<clinit>(GameStages.java:23) ~[?:3.0.2] {pl:eventbus:A,pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
at java.lang.Class.forName0(Native Method) ~[?:1.8.0_51] {}
at java.lang.Class.forName(Class.java:348) ~[?:1.8.0_51] {}
at net.minecraftforge.fml.javafmlmod.FMLModContainer.<init>(FMLModContainer.java:70) ~[?:25.0] {pl:eventbus:A,pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
at sun.reflect.GeneratedConstructorAccessor22.newInstance(Unknown Source) ~[?:?] {}
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:1.8.0_51] {}
at java.lang.reflect.Constructor.newInstance(Constructor.java:422) ~[?:1.8.0_51] {}
at net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider$FMLModTarget.loadMod(FMLJavaModLanguageProvider.java:73) ~[?:25.0] {pl:eventbus:A,pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
... 37 more
Caused by: java.lang.ClassNotFoundException: net.darkhax.bookshelf.network.NetworkHelper
at java.lang.ClassLoader.findClass(ClassLoader.java:530) ~[?:1.8.0_51] {}
at java.lang.ClassLoader.loadClass(ClassLoader.java:424) ~[?:1.8.0_51] {}
at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:84) ~[modlauncher-2.1.1.jar:?] {}
at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ~[?:1.8.0_51] {}
at net.darkhax.gamestages.GameStages.<clinit>(GameStages.java:23) ~[?:3.0.2] {pl:eventbus:A,pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
at java.lang.Class.forName0(Native Method) ~[?:1.8.0_51] {}
at java.lang.Class.forName(Class.java:348) ~[?:1.8.0_51] {}
at net.minecraftforge.fml.javafmlmod.FMLModContainer.<init>(FMLModContainer.java:70) ~[?:25.0] {pl:eventbus:A,pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
at sun.reflect.GeneratedConstructorAccessor22.newInstance(Unknown Source) ~[?:?] {}
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:1.8.0_51] {}
at java.lang.reflect.Constructor.newInstance(Constructor.java:422) ~[?:1.8.0_51] {}
at net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider$FMLModTarget.loadMod(FMLJavaModLanguageProvider.java:73) ~[?:25.0] {pl:eventbus:A,pl:object_holder_definalize:A,pl:runtime_enum_extender:A,pl:capability_inject_definalize:A,pl:runtimedistcleaner:A}
... 37 more


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

-- Head --
Thread: Client thread
Stacktrace:
at net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider$FMLModTarget.loadMod(FMLJavaModLanguageProvider.java:78)
at net.minecraftforge.fml.ModLoader.buildModContainerFromTOML(ModLoader.java:188)
at net.minecraftforge.fml.ModLoader.lambda$buildMods$6(ModLoader.java:170)
at net.minecraftforge.fml.ModLoader$$Lambda$1326/1446787786.apply(Unknown Source)
at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:193)
at java.util.HashMap$EntrySpliterator.forEachRemaining(HashMap.java:1683)
at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:512)
at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:502)
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708)
at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499)
at net.minecraftforge.fml.ModLoader.buildMods(ModLoader.java:170)
at net.minecraftforge.fml.ModLoader.lambda$loadMods$2(ModLoader.java:129)
at net.minecraftforge.fml.ModLoader$$Lambda$1323/1244266030.apply(Unknown Source)
at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:193)
at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:193)
at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:512)
at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:502)
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708)
at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499)
at net.minecraftforge.fml.ModLoader.loadMods(ModLoader.java:131)
at net.minecraftforge.fml.client.ClientModLoader.begin(ClientModLoader.java:63)
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:412)

-- Initialization --
Details:
Stacktrace:
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:345)
at net.minecraft.client.main.Main.main(SourceFile:144)
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:497)
at net.minecraftforge.fml.loading.FMLClientLaunchProvider.lambda$launchService$0(FMLClientLaunchProvider.java:51)
at net.minecraftforge.fml.loading.FMLClientLaunchProvider$$Lambda$331/732189840.call(Unknown Source)
at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:19)
at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:32)
at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:50)
at cpw.mods.modlauncher.Launcher.run(Launcher.java:59)
at cpw.mods.modlauncher.Launcher.main(Launcher.java:44)

-- System Details --
Details:
Minecraft Version: 1.13.2
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_51, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 666321608 bytes (635 MB) / 1232076800 bytes (1175 MB) up to 5965348864 bytes (5689 MB)
JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx6400m -Xms256m -XX:PermSize=256m
FML: New FML!
Loaded coremods (and transformers): Nothing
Launched Version: forge-25.0.219
LWJGL: 3.1.6 build 14
OpenGL: Intel(R) HD Graphics 4400 GL version 4.2.0 - Build 10.18.10.3412, Intel
GL Caps: Using GL 1.3 multitexturing.
Using GL 1.3 texture combiners.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Shaders are available because OpenGL 2.1 is supported.
VBOs are available because OpenGL 1.5 is supported.

Using VBOs: Yes
Is Modded: Definitely; Client brand changed to 'forge'
Type: Client (map_client.txt)
Resource Packs: vanilla, file/Clarity+1.13.zip, file/3D-Seasons-Changing-1.13-V2.0.zip
Current Language: ~~ERROR~~ NullPointerException: null
Profiler Position: N/A (disabled)
CPU: 4x Intel(R) Core(TM) i3-4160 CPU @ 3.60GHz
[13:56:11] [Client thread/INFO]: [net.minecraft.init.Bootstrap:func_179870_a:467]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Void\Documents\Curse\Minecraft\Instances\yote survival\crash-reports\crash-2019-06-28_13.56.11-client.txt

Welp, have fun lads...PM me when you find thy fix or problamo.
1
06/24/2019 12:21 am
Level 1 : New Explorer
lma00
lma00's Avatar
Can anyone please help me? I have 7 mods in my game but it seems that the only ones giving me trouble are the Minecraft comes alive and radixcore. My game launches but as soon as I try to load my world it crashes.

---- Minecraft Crash Report ----
// Sorry :(

Time: 6/23/19 8:51 PM
Description: Exception in server tick loop

java.lang.NoSuchFieldError: isRemote
at radixcore.core.RadixEvents.entitySpawnedEvent(RadixEvents.java:81)
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_48_RadixEvents_entitySpawnedEvent_EntityJoinWorldEvent.invoke(.dynamic)
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90)
at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:182)
at net.minecraft.world.WorldServer.func_175650_b(WorldServer.java:1065)
at net.minecraft.world.chunk.Chunk.func_76631_c(Chunk.java:860)
at net.minecraftforge.common.chunkio.ChunkIOProvider.syncCallback(ChunkIOProvider.java:109)
at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:94)
at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:118)
at net.minecraft.world.gen.ChunkProviderServer.func_186028_c(ChunkProviderServer.java:89)
at net.minecraft.world.gen.ChunkProviderServer.func_186025_d(ChunkProviderServer.java:135)
at net.minecraft.server.MinecraftServer.func_71222_d(MinecraftServer.java:344)
at net.minecraft.server.integrated.IntegratedServer.func_71247_a(IntegratedServer.java:142)
at net.minecraft.server.integrated.IntegratedServer.func_71197_b(IntegratedServer.java:156)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486)
at java.lang.Thread.run(Thread.java:745)


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

-- System Details --
Details:
Minecraft Version: 1.12.2
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_51, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 524525840 bytes (500 MB) / 838860800 bytes (800 MB) up to 2147483648 bytes (2048 MB)
JVM Flags: 8 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx2G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M
IntCache: cache: 11, tcache: 0, allocated: 13, tallocated: 95
FML: MCP 9.42 Powered by Forge 14.23.5.2838 7 mods loaded, 7 mods active
States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored

| State | ID | Version | Source | Signature |
|:------ |:--------- |:------------ |:------------------------------ |:---------------------------------------- |
| LCHIJA | minecraft | 1.12.2 | minecraft.jar | None |
| LCHIJA | mcp | 9.42 | minecraft.jar | None |
| LCHIJA | FML | 8.0.99.99 | forge-1.12.2-14.23.5.2838.jar | e3c3d50c7c986df74c645c0ac54639741c90a557 |
| LCHIJA | forge | 14.23.5.2838 | forge-1.12.2-14.23.5.2838.jar | e3c3d50c7c986df74c645c0ac54639741c90a557 |
| LCHIJA | cfm | 6.3.0 | cfm-6.3.0-mc1.12.2.jar | None |
| LCHIJA | mca | 6.0.0-beta | MCA-1.12.jar | None |
| LCHIJA | radixcore | 1.12-2.3.0 | RadixCore-1.12-2.2.0-deobf.jar | None |

Loaded coremods (and transformers):
GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.
Profiler Position: N/A (disabled)
Player Count: 0 / 8; []
Type: Integrated Server (map_client.txt)
Is Modded: Definitely; Client brand changed to 'fml,forge'
1
04/16/2019 5:32 pm
Level 1 : New Miner
RipTheShrimp
RipTheShrimp's Avatar
You think it is frustrating installing a new mod, think about making a mod and it show up like that...
1
07/25/2018 2:13 pm
Level 1 : New Miner
nightow128
nightow128's Avatar
i need help this doesn't tell me anything about this kinda of crash ---- Minecraft Crash Report ----
// On the bright side, I bought you a teddy bear!

Time: 7/25/18 1:50 PM
Description: Exception in server tick loop

java.lang.IllegalArgumentException
at net.minecraft.util.WeightedRandom.func_76273_a(WeightedRandom.java:28)
at net.minecraft.util.WeightedRandom.func_76271_a(WeightedRandom.java:60)
at net.minecraft.world.SpawnerAnimals.func_77191_a(SpawnerAnimals.java:235)
at net.minecraft.world.gen.ChunkProviderGenerate.func_73153_a(ChunkProviderGenerate.java:424)
at net.minecraft.world.gen.ChunkProviderServer.func_73153_a(ChunkProviderServer.java:279)
at net.minecraft.world.chunk.Chunk.func_76624_a(Chunk.java:1055)
at net.minecraft.world.gen.ChunkProviderServer.originalLoadChunk(ChunkProviderServer.java:190)
at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:131)
at net.minecraft.world.gen.ChunkProviderServer.func_73158_c(ChunkProviderServer.java:101)
at net.minecraft.server.MinecraftServer.func_71222_d(MinecraftServer.java:265)
at net.minecraft.server.integrated.IntegratedServer.func_71247_a(IntegratedServer.java:78)
at net.minecraft.server.integrated.IntegratedServer.func_71197_b(IntegratedServer.java:92)
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 10 (amd64) version 10.0
Java Version: 1.8.0_51, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 364894400 bytes (347 MB) / 587202560 bytes (560 MB) up to 1073741824 bytes (1024 MB)
JVM Flags: 8 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx1G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=16M
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
IntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 95
FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1614 28 mods loaded, 28 mods active
States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
UCHIJAA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)
UCHIJAA FML{7.10.99.99} [Forge Mod Loader] (forge-1.7.10-10.13.4.1614-1.7.10.jar)
UCHIJAA Forge{10.13.4.1614} [Minecraft Forge] (forge-1.7.10-10.13.4.1614-1.7.10.jar)
UCHIJAA CodeChickenCore{1.0.7.47} [CodeChicken Core] (minecraft.jar)
UCHIJAA ivtoolkit{1.2.1} [IvToolkit] (minecraft.jar)
UCHIJAA NotEnoughItems{1.0.5.120} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.5.120-universal.jar)
UCHIJAA FastCraft{1.23} [FastCraft] (fastcraft-1.23.jar)
UCHIJAA battlegear2{1.7.10} [Mine & Blade Battlegear 2 - Bullseye] (1.7.10-MB_Battlegear2-Bullseye-1.0.8.3.jar)
UCHIJAA forgeendertech{1.7.10-1.9.2.0} [Forge Endertech] (ForgeEndertech-1.7.10-1.9.2.0-build.0061.jar)
UCHIJAA adhooks{1.7.10-2.1.1.0} [Advanced Hook Launchers] (AdHooks-1.7.10-2.1.1.0-build.0061.jar)
UCHIJAA Akazuki{0.1.1} [Akatsuki Mod] (Akatsuki-0.1.1.jar)
UCHIJAA armourersWorkshop{1.7.10-0.47.1} [Armourer's Workshop] (Armourers-Workshop-1.7.10-0.47.1.jar)
UCHIJAA plushieWrapper{0.0.0} [Plushie Wrapper] (Armourers-Workshop-1.7.10-0.47.1.jar)
UCHIJAA betterbuilderswands{0.8.1} [Better Builder's Wands] (BetterBuildersWands-0.8.1-1.7.10r92+aec06c3.jar)
UCHIJAA BiblioCraft{1.11.7} [BiblioCraft] (BiblioCraft[v1.11.7][MC1.7.10].jar)
UCHIJAA CarpentersBlocks{3.3.8.1} [Carpenter's Blocks] (Carpenters-Blocks-Mod-1.7.10.jar)
UCHIJAA cfm{3.4.8} [§9MrCrayfish's Furniture Mod] (cfm-3.4.8-mc1.7.10 (1).jar)
UCHIJAA customnpcs{1.7.10d} [CustomNpcs] (CustomNPCs_1.7.10d(21feb16).jar)
UCHIJAA DamageIndicatorsMod{3.2.0} [Damage Indicators] (Damage-Indicators-Mod-1.7.10.jar)
UCHIJAA forbiddenmod{1.0.21} [forbiddenmod] (ForbiddenMod-v1.0.3.jar)
UCHIJAA gvc{0.6.1} [§aGliby's§f Voice Chat Mod] (GlibysVC-1.7.10-0.6.2a.jar)
UCHIJAA inventorytweaks{1.59-dev-152-cf6e263} [Inventory Tweaks] (InventoryTweaks-1.59-dev-152.jar)
UCHIJAA journeymap{5.1.4p2} [JourneyMap] (journeymap-1.7.10-5.1.4p2-unlimited.jar)
UCHIJAA AM{1.0.0} [Naruto Mod] (Naruto-Anime-Mod_V0.9.16_Beta_1.7.10-1.0.jar)
UCHIJAA examplemod{1.0} [examplemod] (Shinobis-BETA-1.3.jar)
UCHIJAA ShinobiMod{1.0.1} [Shinobi Mod] (Shinobis-BETA-1.3.jar)
UCHIJAA AnimationAPI{1.2.4} [AnimationAPI] (Shinobis-BETA-1.3.jar)
UCHIJAA AnimationExample{1.0.0} [Animation Example] (Shinobis-BETA-1.3.jar)
GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.
Armourer's Workshop:
Render Type: MODEL_ATTACHMENT
Texture Render: false
Baking Queue: 0
Request Queue: 0
Texture Painting: true
Multipass Skin Rendering: true
Profiler Position: N/A (disabled)
Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
Player Count: 0 / 8; []
Type: Integrated Server (map_client.txt)
Is Modded: Definitely; Client brand changed to 'fml,forge'
1
07/01/2018 3:16 am
Level 1 : New Miner
Eclipse208
Eclipse208's Avatar
if you like crash reports, maybe you could help me out. no matter what i tryed, even removing mods, did nothing. the game (1.12.2) works with on mods. i keep getting the following all the time.

The game crashed whilst initializing game
Error: java.lang.NoClassDefFoundError: net/minecraftforge/fml/common/registry/IForgeRegistryEntry

and here is the crash report. what is going on and how can i fix it? i've had it this happening to on bloody end.

---- Minecraft Crash Report ----

WARNING: coremods are present:
MicdoodlePlugin (MicdoodleCore-1.12.2.jar)
MalisisSwitchesPlugin (MalisisSwitches-Mod-1.12.2.jar)
CXLibraryCore (CXLibrary-1.12.1.jar)
HammerCoreCore (HammerCore-1.12.2-1.9.9.17.jar)
LoadingPlugin (Blood-Moon-Mod-1.12.2.jar)
NWRTweak (Redstone-Paste-Mod-1.12.1.jar)
ForgelinPlugin (Shadowfacts-Forgelin-1.12.2.jar)
CoreModBase (Shulker-Box-Viewer-Mod-1.12.2.jar)
llibrary (llibrary-core-1.0.6-1.12.2.jar)
MalisisCorePlugin (MalisisCore-1.12.2.jar)
CoreMod (Aroma1997Core-1.12.2.jar)
Contact their authors BEFORE contacting forge

// Oh - I know what I did wrong!

Time: 7/1/18 7:12 PM
Description: Initializing game

java.lang.NoClassDefFoundError: net/minecraftforge/fml/common/registry/IForgeRegistryEntry
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:348)
at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:528)
at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)
at com.google.common.eventbus.EventBus.post(EventBus.java:217)
at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:218)
at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:196)
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:497)
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)
at com.google.common.eventbus.EventBus.post(EventBus.java:217)
at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:135)
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:593)
at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:225)
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:466)
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:377)
at net.minecraft.client.main.Main.main(SourceFile:123)
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:497)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
Caused by: java.lang.ClassNotFoundException: net.minecraftforge.fml.common.registry.IForgeRegistryEntry
at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 38 more
Caused by: java.lang.NullPointerException


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

-- Head --
Thread: Client thread
Stacktrace:
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:348)
at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:528)
at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)
at com.google.common.eventbus.EventBus.post(EventBus.java:217)
at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:218)
at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:196)
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:497)
at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)
at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)
at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)
at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)
at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)
at com.google.common.eventbus.EventBus.post(EventBus.java:217)
at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:135)
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:593)
at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:225)
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:466)

-- Initialization --
Details:
Stacktrace:
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:377)
at net.minecraft.client.main.Main.main(SourceFile:123)
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:497)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

-- System Details --
Details:
Minecraft Version: 1.12.2
Operating System: Windows 8.1 (amd64) version 6.3
Java Version: 1.8.0_51, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 220992816 bytes (210 MB) / 570425344 bytes (544 MB) up to 1073741824 bytes (1024 MB)
JVM Flags: 8 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx1G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=16M
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: MCP 9.42 Powered by Forge 14.23.4.2725 107 mods loaded, 107 mods active
States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored

| State | ID | Version | Source | Signature |
|:----- |:-------------------- |:----------------- |:--------------------------------------- |:---------------------------------------- |
| UC | minecraft | 1.12.2 | minecraft.jar | None |
| UC | mcp | 9.42 | minecraft.jar | None |
| UC | FML | 8.0.99.99 | forge-1.12.2-14.23.4.2725.jar | e3c3d50c7c986df74c645c0ac54639741c90a557 |
| UC | forge | 14.23.4.2725 | forge-1.12.2-14.23.4.2725.jar | e3c3d50c7c986df74c645c0ac54639741c90a557 |
| UC | micdoodlecore | | minecraft.jar | None |
| UC | xray | 1.4.0 | Advanced-XRay-Mod-1.12.2.jar | None |
| UC | anima | 0.2.1 | Anima-Mundi-Mod-1.12.jar | None |
| UC | aroma1997core | 2.0.0.0.b147 | Aroma1997Core-1.12.2.jar | dfbfe4c473253d8c5652417689848f650b2cbe32 |
| UC | betterbuilderswands | 0.11.1 | Better-Builders-Wands-Mod-1.12.jar | None |
| UC | betterquesting | 3.5.238 | Better-Questing-Mod-1.12.2.jar | None |
| UC | betterbedrockgen | 6.0.2 | BetterBedrockGen-Mod-1.12.1.jar | None |
| UC | birdsfoods | 2.5 [1.12] | Birds-Foods-Mod-1.12.jar | None |
| UC | birdsnests | 2.0.0 | Birds-Nests-Mod-1.12.2.jar | None |
| UC | bloodmoon | 1.5.3 | Blood-Moon-Mod-1.12.2.jar | d72e0dd57935b3e9476212aea0c0df352dd76291 |
| UC | candymod | 0.2.2 | Candy-World-Mod-1.12.2.jar | None |
| UC | cavern | 1.10.2 | Cavern_1.12.1-v1.10.2.jar | None |
| UC | cheesemod | 5.1 | Cheese-Mod-1.12.2.jar | None |
| UC | clayworldgen | 1.1.0-1.12 | Clay-WorldGen-Mod-1.12.jar | None |
| UC | colored_water | 1.12.2-b35 | Colorful-Water-Mod-1.12.2.jar | None |
| UC | compression | 1.2.3 | Compression-Mod-1.12.1.jar | None |
| UC | cookingforblockheads | 6.3.6 | Cooking-for-Blockheads-Mod-1.12.1.jar | None |
| UC | craftingautomat | 1.0.0 | Crafting-Automat-Mod-1.12.2.jar | None |
| UC | craftingex | 1.2.0 | Crafting-EX-Mod-1.12.2.jar | None |
| UC | craftingcraft | 6.1.3 | CraftingCraft-Mod-1.12.1.jar | None |
| UC | cxlibrary | 1.6.1 | CXLibrary-1.12.1.jar | None |
| UC | cyclopscore | 0.11.6 | CyclopsCore-1.12.2-0.11.6.jar | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |
| UC | densemetals | 1.0.1 | Dense-Metals-Mod-1.12.2.jar | None |
| UC | trzlib | 2.1.8 | TRZLib-1.12.2.jar | None |
| UC | dimensionalpocketsii | 1.2.10-beta | Dimensional-Pockets-2-Mod-1.12.2.jar | None |
| UC | aroma1997sdimension | 2.0.0.0.b58 | Dimensional-World-Mod-1.12.1.jar | None |
| UC | dbzmod | 1.0 | Dragon-Ball-Mod-1.12.2.jar | None |
| UC | ediblebugs | 1.6.0.2512 | Edible-Bugs-Mod-1.12.2.jar | None |
| UC | tekdrone | 1.0.0 | EZDrones-Mod-1.12.2.jar | None |
| UC | factinventory | 1.1 | Fact-Inventory-Mod-1.12.2.jar | None |
| UC | fastleafdecay | v14 | FastLeafDecay-Mod-1.12.1.jar | None |
| UC | giacomos_fishing_net | 1.6 | Fishing-Net-Mod-1.12.2.jar | None |
| UC | flopper | 1.0.0 | Flopper-Mod-1.12.2.jar | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |
| UC | friendlyfire | 1.5.8 | Friendly-Fire-Mod-1.12.2.jar | d476d1b22b218a10d845928d1665d45fce301b27 |
| UC | silentlib | 2.2.18 | SilentLib-1.12-2.2.18-100.jar | None |
| UC | funores | 1.5.7 | FunOres-1.12-1.5.7-118.jar | None |
| UC | limelib | 1.7.8 | LimeLib-1.12.1.jar | None |
| UC | furnus | 2.1.3 | Furnus-Mod-1.12.1.jar | None |
| UC | galacticraftcore | 4.0.1.121 | Galacticraft-Mod-1.12.2.jar | None |
| UC | gwgmcgenmod | 1.4 | gmcgenmod-mc1.12-v1.4.jar | None |
| UC | gravestone | 1.0.12 | Gravestone-Mod-1.12.jar | None |
| UC | gravestone-extended | 1.1.0 | Gravestone-Extended-Mod-1.12.2.jar | None |
| UC | hammercore | 1.9.9.17 | HammerCore-1.12.2-1.9.9.17.jar | 4d7b29cd19124e986da685107d16ce4b49bc0a97 |
| UC | howlingmoon | 0.9 | Howling-Moon-Mod-1.12.2.jar | None |
| UC | hud | 1.3.9 | hud-1.3.9-1.12.jar | None |
| UC | ism | 2.0.0 MC-1.12.2 | Instant-Structures-Mod-1.12.2.jar | None |
| UC | inventoryneko | ${version} | InventoryNeko-Mod-1.12.2.jar | None |
| UC | ironchest | 1.12.2-7.0.40.824 | Iron-Chests-Mod-1.12.2.jar | None |
| UC | kindredlegacy | 1.12.2-pre-1.2_1 | Kindred-Legacy-Mod-1.12.2.jar | None |
| UC | fluidtank | 2.5 | LargeFluidTank-2.5.jar | 617a4e95f0af9de5402bb9883abe0f53a6bfa230 |
| UC | shadowmc | 3.8.0 | ShadowMC-1.12.jar | None |
| UC | leveluphp | 1.1.1 | Level-Up-HP-Mod-1.12.2.jar | None |
| UC | levelup2 | ${version} | Level-Up-Mod-1.12.2.jar | None |
| UC | lucky | 7.5.0 | Lucky-Block-Mod-1.12.zip | None |
| UC | malisiscore | 1.12.2-6.4.0 | MalisisCore-1.12.2.jar | None |
| UC | malisisblocks | 1.12.2-6.1.0 | MalisisBlocks-Mod-1.12.2.jar | None |
| UC | malisisswitches | 1.12.2-5.1.0 | MalisisSwitches-Mod-1.12.2.jar | None |
| UC | mantle | 1.12-1.3.2.24 | Mantle-1.12-1.3.2.24.jar | None |
| UC | mapwriter | 2.8.1 | MapWriter-1.12.2-2.8.1.jar | None |
| UC | mcjtylib_ng | 3.0.2 | mcjtylib-1.12-3.0.2.jar | None |
| UC | metalchests | v1.0.8.ga8b69a5 | MetalChests-Mod-1.12.2.jar | None |
| UC | morefuelsmod | 1.6.2 | More-Fuels-Mod-1.12.2.jar | None |
| UC | multipagechest | 1.9.0 | Multi-Page-Chest-Mod-1.12.jar | None |
| UC | natura | 1.12-4.3.0.17 | Natura-Mod-1.12.1.jar | None |
| UC | nice | 0.1.0 | NICE-Mod-1.12.jar | None |
| UC | samsocean | 1.0.1 | Ocean-Floor-Mod-1.12.2.jar | None |
| UC | elevatorid | 1.3.5 | OpenBlocks-Elevator-Mod-1.12.2.jar | None |
| UC | orecanes | 1.3.0 | Ore-Canes-Mod-1.12.2.jar | None |
| UC | oreshrubs | 1.4.1 | Ore-Shrubs-Mod-1.12.2.jar | None |
| UC | oretweaker | 1.0.2-1.12.0 | Ore-Tweaker-Mod-1.12.1.jar | None |
| UC | pxlmc | 1.0.3 | PearXLibMC-1.12.1-1.0.3.jar | None |
| UC | petbat | 1.4.7 | Pet-Bat-Mod-1.12.2.jar | None |
| UC | playerstorage | 1.2.3 | Player-Storage-Mod-1.12.2.jar | None |
| UC | randomutilities | 5.0.2 | Random+Utilities-1.12-5.0.2.jar | None |
| UC | llibrary | 1.7.14 | llibrary-1.7.14-1.12.2.jar | b9f30a813bee3b9dd5652c460310cfcd54f6b7ec |
| UC | rotd | 1.2 | Realm-of-The-Dragons-Mod-1.12.2.jar | None |
| UC | redstonepaste | 1.7.5 | Redstone-Paste-Mod-1.12.1.jar | None |
| UC | redstoneflux | 2.0.2 | RedstoneFlux-1.12-2.0.2.3-universal.jar | 8a6abf2cb9e141b866580d369ba6548732eff25f |
| UC | roguelike | 1.7.2 | Roguelike-Dungeons-Mod-1.12.2.jar | None |
| UC | roost | 1.1.0 | Roost-Mod-1.12.2.jar | None |
| UC | seeddrop | 1.1.0-1.12 | Seed-Drop-Mod-1.12.jar | None |
| UC | forgelin | 1.5.1 | Shadowfacts-Forgelin-1.12.2.jar | None |
| UC | shulkerboxviewer | 1.5 | Shulker-Box-Viewer-Mod-1.12.2.jar | None |
| UC | shulkerbox | 1.3.0 | shulkerbox-1.3.0.jar | None |
| UC | simplemagnet | 1.12.0-1.2.6 | simplemagnet-1.12.2-1.2.10.jar | None |
| UC | simplyconveyors | 3.0.6 | Simply-Conveyors-Mod-1.12.2.jar | None |
| UC | skylands | 1.5.5 | Sky-Islands-Mod-1.12.2.jar | None |
| UC | solarfluxreborn | 3.50r | SolarFluxReborn_1.12.2-3.50r.jar | None |
| UC | spawnercraft | 4.0.0 | SpawnerCraft+1.12-4.0.0.jar | None |
| UC | stacksize | 1.1 | stacksize-1.12.2-1.0.jar | None |
| UC | subcommonlib | 1.2.0.1 | SubLib-1.12.2.jar | None |
| UC | telepads | 1.11.2-1.0.2.1 | TelePads-Mod-1.12.2.jar | None |
| UC | teleporto | 1.0.3 | Teleporto-1.12.1-1.0.3.jar | None |
| UC | thespotlightmod | 1.2.0.101 | The-Spotlight-Mod-1.12.2.jar | None |
| UC | theoneprobe | 1.4.23 | theoneprobe-1.12-1.4.23.jar | None |
| UC | muchmorechickens | 1.7 | TMC-1.12-1.7.jar | None |
| UC | torchmaster | 1.6.4.62 | TorchMaster-Mod-1.12.2.jar | 5e9a436b366831c8f54a7e80b015784da69278c6 |
| UC | uppers | 0.0.4 | Uppers-Mod-1.12.2.jar | None |
| UC | waterstrainer | 3.2.0 | Water-Strainer-Mod-1.12.1.jar | None |
| UC | waterfreefarming | 2.0.5 | waterfreefarming-2.0.5.jar | None |
| U | wholetreeaxe | 1.7.0 | Whole-Tree-Axe-Mod-1.12.jar | None |
| U | worldtooltips | 1.2.5 | World-Tooltips-Mod-1.12.2.jar | None |
| U | xnet | 1.6.8 | XNet-Mod-1.12.2.jar | None |

Loaded coremods (and transformers):
MicdoodlePlugin (MicdoodleCore-1.12.2.jar)
micdoodle8.mods.miccore.MicdoodleTransformer
MalisisSwitchesPlugin (MalisisSwitches-Mod-1.12.2.jar)

CXLibraryCore (CXLibrary-1.12.1.jar)
cubex2.cxlibrary.CoreModTransformer
HammerCoreCore (HammerCore-1.12.2-1.9.9.17.jar)
com.pengu.hammercore.asm.HammerCoreTransformer
LoadingPlugin (Blood-Moon-Mod-1.12.2.jar)
lumien.bloodmoon.asm.ClassTransformer
NWRTweak (Redstone-Paste-Mod-1.12.1.jar)
net.fybertech.nwr.NWRTransformer
ForgelinPlugin (Shadowfacts-Forgelin-1.12.2.jar)

CoreModBase (Shulker-Box-Viewer-Mod-1.12.2.jar)
com.dazo66.shulkerboxshower.asm.MainTransformer
llibrary (llibrary-core-1.0.6-1.12.2.jar)
net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer
net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher
MalisisCorePlugin (MalisisCore-1.12.2.jar)

CoreMod (Aroma1997Core-1.12.2.jar)

GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 388.73' Renderer: 'GeForce GT 705/PCIe/SSE2'
Hammer Core Information: FluidDictionary Info: Registered 2 fluids.
OreDictionary Info: Registered 137 names; 170 stacks.
Pastebin Connection: Okay.
Pulsar/natura loaded Pulses:
- NaturaCommons (Enabled/Forced)
- NaturaOverworld (Enabled/Not Forced)
- NaturaNether (Enabled/Not Forced)
- NaturaDecorative (Enabled/Not Forced)
- NaturaTools (Enabled/Not Forced)
- NaturaEntities (Enabled/Not Forced)
- NaturaOredict (Enabled/Forced)
- NaturaWorld (Enabled/Not Forced)

Launched Version: 1.12.2-forge1.12.2-14.23.4.2725
LWJGL: 2.9.4
OpenGL: GeForce GT 705/PCIe/SSE2 GL version 4.6.0 NVIDIA 388.73, NVIDIA Corporation
GL Caps: Using GL 1.3 multitexturing.
Using GL 1.3 texture combiners.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Shaders are available because OpenGL 2.1 is supported.
VBOs are available because OpenGL 1.5 is supported.

Using VBOs: Yes
Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Resource Packs:
Current Language: English (US)
Profiler Position: N/A (disabled)
CPU: 4x Intel(R) Core(TM) i5-4460 CPU @ 3.20GHz
1
04/28/2018 12:21 pm
Level 20 : Expert Goblin
RenderBones
RenderBones's Avatar
i removed and uninstalled mc. When starting mc back up it would say "Unable to fit: minecraft:blocks/lava_flow - size: 32x32" Is this a texture problem? I haven't put in any textures so how would i fix this? Since the game won't start, i don't have a options.txt file.
Planet Minecraft

Website

© 2010 - 2024
www.planetminecraft.com

Welcome