LLibrary is a small mod that contains shared code for other mods.
- Advanced animation api and other animation tools
- Lightweight ASM utilities
- Easy-to-use structure tools
- Expandable command builder
- More player render events, allowing for custom player animation
- Powerful entity data handlers
- Beautiful GUI framework
- More!
LLibrary is very easy to integrate into your own mod. All you have to do is adding it as dependency in the build file.
Here's a snippet you can copy-paste:
repositories {
maven {
url "https://maven.mcmoddev.com/"
}
}
dependencies {
deobfCompile "net.ilexiconn:llibrary:1.7.19-1.12.2"
}
If LLibrary is not added to your project when you run your gradle script, make sure you have Java 8u102 or higher installed!
It's also recommended that you add LLibrary to the dependencies. This makes sure the user has LLibrary installed and that it's the correct version. You can do that like this:
@Mod(dependencies = "required-after:llibrary@[1.7.19,)")
Note that the actual in-game LLibrary version does NOT contain the Minecraft version.
All modpack authors have permission to add LLibrary to their pack. Please do NOT package LLibrary with your mod.
If you're a modder and interested in using LLibrary, you can go to the LLibrary Wiki for guides on how to use most of its features.
LLibrary comes with a few visual changes. First of all, it adds the mod name of the selected item to tooltips. In 1.7.10, it also adds the modid and registry name when advanced tooltips are enabled.
LLibrary also adds snackbars. This is a small notification on the bottom of your screen.
Patrons receive a player effect. Every user with LLibrary 1.2.0+ installed can see these.
Hi,i'm trying to install LLibrary in my mod. but when i run the gradlew build nothing changes in my mod, i have java 1.8.0_241 and my mod is on 1.12.2. how can i fix it?
I supposedly need this for Mowzie's mobs mod but for whatever reason it just keeps crashing.
---- Minecraft Crash Report ----
WARNING: coremods are present:
llibrary (llibrary-core-1.0.11-1.12.2.jar)
Contact their authors BEFORE contacting forge
// Uh... Did I do that?
Time: 1/10/21 2:39 AM
Description: Initializing game
java.lang.NoClassDefFoundError: cpw/mods/fml/common/network/IGuiHandler
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:348)
at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:539)
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.sendEventToModContainer(LoadController.java:219)
at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197)
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:136)
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595)
at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:232)
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(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: cpw.mods.fml.common.network.IGuiHandler
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)
... 39 more
Caused by: java.lang.NullPointerException
at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182)
... 41 more
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:539)
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.sendEventToModContainer(LoadController.java:219)
at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197)
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:136)
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595)
at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:232)
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(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 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: 610268408 bytes (581 MB) / 872415232 bytes (832 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: 0, tcache: 0, allocated: 0, tallocated: 0
FML: MCP 9.42 Powered by Forge 14.23.5.2854 18 mods loaded, 18 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 |
|:----- |:--------------- |:----------------- |:--------------------------------------------- |:---------------------------------------- |
| LC | minecraft | 1.12.2 | minecraft.jar | None |
| LC | mcp | 9.42 | minecraft.jar | None |
| LC | FML | 8.0.99.99 | forge-1.12.2-14.23.5.2854.jar | e3c3d50c7c986df74c645c0ac54639741c90a557 |
| LC | forge | 14.23.5.2854 | forge-1.12.2-14.23.5.2854.jar | e3c3d50c7c986df74c645c0ac54639741c90a557 |
| LC | baubles | 1.5.2 | Baubles-1.12-1.5.2.jar | None |
| LC | bibliocraft | 2.4.5 | BiblioCraft[v2.4.5][MC1.12.2].jar | None |
| LC | botania | r1.10-363 | Botania+r1.10-363.jar | None |
| LC | cfm | 6.3.1 | furniture-6.3.1-1.12.2.jar | None |
| LC | waila | 1.8.26 | Hwyla-1.8.26-B41_1.12.2.jar | None |
| LC | journeymap | 1.12.2-5.7.1 | journeymap-1.12.2-5.7.1.jar | None |
| LC | mantle | 1.12-1.3.3.55 | Mantle-1.12-1.3.3.55.jar | None |
| LC | llibrary | 1.7.20 | llibrary-1.7.20-1.12.2.jar | b9f30a813bee3b9dd5652c460310cfcd54f6b7ec |
| LC | mowziesmobs | 1.5.8 | mowziesmobs-1.5.8.jar | None |
| LC | harvestcraft | 1.12.2zb | Pam's+HarvestCraft+1.12.2zg.jar | None |
| LC | scp | 2.3.1 | SCP+Lockdown-1.12.2-2.3.1-dev.jar | None |
| L | twilightforest | 3.11.1021 | twilightforest-1.12.2-3.11.1021-universal.jar | None |
| L | tconstruct | 1.12.2-2.13.0.183 | TConstruct-1.12.2-2.13.0.183.jar | None |
| L | matteroverdrive | 0.7.0.0 | MatterOverdrive-1.12.2-0.7.1.0-universal.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
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 461.09' Renderer: 'GeForce GTX 1050/PCIe/SSE2'
Launched Version: 1.12.2-forge-14.23.5.2854
LWJGL: 2.9.4
OpenGL: GeForce GTX 1050/PCIe/SSE2 GL version 4.6.0 NVIDIA 461.09, 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: vanilla, mod_resources, file/Dramatic+Sky+for+1.16++(1).zip, file/FaithfulHDx512_1.16.zip
Current Language: English (US)
Profiler Position: N/A (disabled)
CPU: 8x AMD Ryzen 5 2400G with Radeon Vega Graphics
Mod is crashing for me
This is the crash log:
The game crashed whilst initializing game
Error: java.lang.RuntimeException: One of more entry values did not copy to the correct id. Check log for details!
Kod zakończenia: -1
---- Minecraft Crash Report -------- Minecraft Crash Report ----
WARNING: coremods are present: llibrary (llibrary-core-1.0.11-1.12.2.jar)Contact their authors BEFORE contacting forge
// You're mean.
Time: 12/29/20 2:58 AMDescription: Initializing game
java.lang.RuntimeException: One of more entry values did not copy to the correct id. Check log for details! at net.minecraftforge.registries.ForgeRegistry.sync(ForgeRegistry.java:549) at net.minecraftforge.registries.GameData.loadRegistry(GameData.java:596) at net.minecraftforge.registries.GameData.freezeData(GameData.java:249) at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:758) at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:336) at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:535) 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(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)
A detailed walkthrough of the error, its code path and all known details is as follows:---------------------------------------------------------------------------------------
-- Head --Thread: Client threadStacktrace: at net.minecraftforge.registries.ForgeRegistry.sync(ForgeRegistry.java:549) at net.minecraftforge.registries.GameData.loadRegistry(GameData.java:596) at net.minecraftforge.registries.GameData.freezeData(GameData.java:249) at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:758) at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:336) at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:535)
-- 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(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 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: 242372664 bytes (231 MB) / 1275068416 bytes (1216 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: 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 22 mods loaded, 22 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.2847.jar | None | | LCHIJA | forge | 14.23.5.2847 | forge-1.12.2-14.23.5.2847.jar | None | | LCHIJA | antiqueatlas | 4.6.3 | antiqueatlas-1.12.2-4.6.3.jar | None | | LCHIJA | antiqueatlasoverlay | 1.2 | antiqueatlas-1.12.2-4.6.3.jar | None | | LCHIJA | bookworm | 1.12.2-2.5.2.1 | bookworm-1.12.2-2.5.2.1.jar | None | | LCHIJA | carryon | 1.12.2 | CarryOn+MC1.12.2+v1.12.2.jar | 55e88f24d04398481ae6f1ce76f65fd776f14227 | | LCHIJA | llibrary | 1.7.19 | llibrary-1.7.19-1.12.2.jar | b9f30a813bee3b9dd5652c460310cfcd54f6b7ec | | LCHIJA | fossil | 8.0.4 | fossilsarcheology-8.0.4.jar | None | | LCHIJA | waila | 1.8.26 | Hwyla-1.8.26-B41_1.12.2.jar | None | | LCHIJA | jei | 4.15.0.289 | jei_1.12.2-4.15.0.289.jar | None | | LCHIJA | lycanitesmobs | 2.0.1.2 - MC 1.12.2 | lycanitesmobs-1.12.2-2.0.1.2.jar | None | | LCHIJA | neat | 1.4-17 | Neat+1.4-17.jar | None | | LCHIJA | prehistoricspawns | 1.0 | prehistoricspawns-1.1.jar | None | | LCHIJA | somanyenchantments | 0.5.0 | SoManyEnchantments-0.5.0.jar | None | | LCHIJA | spartanweaponry | beta 1.3.8 | SpartanWeaponry-1.12.2-beta-1.3.8.jar | None | | LCHIJA | toughasnails | 3.1.0.139 | ToughAsNails-1.12.2-3.1.0.139-universal.jar | None | | LCHIJA | waystones | 4.1.0 | Waystones_1.12.2-4.1.0.jar | None | | LCHIJA | wearablebackpacks | 3.1.4 | WearableBackpacks-1.12.2-3.1.4.jar | None | | LCHIJA | zawa | 1.12.2-2.1.0 | zawa-1.12.2-2.1.0.jar | 3ee471ded1bba54aa82f4f5ca5ca82dd67b8ef42 | | LCHIJA | orelib | 3.6.0.1 | OreLib-1.12.2-3.6.0.1.jar | 7a2128d395ad96ceb9d9030fbd41d035b435753a |
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 GL info: ' Vendor: 'Intel' Version: '4.5.0 - Build 24.20.100.6344' Renderer: 'Intel(R) UHD Graphics 620' Launched Version: 1.12.2-forge1.12.2-14.23.5.2847 LWJGL: 2.9.4 OpenGL: Intel(R) UHD Graphics 620 GL version 4.5.0 - Build 24.20.100.6344, 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 'fml,forge' Type: Client (map_client.txt) Resource Packs: vanilla, file/VanillaTweaks_r928038.zip Current Language: English (US) Profiler Position: N/A (disabled) CPU: 8x Intel(R) Core(TM) i5-8250U CPU @ 1.60GHz OptiFine Version: OptiFine_1.12.2_HD_U_F5 OptiFine Build: 20191204-141934 Render Distance Chunks: 7 Mipmaps: 4 Anisotropic Filtering: 1 Antialiasing: 0 Multitexture: false Shaders: null OpenGlVersion: 4.5.0 - Build 24.20.100.6344 OpenGlRenderer: Intel(R) UHD Graphics 620 OpenGlVendor: Intel CpuCount: 8
---- Minecraft Crash Report -------- Minecraft Crash Report ----
WARNING: coremods are present: Inventory Tweaks Coremod (InventoryTweaks-1.64+dev.151.jar) llibrary (llibrary-core-1.0.11-1.12.2.jar) SSLoadingPlugin (SereneSeasons-1.12.2-1.2.18-universal.jar) PhosphorFMLLoadingPlugin (phosphor-1.12.2-0.2.6+build50.jar) TransformLoader (DynamicSurroundings-1.12.2-3.6.2.1.jar) iceandfire (iceandfire-1.9.1-1.12.2.jar)Contact their authors BEFORE contacting forge
// I let you down. Sorry :(
Time: 12/11/20 1:43 AMDescription: There was a severe problem during mod loading that has caused the game to fail
net.minecraftforge.fml.common.LoaderExceptionModCrash: Caught exception from §3Dynamic Surroundings (dsurround)Caused by: java.lang.ExceptionInInitializerError at org.orecruncher.dsurround.registry.RegistryManager.initialize(RegistryManager.java:103) at org.orecruncher.dsurround.proxy.Proxy.loadCompleted(Proxy.java:92) at org.orecruncher.dsurround.ModBase.loadCompleted(ModBase.java:178) 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.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:637) at sun.reflect.GeneratedMethodAccessor8.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:219) at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) 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:136) at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:757) at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:336) at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:535) 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(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.IllegalArgumentException: No enum constant net.minecraft.util.SoundCategory.DS_FOOTSTEPS at java.lang.Enum.valueOf(Enum.java:238) at net.minecraft.util.SoundCategory.valueOf(SourceFile:8) at org.orecruncher.dsurround.registry.sound.SoundRegistry.<clinit>(SoundRegistry.java:67) ... 43 more
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: 542744096 bytes (517 MB) / 2147483648 bytes (2048 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: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP 9.42 Powered by Forge 14.23.5.2854 38 mods loaded, 38 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.2854.jar | e3c3d50c7c986df74c645c0ac54639741c90a557 | | LCHIJA | forge | 14.23.5.2854 | forge-1.12.2-14.23.5.2854.jar | e3c3d50c7c986df74c645c0ac54639741c90a557 | | LCHIJA | orbis-lib | 0.2.0 | orbis-lib-1.12.2-0.2.0+build411.jar | db341c083b1b8ce9160a769b569ef6737b3f4cdf | | LCHIJA | aether | 0.3.0 | aether_ii-1.12.2-0.3.0+build411-universal.jar | db341c083b1b8ce9160a769b569ef6737b3f4cdf | | LCHIJA | backpack | 3.0.2 | backpack-3.0.2-1.12.2.jar | None | | LCHIJA | baubles | 1.5.2 | Baubles-1.12-1.5.2.jar | None | | LCHIJA | biomesoplenty | 7.0.1.2444 | BiomesOPlenty-1.12.2-7.0.1.2444-universal.jar | None | | LCHIJA | chameleon | 1.12-4.1.3 | Chameleon-1.12-4.1.3.jar | None | | LCHIJA | jei | 4.16.1.302 | jei_1.12.2-4.16.1.302.jar | None | | LCHIJA | phosphor-lighting | 1.12.2-0.2.6 | phosphor-1.12.2-0.2.6+build50.jar | f0387d288626cc2d937daa504e74af570c52a2f1 | | LCHIJA | cqrepoured | 2.1.3B | Chocolate_Quest_Repoured-1.12.2-2.1.3B (1).jar | None | | LCHIJA | mantle | 1.12-1.3.3.55 | Mantle-1.12-1.3.3.55.jar | None | | LCHIJA | thaumcraft | 6.1.BETA26 | Thaumcraft-1.12.2-6.1.BETA26.jar | None | | LCHIJA | twilightforest | 3.11.1021 | twilightforest-1.12.2-3.11.1021-universal.jar | None | | LCHIJA | tconstruct | 1.12.2-2.13.0.183 | TConstruct-1.12.2-2.13.0.183.jar | None | | LCHIJA | conarm | 1.2.5.9 | conarm-1.12.2-1.2.5.9.jar | 2484ef4d131fdc0dca0647aa21b7b944ddb935a1 | | LCHIJA | craftstudioapi | 1.0.0 | CraftStudio-1.0.0.93-mc1.12-alpha.jar | None | | LCHIJA | sereneseasons | 1.2.18 | SereneSeasons-1.12.2-1.2.18-universal.jar | None | | LCHIJA | orelib | 3.6.0.1 | OreLib-1.12.2-3.6.0.1.jar | 7a2128d395ad96ceb9d9030fbd41d035b435753a | | LCHIJE | dsurround | 3.6.2.1 | DynamicSurroundings-1.12.2-3.6.2.1.jar | 7a2128d395ad96ceb9d9030fbd41d035b435753a | | LCHIJ | ebwizardry | 4.3.1 | ElectroblobsWizardry-4.3.1-MC1.12.2.jar | None | | LCHIJ | extra_spells | 1.2.0 | ExtraSpells-1.12.2-1.2.0.jar | None | | LCHIJ | extrautils2 | 1.0 | extrautils2-1.12-1.9.9.jar | None | | LCHIJ | llibrary | 1.7.20 | llibrary-1.7.20-1.12.2.jar | b9f30a813bee3b9dd5652c460310cfcd54f6b7ec | | LCHIJ | iceandfire | 1.9.1 | iceandfire-1.9.1-1.12.2.jar | None | | LCHIJ | inventorytweaks | 1.64+dev.151.822d839 | InventoryTweaks-1.64+dev.151.jar | 55d2cd4f5f0961410bf7b91ef6c6bf00a766dcbe | | LCHIJ | ironchest | 1.12.2-7.0.67.844 | ironchest-1.12.2-7.0.72.847.jar | None | | LCHIJ | journeymap | 1.12.2-5.7.1 | journeymap-1.12.2-5.7.1.jar | None | | LCHIJ | plustic | @VERSION@ | plustic-8.0.2.jar | None | | LCHIJ | storagedrawers | 5.2.2 | StorageDrawers-1.12.2-5.4.2.jar | None | | LCHIJ | tektopia | 1.1.0 | tektopia-1.1.0.jar | None | | LCHIJ | tinkersarsenal | 1.0.0 | tinkersarsenal-0.6.0.jar | None | | LCHIJ | tinkersjei | 1.2 | tinkersjei-1.2.jar | None | | LCHIJ | tinkertoolleveling | 1.12.2-1.1.0.DEV.b23e769 | TinkerToolLeveling-1.12.2-1.1.0.jar | None | | LCHIJ | tombmanygraves | 1.12-4.2.0 | TombManyGraves-1.12-4.2.0.jar | None | | LCHIJ | wawla | 2.6.275 | Wawla-1.12.2-2.6.275.jar | d476d1b22b218a10d845928d1665d45fce301b27 |
Loaded coremods (and transformers): Inventory Tweaks Coremod (InventoryTweaks-1.64+dev.151.jar) invtweaks.forge.asm.ContainerTransformerllibrary (llibrary-core-1.0.11-1.12.2.jar) net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcherSSLoadingPlugin (SereneSeasons-1.12.2-1.2.18-universal.jar) sereneseasons.asm.transformer.EntityRendererTransformer sereneseasons.asm.transformer.WorldTransformerPhosphorFMLLoadingPlugin (phosphor-1.12.2-0.2.6+build50.jar) TransformLoader (DynamicSurroundings-1.12.2-3.6.2.1.jar) iceandfire (iceandfire-1.9.1-1.12.2.jar) com.github.alexthe666.iceandfire.patcher.IceAndFireRuntimePatcher GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 376.54' Renderer: 'GeForce GT 720/PCIe/SSE2' Pulsar/tconstruct loaded Pulses: - TinkerCommons (Enabled/Forced) - TinkerWorld (Enabled/Not Forced) - TinkerTools (Enabled/Not Forced) - TinkerHarvestTools (Enabled/Forced) - TinkerMeleeWeapons (Enabled/Forced) - TinkerRangedWeapons (Enabled/Forced) - TinkerModifiers (Enabled/Forced) - TinkerSmeltery (Enabled/Not Forced) - TinkerGadgets (Enabled/Not Forced) - TinkerOredict (Enabled/Forced) - TinkerIntegration (Enabled/Forced) - TinkerFluids (Enabled/Forced) - TinkerMaterials (Enabled/Forced) - TinkerModelRegister (Enabled/Forced)
plz help what
what's the problem
I know this is Fiskfile's Morbid Harvester mod that he made a few years ago but I still use it, for some reason I keep crashing no matter what even with llibrary installed, I even tried all the versions down to the minimum in case it needed a specific version but that didn't work. I even tried many times with no other mod installed besides this and llibrary and no dice. For some reason only ONCE did the mod actually run right and idk why it was strange. Any idea on why I keep getting this crash?
Put your spoiler
---- Minecraft Crash Report -------- Minecraft Crash Report ----// Why did you do that?
Time: 11/23/20 12:05 PMDescription: There was a severe problem during mod loading that has caused the game to fail
cpw.mods.fml.common.LoaderException: java.lang.NoClassDefFoundError: fiskfille/morbid/common/entity/EntityMorbidHarvester at cpw.mods.fml.common.LoadController.transition(LoadController.java:163) at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:559) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:243) at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:480) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:878) at net.minecraft.client.main.Main.main(SourceFile:148) 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)Caused by: java.lang.NoClassDefFoundError: fiskfille/morbid/common/entity/EntityMorbidHarvester at fiskfille.morbid.common.entity.ModEntities.register(ModEntities.java:9) at fiskfille.morbid.common.proxy.CommonProxy.preInit(CommonProxy.java:16) at fiskfille.morbid.common.proxy.ClientProxy.preInit(ClientProxy.java:15) at fiskfille.morbid.Morbid.preInit(Morbid.java:27) 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 cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:532) at sun.reflect.GeneratedMethodAccessor7.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190) 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 com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119) at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:556) ... 10 moreCaused by: java.lang.ClassNotFoundException: fiskfille.morbid.common.entity.EntityMorbidHarvester at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) ... 40 moreCaused by: java.lang.NoClassDefFoundError: net/ilexiconn/llibrary/common/animation/IAnimated at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(Unknown Source) at java.security.SecureClassLoader.defineClass(Unknown Source) at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182) ... 42 moreCaused by: java.lang.ClassNotFoundException: net.ilexiconn.llibrary.common.animation.IAnimated at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) ... 46 moreCaused by: java.lang.NullPointerException at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182) ... 48 more
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_261, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 114567280 bytes (109 MB) / 390504448 bytes (372 MB) up to 2077753344 bytes (1981 MB) JVM Flags: 8 total; -XX:+UseConcMarkSweepGC -XX:-UseAdaptiveSizePolicy -XX:+CMSParallelRemarkEnabled -XX:+ParallelRefProcEnabled -XX:+CMSClassUnloadingEnabled -XX:+UseCMSInitiatingOccupancyOnly -Xmx2048M -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: XRay v2.14.2 MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1614 Optifine OptiFine_1.7.10_HD_U_E7 40 mods loaded, 40 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UCH mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) UCH FML{7.10.99.99} [Forge Mod Loader] (forge-1.7.10-10.13.4.1614-1.7.10.jar) UCH Forge{10.13.4.1614} [Minecraft Forge] (forge-1.7.10-10.13.4.1614-1.7.10.jar) UCH TooManyItems{1.7.10} [TooManyItems] (minecraft.jar) UCH DamageIndicatorsMod{3.2.0} [Damage Indicators] ([1.7.10]DamageIndicatorsMod-3.2.0.jar) UCH ThinkBigCore{1.4} [�5�m===�r �e�lThink Big Core �5�m===�r] (Think-Big-Core-1.7.10.jar) UCH dextersnether{1.1} [�e�k!!�6�k]]�c�kkk�4�lAd Inferos�c�kkk�6�k]]�e�k!!] (Ad Inferos-1.1-[1.7.10].zip) UCH alluwant{2.1} [All U Want] (All-U-Want-Mod-1.7.10.jar) UCH AnimationAPI{1.2.4} [AnimationAPI] (AnimationAPI-1.7.10.jar) UCH antiidconflict{1.3.5} [Anti Id Conflict] (AntiIdConflict-LATEST-1.7.10.jar) UCE nevermine{Tslat-1.1.3} [Advent of Ascension] (AoA-Tslat-1.1.3.jar) UCH gibby_dungeons{1.7} [Arcana RPG] (Arcana RPG 1.6.2-1.7.10.jar) UCH AS_UpdateCheck{1.1.6} [AtomicStryker Update Check Mod] (AtomicStryker Update Check Mod.jar) UCH Backpack{2.0.1} [Backpack] (Backpacks-Mod.jar) UCH BetterAchievements{0.1.0} [Better Achievements] (Better-Achievements-Mod-1.7.10.jar) UCH chocolateQuest{1.0} [Chocolate Quest] (Better-Dungeons-Mod-1.7.10.jar) UCH craftguide{1.6.8.1} [CraftGuide] (CraftGuide-Mod-1.7.10.zip) UCH customnpcs{1.7.10d} [CustomNpcs] (Custom-NPCs-Mod-1.7.10.jar) UCH mwaw{1.7.10-0.0.7} [Elemental Witch Mod] (Elemental-Witch-Mod-1.7.10.jar) UCH eplus{3.0.2-d} [Enchanting Plus] (EnchantingPlus-1.7.10-3.0.2-d.jar) UCH FNAM{v1.1} [FIVE NIGHTS AT FREDDY�S MOD] (FNAF_Mod(v1.1).jar) UCH LagFix{2.0.1} [LagFix] (LagFix-2.0.1-mc1.7.10-forge.jar) UCH LBMED{1.0.0} [LBMED] (LBMED.zip) UCH llibrary{1.5.1} [LLibrary] (llibrary-1.5.1-1.7.10.jar) UCH lootplusplus{0.24_for_1.7} [Loot++] (Loot++-0.24_for_1.7.jar) UCH MSM3{3.0.0d} [More Swords 3] (MSM-SNAP-3.0.0e-For-MC-1.7.10.jar) UCH MutantCreatures{1.4.9} [Mutant Creatures] (MutantCreatures-1.7.10-1.4.9.jar) UCH notenoughIDs{1.4.3.4} [NotEnoughIDs] (NotEnoughIDs-1.4.3.4.jar) UCH pandorasbox{2.0.1} [Pandora's Box] (PandorasBox-2.1.jar) UCH examplemod{1.0} [examplemod] (Pun Mod 1.6 -1.7.10.zip) UCH gibby_pun{1.5} [The Pun Mod] (Pun Mod 1.6 -1.7.10.zip) UCH quiverchevsky{b101c} [QuiverBow] (QuiverBow_1.7.10_b101d.zip) UCH shadowworld{1.3.3} [Shadow World] (shadowworld-1.3.3.jar) UCH SpecialMobs{3.0.2} [Special Mobs] (SpecialMobs-1.7.10-3.0.2.jar) UCE morbid{${version}} [The Morbid Reborn] (The-Morbid-Reborn-Mod-1.7.10.jar) UCH TwilightForest{2.3.7} [The Twilight Forest] (twilightforest-1.7.10-2.3.7.jar) UCH UtilityMobs{3.1.1} [Utility Mobs] (UtilityMobs-1.7.10-3.1.1.jar) UCH nolpfij_wildycraft{1.7.4} [Wildycraft] (wildycraft-1.7.10-1.7.4.jar) UCH lucky{5.1.0} [Lucky Block] (z[1-7-10]_Lucky_Block_v5-1-0.zip) UCH voxelmap{1.7.10} [VoxelMap No Radar] (Zans-Minimap-No-Radar-Mod-1.7.10.jar) GL info: ' Vendor: 'Intel' Version: '4.6.0 - Build 26.20.100.7755' Renderer: 'Intel(R) UHD Graphics' OptiFine Version: OptiFine_1.7.10_HD_U_E7 Render Distance Chunks: 6 Mipmaps: 4 Anisotropic Filtering: 1 Antialiasing: 0 Multitexture: false Shaders: null OpenGlVersion: 4.6.0 - Build 26.20.100.7755 OpenGlRenderer: Intel(R) UHD Graphics OpenGlVendor: Intel CpuCount: 8
here.
In reply to mari0brine:
i am getting the same issue the game works fine with out it but when i put it in it crashes.
can you please fix the patron link error. its not causing my client to crash. but its not letting me enter my world. (minecraft 1.12.2)
E
Did you change the github pull URL for your patron list? The URL in the mod doesn't exist and causes a massive implosion/crash whenever settings are changed. Citadel is only available for 1.14 and newer, so I can't simply switch it out.
I should note: In the error, it's attempting to read a URL located under user gegy1000 on Github. Whenever I go to Github, the same file it's trying to read is under gegy, rather than gegy1000.
In reply to grimscythegames:
Yeah, this was an unintentional side-effect. The error should not cause crashes though, it just prints an unfortunate crash-log-like report.
In reply to gegy1000:
Okay! I found out what was causing it, actually. Thank you!
mine dosent work pls help
In reply to dexter1134:
What happens? Is it crashing?
So many mods depend on this and are waiting for it to update! Please, for the sake of us all, update it.
In reply to pumpkinkidstreams:
I know right? The surprising thing is it was last updated in 2019 so come on. (and yes I know mods take a while but at least mention you are working on updates)
In reply to tzuohpc:
LLibrary isn't being updated. Mod authors are aware, hence the creation of Citadel :)
Can someone help I keep getting this message while trying to host a server
---- Minecraft Crash Report -------- Minecraft Crash Report ----
WARNING: coremods are present: llibrary (llibrary-core-1.0.11-1.12.2.jar)Contact their authors BEFORE contacting forge
// I let you down. Sorry :(
Time: 23.09.2020 15:46Description: Exception in server tick loop
net.minecraftforge.fml.common.LoaderException: java.lang.NoClassDefFoundError: net/minecraft/client/renderer/tileentity/TileEntitySpecialRenderer at net.minecraftforge.fml.common.AutomaticEventSubscriber.inject(AutomaticEventSubscriber.java:89) at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:612) 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 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:219) at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) 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 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:136) at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595) at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) at java.lang.Thread.run(Unknown Source)Caused by: java.lang.NoClassDefFoundError: net/minecraft/client/renderer/tileentity/TileEntitySpecialRenderer at java.lang.Class.getDeclaredMethods0(Native Method) at java.lang.Class.privateGetDeclaredMethods(Unknown Source) at java.lang.Class.privateGetPublicMethods(Unknown Source) at java.lang.Class.getMethods(Unknown Source) at net.minecraftforge.fml.common.eventhandler.EventBus.register(EventBus.java:82) at net.minecraftforge.fml.common.AutomaticEventSubscriber.inject(AutomaticEventSubscriber.java:82) ... 32 moreCaused by: java.lang.ClassNotFoundException: net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) ... 38 moreCaused by: net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerException: Exception in class transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer@5ec77191 from coremod FMLCorePlugin at net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerWrapper.transform(ASMTransformerWrapper.java:260) at net.minecraft.launchwrapper.LaunchClassLoader.runTransformers(LaunchClassLoader.java:279) at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:176) ... 40 moreCaused by: java.lang.RuntimeException: Attempted to load class bwy for invalid side SERVER at net.minecraftforge.fml.common.asm.transformers.SideTransformer.transform(SideTransformer.java:62) at net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerWrapper.transform(ASMTransformerWrapper.java:256) ... 42 more
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_261, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 432542336 bytes (412 MB) / 602406912 bytes (574 MB) up to 1894252544 bytes (1806 MB) JVM Flags: 0 total; IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP 9.42 Powered by Forge 14.23.5.2854 15 mods loaded, 15 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 | |:----- |:--------------- |:----------------------- |:--------------------------------------------- |:---------------------------------------- | | LC | minecraft | 1.12.2 | minecraft.jar | None | | LC | mcp | 9.42 | minecraft.jar | None | | LC | FML | 8.0.99.99 | forge-1.12.2-14.23.5.2854.jar | e3c3d50c7c986df74c645c0ac54639741c90a557 | | LC | forge | 14.23.5.2854 | forge-1.12.2-14.23.5.2854.jar | e3c3d50c7c986df74c645c0ac54639741c90a557 | | LC | chisel | MC1.12.2-1.0.2.45 | Chisel-MC1.12.2-1.0.2.45.jar | None | | LC | mantle | 1.12-1.3.3.55 | Mantle-1.12-1.3.3.55.jar | None | | LC | tconstruct | 1.12.2-2.13.0.183 | TConstruct-1.12.2-2.13.0.183.jar | None | | LC | conarm | 1.2.5.9 | conarm-1.12.2-1.2.5.9.jar | 2484ef4d131fdc0dca0647aa21b7b944ddb935a1 | | LC | umm3185118519 | release 1.4 - MC 1.12.2 | Extended+ItemsOres+[1.12.2]+(release+1.4).jar | None | | LC | llibrary | 1.7.19 | llibrary-1.7.19-1.12.2.jar | b9f30a813bee3b9dd5652c460310cfcd54f6b7ec | | LC | fossil | 8.0.4 | fossilsarcheology-8.0.4.jar | None | | LC | new_ore | 1.0.0 | FossilsOreMod1.12.jar | None | | LC | ironchest | 1.12.2-7.0.67.844 | ironchest-1.12.2-7.0.72.847.jar | None | | LC | ironfurnaces | 1.3.5 | ironfurnaces-1.3.5.jar | None | | LE | pattysmorestuff | @VERSION@ | PattysMoreStuff-stable-1.1.8.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 Pulsar/tconstruct loaded Pulses: - TinkerCommons (Enabled/Forced) - TinkerWorld (Enabled/Not Forced) - TinkerTools (Enabled/Not Forced) - TinkerHarvestTools (Enabled/Forced) - TinkerMeleeWeapons (Enabled/Forced) - TinkerRangedWeapons (Enabled/Forced) - TinkerModifiers (Enabled/Forced) - TinkerSmeltery (Enabled/Not Forced) - TinkerGadgets (Enabled/Not Forced) - TinkerOredict (Enabled/Forced) - TinkerIntegration (Enabled/Forced) - TinkerFluids (Enabled/Forced) - TinkerMaterials (Enabled/Forced) - TinkerModelRegister (Enabled/Forced) - chiselIntegration (Enabled/Not Forced)
Profiler Position: N/A (disabled) Is Modded: Definitely; Server brand changed to 'fml,forge' Type: Dedicated Server (map_server.txt)
Hi im here to help if you have technic launcher download the Jurassic pack and go mod pack options then open the mod pack mods grab the llibrary mod out of there and you will all be able to play the games your trying to play.
In reply to streakedwolf:
i have no problem with launching minecraft it doesn't work when i'm trying to open a server
I keep getting this crash message.
---- Minecraft Crash Report -------- Minecraft Crash Report ----
WARNING: coremods are present: llibrary (llibrary-core-1.0.11-1.12.2.jar) Inventory Tweaks Coremod (InventoryTweaks-1.63.jar) AppleCore (AppleCore-mc1.12.2-3.2.0.jar) SSLoadingPlugin (SereneSeasons-1.12.2-1.2.16-universal.jar) iceandfire (iceandfire-1.9.1-1.12.2.jar)Contact their authors BEFORE contacting forge
// Uh... Did I do that?
Time: 8/9/20 2:41 PMDescription: Exception in server tick loop
java.lang.RuntimeException: Unknown character ' ' in 'C:/Users/kderr/AppData/Roaming/.minecraft/config/CustomSpawner/overworld/Environment.cfg:1' at drzhark.customspawner.configuration.CMSConfiguration.load(CMSConfiguration.java:444) at drzhark.customspawner.configuration.CMSConfiguration.<init>(CMSConfiguration.java:84) at drzhark.customspawner.environment.EnvironmentSettings.registerConfigs(EnvironmentSettings.java:115) at drzhark.customspawner.environment.EnvironmentSettings.<init>(EnvironmentSettings.java:100) at drzhark.customspawner.utils.CMSUtils.addWorldEnvironment(CMSUtils.java:109) at drzhark.customspawner.EventHooks.structureMapGen(EventHooks.java:188) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_285_EventHooks_structureMapGen_InitMapGenEvent.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.minecraftforge.event.terraingen.TerrainGen.getModdedMapGen(TerrainGen.java:48) at net.minecraft.world.gen.ChunkGeneratorOverworld.<init>(ChunkGeneratorOverworld.java:69) at net.minecraft.world.WorldType.getChunkGenerator(WorldType.java:140) at net.minecraft.world.WorldProvider.func_186060_c(WorldProvider.java:63) at net.minecraft.world.WorldServer.func_72970_h(WorldServer.java:848) at net.minecraft.world.WorldServer.<init>(WorldServer.java:118) at net.minecraft.server.integrated.IntegratedServer.func_71247_a(IntegratedServer.java:121) 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: 1027424304 bytes (979 MB) / 2147483648 bytes (2048 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: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP 9.42 Powered by Forge 14.23.5.2852 50 mods loaded, 50 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.2852.jar | e3c3d50c7c986df74c645c0ac54639741c90a557 | | LCHIJA | forge | 14.23.5.2852 | forge-1.12.2-14.23.5.2852.jar | e3c3d50c7c986df74c645c0ac54639741c90a557 | | LCHIJA | damageindicatorsmod | 1.0 | [1.12.2]DamageIndicatorsMod-3.5.1.jar | None | | LCHIJA | movillages | 1.5.4 | [1.12]MoVillages-1.5.4.jar | None | | LCHIJA | applecore | 3.2.0 | AppleCore-mc1.12.2-3.2.0.jar | None | | LCHIJA | jei | 4.15.0.297 | jei_1.12.2-4.15.0.297.jar | None | | LCHIJA | appleskin | 1.0.8 | AppleSkin-mc1.12-1.0.8.jar | None | | LCHIJA | backpack | 3.0.2 | backpack-3.0.2-1.12.2.jar | None | | LCHIJA | badmobs | 1.1.28 | BadMobs-1.12.2-1.1.28.jar | d476d1b22b218a10d845928d1665d45fce301b27 | | LCHIJA | bibliocraft | 2.4.5 | BiblioCraft[v2.4.5][MC1.12.2].jar | None | | LCHIJA | buildcraftlib | 7.99.24.6 | buildcraft-all-7.99.24.6.jar | None | | LCHIJA | buildcraftcore | 7.99.24.6 | buildcraft-all-7.99.24.6.jar | None | | LCHIJA | buildcraftbuilders | 7.99.24.6 | buildcraft-all-7.99.24.6.jar | None | | LCHIJA | buildcrafttransport | 7.99.24.6 | buildcraft-all-7.99.24.6.jar | None | | LCHIJA | buildcraftsilicon | 7.99.24.6 | buildcraft-all-7.99.24.6.jar | None | | LCHIJA | buildcraftenergy | 7.99.24.6 | buildcraft-all-7.99.24.6.jar | None | | LCHIJA | toughasnails | 3.1.0.141 | ToughAsNails-1.12.2-3.1.0.141-universal.jar | None | | LCHIJA | forestry | 5.8.2.422 | forestry_1.12.2-5.8.2.422.jar | None | | LCHIJA | buildcraftcompat | 7.99.24.6 | buildcraft-all-7.99.24.6.jar | None | | LCHIJA | buildcraftfactory | 7.99.24.6 | buildcraft-all-7.99.24.6.jar | None | | LCHIJA | buildcraftrobotics | 7.99.24.6 | buildcraft-all-7.99.24.6.jar | None | | LCHIJA | carpentersblocks | 3.4.0-poc.6 | Carpenter's Blocks v3.4.0-poc.6 - MC 1.12.2.jar | None | | LCHIJA | codechickenlib | 3.2.3.358 | CodeChickenLib-1.12.2-3.2.3.358-universal.jar | f1850c39b2516232a2108a7bd84d1cb5df93b261 | | LCHIJA | customspawner | 3.11.4 | CustomMobSpawner-3.11.4.jar | None | | LCHIJA | mocreatures | 12.0.5 | DrZharks MoCreatures Mod-12.0.5.jar | None | | LCHIJA | dynamictrees | 1.12.2-0.9.7 | DynamicTrees-1.12.2-0.9.7.jar | None | | LCHIJA | enderstorage | 2.4.6.137 | EnderStorage-1.12.2-2.4.6.137-universal.jar | f1850c39b2516232a2108a7bd84d1cb5df93b261 | | LCHIJA | cfm | 6.3.1 | furniture-6.3.1-1.12.2.jar | None | | LCHIJA | goodnightsleep | 0.2.1 | good-nights-sleep-1.12.2-v0.2.1.jar | None | | LCHIJA | hatchery | 2.2.2 | hatchery-1.12.2-2.2.2.jar | None | | LCHIJA | hungerinpeace | 1.0.0 | HungerInPeace-mc1.12-1.0.0.jar | None | | LCHIJA | llibrary | 1.7.19 | llibrary-1.7.19-1.12.2.jar | b9f30a813bee3b9dd5652c460310cfcd54f6b7ec | | LCHIJA | iceandfire | 1.9.1 | iceandfire-1.9.1-1.12.2.jar | None | | LCHIJA | inventorypets | 2.0.2 | inventorypets-1.12-2.0.2.jar | None | | LCHIJA | inventorytweaks | 1.63+release.109.220f184 | InventoryTweaks-1.63.jar | 55d2cd4f5f0961410bf7b91ef6c6bf00a766dcbe | | LCHIJA | mantle | 1.12-1.3.3.55 | Mantle-1.12-1.3.3.55.jar | None | | LCHIJA | mapwriter | 2.8.2 | MapWriter-1.12.2-2.8.2.jar | None | | LCHIJA | brewcraft | 1.12.2-1.0.1 | Pam's+BrewCraft+1.12.2-1.0.1.jar | None | | LCHIJA | desertcraft | 1.12.2a | Pam's+DesertCraft+1.12.2b.jar | None | | LCHIJA | harvestcraft | 1.12.2zb | Pam's+HarvestCraft+1.12.2zb.jar | None | | LCHIJA | redbudtree | 1.12.2a | Pam's+Redbud+Tree+1.12.2a.jar | None | | LCHIJA | spookytree | 1.12.2a | Pam's+Spooky+Tree+1.12.2a.jar | None | | LCHIJA | projecte | 1.12.2-PE1.4.1 | ProjectE-1.12.2-PE1.4.1.jar | None | | LCHIJA | sereneseasons | 1.2.16 | SereneSeasons-1.12.2-1.2.16-universal.jar | None | | LCHIJA | sit | v1.3 | sit-1.12.2-v1.3.jar | None | | LCHIJA | tconstruct | 1.12.2-2.13.0.183 | TConstruct-1.12.2-2.13.0.183.jar | None | | LCHIJA | of | 0.13.1 | Useful+Interior+-+0.13.1+[1.12.2].jar | None | | LCHIJA | variedcommodities | 1.12.2 | VariedCommodities_1.12.2(21nov19).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.LLibraryRuntimePatcherInventory Tweaks Coremod (InventoryTweaks-1.63.jar) invtweaks.forge.asm.ContainerTransformerAppleCore (AppleCore-mc1.12.2-3.2.0.jar) squeek.applecore.asm.TransformerModuleHandlerSSLoadingPlugin (SereneSeasons-1.12.2-1.2.16-universal.jar) sereneseasons.asm.transformer.EntityRendererTransformer sereneseasons.asm.transformer.WorldTransformericeandfire (iceandfire-1.9.1-1.12.2.jar) com.github.alexthe666.iceandfire.patcher.IceAndFireRuntimePatcher GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread. Pulsar/tconstruct loaded Pulses: - TinkerCommons (Enabled/Forced) - TinkerWorld (Enabled/Not Forced) - TinkerTools (Enabled/Not Forced) - TinkerHarvestTools (Enabled/Forced) - TinkerMeleeWeapons (Enabled/Forced) - TinkerRangedWeapons (Enabled/Forced) - TinkerModifiers (Enabled/Forced) - TinkerSmeltery (Enabled/Not Forced) - TinkerGadgets (Enabled/Not Forced) - TinkerOredict (Enabled/Forced) - TinkerIntegration (Enabled/Forced) - TinkerFluids (Enabled/Forced) - TinkerMaterials (Enabled/Forced) - TinkerModelRegister (Enabled/Forced)
Profiler Position: N/A (disabled) Player Count: 0 / 8; [] Type: Integrated Server (map_client.txt) Is Modded: Definitely; Client brand changed to 'fml,forge'