-
Recently Browsing
- No registered users viewing this page.
-
Posts
-
By Enzo Rafael · Posted
Hey uh i need help to fix this error when i tried to install forge 1.19 with java jdk 18: "javax.net.ssl.SSLHandshakeException:PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target See log for more details." can someone help me? -
By GenericMinecraftModder · Posted
I'm working on a forge mod for 1.16.5 and I made a custom Dimension and I made a custom sky for my dimension but when I test the mod the sun is just a black and purple texture, I'm pretty new at modding so I don't know what to do. Here is the code for the custom sky: public class ClientEventBus { private static final ResourceLocation DIM_RENDER_INFO = new ResourceLocation("star_craft", "moon"); private static final ResourceLocation SUN_TEXTURES = new ResourceLocation("textures/sky/earth.png"); private static final ResourceLocation MOON_PHASES_TEXTURES = new ResourceLocation("textures/moonsky/moon_phases.png"); private static final ResourceLocation SKY_TEXTURE = new ResourceLocation("star_craft", "textures/sky/moonsky.png"); @SubscribeEvent(priority = EventPriority.HIGHEST) public static void clientSetup(FMLClientSetupEvent event) { // public net.minecraft.client.world.DimensionRenderInfo field_239208_a_ # // field_239208_a_ // public net.minecraft.client.renderer.Minecraft.getInstance().worldRenderer // field_175012_t # skyVBO // public net.minecraft.client.renderer.Minecraft.getInstance().worldRenderer // field_175014_r # skyVertexFormat // public net.minecraft.client.renderer.Minecraft.getInstance().worldRenderer // field_175013_s # starVBO // public net.minecraft.client.renderer.Minecraft.getInstance().worldRenderer // field_175011_u # sky2VBO DimensionRenderInfo.field_239208_a_.put(DIM_RENDER_INFO, // cloudHeight, alternate sky color, fog type, render sky, diffuse lighting new DimensionRenderInfo(128, true, FogType.NORMAL, true, false) { @Override // adjustSkyColor public Vector3d func_230494_a_(Vector3d fogColor, float partialTicks) { return fogColor; } @Override // useThickFog public boolean func_230493_a_(int posX, int posY) { return false; } @Override public ISkyRenderHandler getSkyRenderHandler() { return new ISkyRenderHandler() { @SuppressWarnings({ "resource", "deprecation" }) @Override public void render(int ticks, float partialTicks, MatrixStack matrixStack, ClientWorld world, Minecraft mc) { RenderSystem.disableTexture(); Vector3d vector3d = world.getSkyColor( Minecraft.getInstance().gameRenderer.getActiveRenderInfo().getBlockPos(), partialTicks); float f = (float) vector3d.x; float f1 = (float) vector3d.y; float f2 = (float) vector3d.z; FogRenderer.applyFog(); BufferBuilder bufferbuilder = Tessellator.getInstance().getBuffer(); RenderSystem.depthMask(false); RenderSystem.enableFog(); RenderSystem.color3f(f, f1, f2); Minecraft.getInstance().worldRenderer.skyVBO.bindBuffer(); Minecraft.getInstance().worldRenderer.skyVertexFormat.setupBufferState(0L); Minecraft.getInstance().worldRenderer.skyVBO.draw(matrixStack.getLast().getMatrix(), 7); VertexBuffer.unbindBuffer(); Minecraft.getInstance().worldRenderer.skyVertexFormat.clearBufferState(); RenderSystem.disableFog(); RenderSystem.disableAlphaTest(); RenderSystem.enableBlend(); RenderSystem.defaultBlendFunc(); float[] afloat = world.func_239132_a_() .func_230492_a_(world.func_242415_f(partialTicks), partialTicks); if (afloat != null) { RenderSystem.disableTexture(); RenderSystem.shadeModel(7425); matrixStack.push(); matrixStack.rotate(Vector3f.XP.rotationDegrees(90.0F)); float f3 = MathHelper.sin(world.getCelestialAngleRadians(partialTicks)) < 0.0F ? 180.0F : 0.0F; matrixStack.rotate(Vector3f.ZP.rotationDegrees(f3)); matrixStack.rotate(Vector3f.ZP.rotationDegrees(90.0F)); float f4 = afloat[0]; float f5 = afloat[1]; float f6 = afloat[2]; Matrix4f matrix4f = matrixStack.getLast().getMatrix(); bufferbuilder.begin(6, DefaultVertexFormats.POSITION_COLOR); bufferbuilder.pos(matrix4f, 0.0F, 100.0F, 0.0F).color(f4, f5, f6, afloat[3]) .endVertex(); for (int j = 0; j <= 16; ++j) { float f7 = (float) j * ((float) Math.PI * 2F) / 16.0F; float f8 = MathHelper.sin(f7); float f9 = MathHelper.cos(f7); bufferbuilder.pos(matrix4f, f8 * 120.0F, f9 * 120.0F, -f9 * 40.0F * afloat[3]) .color(afloat[0], afloat[1], afloat[2], 0.0F).endVertex(); } bufferbuilder.finishDrawing(); WorldVertexBufferUploader.draw(bufferbuilder); matrixStack.pop(); RenderSystem.shadeModel(7424); } RenderSystem.enableTexture(); RenderSystem.blendFuncSeparate(GlStateManager.SourceFactor.SRC_ALPHA, GlStateManager.DestFactor.ONE, GlStateManager.SourceFactor.ONE, GlStateManager.DestFactor.ZERO); matrixStack.push(); float f11 = 1.0F - world.getRainStrength(partialTicks); RenderSystem.color4f(1.0F, 1.0F, 1.0F, f11); matrixStack.rotate(Vector3f.YP.rotationDegrees(-90.0F)); matrixStack.rotate( Vector3f.XP.rotationDegrees(world.func_242415_f(partialTicks) * 360.0F)); Matrix4f matrix4f1 = matrixStack.getLast().getMatrix(); float f12 = 30.0F; Minecraft.getInstance().getTextureManager().bindTexture(SUN_TEXTURES); bufferbuilder.begin(7, DefaultVertexFormats.POSITION_TEX); bufferbuilder.pos(matrix4f1, -f12, 100.0F, -f12).tex(0.0F, 0.0F).endVertex(); bufferbuilder.pos(matrix4f1, f12, 100.0F, -f12).tex(1.0F, 0.0F).endVertex(); bufferbuilder.pos(matrix4f1, f12, 100.0F, f12).tex(1.0F, 1.0F).endVertex(); bufferbuilder.pos(matrix4f1, -f12, 100.0F, f12).tex(0.0F, 1.0F).endVertex(); bufferbuilder.finishDrawing(); WorldVertexBufferUploader.draw(bufferbuilder); f12 = 20.0F; Minecraft.getInstance().getTextureManager().bindTexture(MOON_PHASES_TEXTURES); int k = world.getMoonPhase(); int l = k % 4; int i1 = k / 4 % 2; float f13 = (float) (l + 0) / 4.0F; float f14 = (float) (i1 + 0) / 2.0F; float f15 = (float) (l + 1) / 4.0F; float f16 = (float) (i1 + 1) / 2.0F; bufferbuilder.begin(7, DefaultVertexFormats.POSITION_TEX); bufferbuilder.pos(matrix4f1, -f12, -100.0F, f12).tex(f15, f16).endVertex(); bufferbuilder.pos(matrix4f1, f12, -100.0F, f12).tex(f13, f16).endVertex(); bufferbuilder.pos(matrix4f1, f12, -100.0F, -f12).tex(f13, f14).endVertex(); bufferbuilder.pos(matrix4f1, -f12, -100.0F, -f12).tex(f15, f14).endVertex(); bufferbuilder.finishDrawing(); WorldVertexBufferUploader.draw(bufferbuilder); RenderSystem.disableTexture(); float f10 = world.getStarBrightness(partialTicks) * f11; if (f10 > 0.0F) { RenderSystem.color4f(f10, f10, f10, f10); Minecraft.getInstance().worldRenderer.starVBO.bindBuffer(); Minecraft.getInstance().worldRenderer.skyVertexFormat.setupBufferState(0L); Minecraft.getInstance().worldRenderer.starVBO .draw(matrixStack.getLast().getMatrix(), 7); VertexBuffer.unbindBuffer(); Minecraft.getInstance().worldRenderer.skyVertexFormat.clearBufferState(); } RenderSystem.color4f(1.0F, 1.0F, 1.0F, 1.0F); RenderSystem.disableBlend(); RenderSystem.enableAlphaTest(); RenderSystem.enableFog(); matrixStack.pop(); RenderSystem.disableTexture(); RenderSystem.color3f(0.0F, 0.0F, 0.0F); double d0 = Minecraft.getInstance().player.getEyePosition(partialTicks).y - world.getWorldInfo().getVoidFogHeight(); if (d0 < 0.0D) { matrixStack.push(); matrixStack.translate(0.0D, 12.0D, 0.0D); Minecraft.getInstance().worldRenderer.sky2VBO.bindBuffer(); Minecraft.getInstance().worldRenderer.skyVertexFormat.setupBufferState(0L); Minecraft.getInstance().worldRenderer.sky2VBO .draw(matrixStack.getLast().getMatrix(), 7); VertexBuffer.unbindBuffer(); Minecraft.getInstance().worldRenderer.skyVertexFormat.clearBufferState(); matrixStack.pop(); } if (world.func_239132_a_().func_239216_b_()) { RenderSystem.color3f(f * 0.2F + 0.04F, f1 * 0.2F + 0.04F, f2 * 0.6F + 0.1F); } else { RenderSystem.color3f(f, f1, f2); } Minecraft.getInstance().worldRenderer.skyVBO.bindBuffer(); Minecraft.getInstance().worldRenderer.skyVertexFormat.setupBufferState(0L); Minecraft.getInstance().worldRenderer.skyVBO.draw(matrixStack.getLast().getMatrix(), 7); VertexBuffer.unbindBuffer(); Minecraft.getInstance().worldRenderer.skyVertexFormat.clearBufferState(); RenderSystem.enableTexture(); RenderSystem.blendFuncSeparate(GlStateManager.SourceFactor.SRC_ALPHA, GlStateManager.DestFactor.ONE, GlStateManager.SourceFactor.ONE, GlStateManager.DestFactor.ZERO); RenderSystem.color4f(0.8F, 0.8F, 0.8F, 0.2F); Minecraft.getInstance().getTextureManager().bindTexture(SKY_TEXTURE); bufferbuilder.begin(7, DefaultVertexFormats.POSITION_TEX); bufferbuilder.pos(64, 16, 64).tex(0.0F, 0.0F).endVertex(); bufferbuilder.pos(-64, 16, 64).tex(1.0F, 0.0F).endVertex(); bufferbuilder.pos(-64, 16, -64).tex(1.0F, 1.0F).endVertex(); bufferbuilder.pos(64, 16, -64).tex(0.0F, 1.0F).endVertex(); bufferbuilder.finishDrawing(); WorldVertexBufferUploader.draw(bufferbuilder); RenderSystem.disableTexture(); RenderSystem.enableTexture(); RenderSystem.depthMask(true); RenderSystem.disableFog(); } }; } }); } } Here is how it looks like: -
By posierosie · Posted
heres the crash log if it helps: ---- Minecraft Crash Report ---- // Shall we play a game? Time: 7/3/22, 4:32 PM Description: Mod loading error has occurred java.lang.Exception: Mod Loading has failed at net.minecraftforge.logging.CrashReportExtender.dumpModLoadingCrashReport(CrashReportExtender.java:55) ~[forge-1.18.2-40.1.52-universal.jar%23255!/:?] {re:classloading} at net.minecraftforge.client.loading.ClientModLoader.completeModLoading(ClientModLoader.java:170) ~[forge-1.18.2-40.1.52-universal.jar%23255!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.lambda$new$1(Minecraft.java:555) ~[client-1.18.2-20220404.173914-srg.jar%23250!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:betterthirdperson.mixins.json:MinecraftMixin,pl:mixin:APP:blueprint.mixins.json:client.MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:drippyloadingscreen.mixin.json:MixinMinecraft,pl:mixin:APP:mixin.dynamic_asset_generator.json:MinecraftMixin,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:fallingleaves.mixins.json:MinecraftClientMixin,pl:mixin:APP:fancymenu.general.mixin.json:MixinMinecraft,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Keybinds,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_PipelineManagement,pl:mixin:APP:byg_forge.mixins.json:client.MixinMinecraft,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:simplerpc.mixins.json:ScreenEventsMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.Util.m_137521_(Util.java:397) ~[client-1.18.2-20220404.173914-srg.jar%23250!/:?] {re:mixin,re:classloading,pl:mixin:APP:blue_skies.mixins.json:UtilMixin,pl:mixin:APP:ftbchunks-common.mixins.json:UtilMixin,pl:mixin:APP:bettermineshafts.mixins.json:SuppressLogMixin,pl:mixin:A} at net.minecraft.client.Minecraft.lambda$new$2(Minecraft.java:549) ~[client-1.18.2-20220404.173914-srg.jar%23250!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:betterthirdperson.mixins.json:MinecraftMixin,pl:mixin:APP:blueprint.mixins.json:client.MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:drippyloadingscreen.mixin.json:MixinMinecraft,pl:mixin:APP:mixin.dynamic_asset_generator.json:MinecraftMixin,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:fallingleaves.mixins.json:MinecraftClientMixin,pl:mixin:APP:fancymenu.general.mixin.json:MixinMinecraft,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Keybinds,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_PipelineManagement,pl:mixin:APP:byg_forge.mixins.json:client.MixinMinecraft,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:simplerpc.mixins.json:ScreenEventsMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.LoadingOverlay.handler$zlg000$onRender(LoadingOverlay.java:600) ~[client-1.18.2-20220404.173914-srg.jar%23250!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:drippyloadingscreen.mixin.json:MixinLoadingOverlay,pl:mixin:APP:fancymenu.general.mixin.json:MixinLoadingOverlay,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.LoadingOverlay.m_6305_(LoadingOverlay.java) ~[client-1.18.2-20220404.173914-srg.jar%23250!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:drippyloadingscreen.mixin.json:MixinLoadingOverlay,pl:mixin:APP:fancymenu.general.mixin.json:MixinLoadingOverlay,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:879) ~[client-1.18.2-20220404.173914-srg.jar%23250!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:AdditionalAdditions.mixins.json:GameRendererMixin,pl:mixin:APP:mixins.oculus.json:GameRendererAccessor,pl:mixin:APP:mixins.oculus.json:MixinGameRenderer,pl:mixin:APP:mixins.oculus.json:MixinModelViewBobbing,pl:mixin:APP:mixins.oculus.json:MixinTweakFarPlane,pl:mixin:APP:rubidium_extras.mixins.json:TotalDarkness.MixinGameRenderer,pl:mixin:APP:rubidium_extras.mixins.json:Zoom.GameRendererMixin,pl:mixin:APP:mixins.oculus.json:MixinGameRenderer_NightVisionCompat,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1044) ~[client-1.18.2-20220404.173914-srg.jar%23250!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:betterthirdperson.mixins.json:MinecraftMixin,pl:mixin:APP:blueprint.mixins.json:client.MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:drippyloadingscreen.mixin.json:MixinMinecraft,pl:mixin:APP:mixin.dynamic_asset_generator.json:MinecraftMixin,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:fallingleaves.mixins.json:MinecraftClientMixin,pl:mixin:APP:fancymenu.general.mixin.json:MixinMinecraft,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Keybinds,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_PipelineManagement,pl:mixin:APP:byg_forge.mixins.json:client.MixinMinecraft,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:simplerpc.mixins.json:ScreenEventsMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:663) ~[client-1.18.2-20220404.173914-srg.jar%23250!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:betterthirdperson.mixins.json:MinecraftMixin,pl:mixin:APP:blueprint.mixins.json:client.MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:drippyloadingscreen.mixin.json:MixinMinecraft,pl:mixin:APP:mixin.dynamic_asset_generator.json:MinecraftMixin,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:fallingleaves.mixins.json:MinecraftClientMixin,pl:mixin:APP:fancymenu.general.mixin.json:MixinMinecraft,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Keybinds,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_PipelineManagement,pl:mixin:APP:byg_forge.mixins.json:client.MixinMinecraft,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:simplerpc.mixins.json:ScreenEventsMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%23250!/:?] {re:classloading,pl:runtimedistcleaner:A} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.1.52.jar%2316!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Stacktrace: at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:384) ~[gson-2.8.9.jar%2334!/:?] {} -- MOD fallingtree -- Details: Caused by 0: java.lang.ExceptionInInitializerError at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {} at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {} at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {} at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:67) ~[javafmllanguage-1.18.2-40.1.52.jar%23252!/:?] {} at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:106) ~[fmlcore-1.18.2-40.1.52.jar%23251!/:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {} at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {} at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {} at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {re:computing_frames} at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {re:computing_frames} at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {} Caused by 1: com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $ at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:226) ~[gson-2.8.9.jar%2334!/:?] {} at com.google.gson.Gson.fromJson(Gson.java:963) ~[gson-2.8.9.jar%2334!/:?] {re:mixin} at com.google.gson.Gson.fromJson(Gson.java:901) ~[gson-2.8.9.jar%2334!/:?] {re:mixin} at fr.raksrinana.fallingtree.common.config.ConfigLoader.loadConfig(ConfigLoader.java:22) ~[FallingTree-1.18.2-3.5.1.jar%23132!/:3.5.1] {re:classloading} at fr.raksrinana.fallingtree.common.config.Configuration.read(Configuration.java:43) ~[FallingTree-1.18.2-3.5.1.jar%23132!/:3.5.1] {re:classloading} at fr.raksrinana.fallingtree.common.FallingTreeCommon.<init>(FallingTreeCommon.java:35) ~[FallingTree-1.18.2-3.5.1.jar%23132!/:3.5.1] {re:classloading} at fr.raksrinana.fallingtree.forge.common.FallingTreeCommonsImpl.<init>(FallingTreeCommonsImpl.java:57) ~[FallingTree-1.18.2-3.5.1.jar%23132!/:3.5.1] {re:classloading} at fr.raksrinana.fallingtree.forge.FallingTree.<clinit>(FallingTree.java:18) ~[FallingTree-1.18.2-3.5.1.jar%23132!/:3.5.1] {re:classloading} at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {} at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {} at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {} at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:67) ~[javafmllanguage-1.18.2-40.1.52.jar%23252!/:?] {} at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:106) ~[fmlcore-1.18.2-40.1.52.jar%23251!/:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {} at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {} at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {} at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {re:computing_frames} at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {re:computing_frames} at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {} Mod File: FallingTree-1.18.2-3.5.1.jar Failure message: FallingTree (fallingtree) has failed to load correctly java.lang.ExceptionInInitializerError: null Mod Version: 3.5.1 Mod Issue URL: https://github.com/RakSrinaNa/FallingTree/issues Exception message: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $ Stacktrace: at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:384) ~[gson-2.8.9.jar%2334!/:?] {} at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:215) ~[gson-2.8.9.jar%2334!/:?] {} at com.google.gson.Gson.fromJson(Gson.java:963) ~[gson-2.8.9.jar%2334!/:?] {re:mixin} at com.google.gson.Gson.fromJson(Gson.java:901) ~[gson-2.8.9.jar%2334!/:?] {re:mixin} at fr.raksrinana.fallingtree.common.config.ConfigLoader.loadConfig(ConfigLoader.java:22) ~[FallingTree-1.18.2-3.5.1.jar%23132!/:3.5.1] {re:classloading} at fr.raksrinana.fallingtree.common.config.Configuration.read(Configuration.java:43) ~[FallingTree-1.18.2-3.5.1.jar%23132!/:3.5.1] {re:classloading} at fr.raksrinana.fallingtree.common.FallingTreeCommon.<init>(FallingTreeCommon.java:35) ~[FallingTree-1.18.2-3.5.1.jar%23132!/:3.5.1] {re:classloading} at fr.raksrinana.fallingtree.forge.common.FallingTreeCommonsImpl.<init>(FallingTreeCommonsImpl.java:57) ~[FallingTree-1.18.2-3.5.1.jar%23132!/:3.5.1] {re:classloading} at fr.raksrinana.fallingtree.forge.FallingTree.<clinit>(FallingTree.java:18) ~[FallingTree-1.18.2-3.5.1.jar%23132!/:3.5.1] {re:classloading} at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {} at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {} at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {} at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:67) ~[javafmllanguage-1.18.2-40.1.52.jar%23252!/:?] {} at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:106) ~[fmlcore-1.18.2-40.1.52.jar%23251!/:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {} at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {} at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {} at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {re:computing_frames} at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {re:computing_frames} at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {} -- MOD nourished_end -- Details: Caused by 0: java.lang.ExceptionInInitializerError at java.lang.Class.forName0(Native Method) ~[?:?] {re:mixin} at java.lang.Class.forName(Class.java:467) ~[?:?] {re:mixin} at net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber.lambda$inject$6(AutomaticEventSubscriber.java:61) ~[javafmllanguage-1.18.2-40.1.52.jar%23252!/:?] {} at java.util.ArrayList.forEach(ArrayList.java:1511) ~[?:?] {re:mixin} at net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber.inject(AutomaticEventSubscriber.java:48) ~[javafmllanguage-1.18.2-40.1.52.jar%23252!/:?] {} at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:77) ~[javafmllanguage-1.18.2-40.1.52.jar%23252!/:?] {} at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:106) ~[fmlcore-1.18.2-40.1.52.jar%23251!/:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {} at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {} at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {} at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {re:computing_frames} at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {re:computing_frames} at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {} Mod File: Enlightened End BB V1.5.jar Failure message: Enlightened End (nourished_end) has failed to load correctly java.lang.ExceptionInInitializerError: null Mod Version: 1.1.0 Mod Issue URL: NOT PROVIDED Exception message: java.lang.NullPointerException: Cannot invoke "com.google.gson.JsonElement.getAsInt()" because the return value of "com.google.gson.JsonObject.get(String)" is null Stacktrace: at dqu.additionaladditions.config.Config.load(Config.java:71) ~[additionaladditions-4.0.5.jar%2354!/:4.0.5] {re:mixin,re:classloading} at dqu.additionaladditions.config.Config.get(Config.java:125) ~[additionaladditions-4.0.5.jar%2354!/:4.0.5] {re:mixin,re:classloading} at dqu.additionaladditions.config.Config.getBool(Config.java:96) ~[additionaladditions-4.0.5.jar%2354!/:4.0.5] {re:mixin,re:classloading} at net.minecraft.world.entity.Mob.<clinit>(Mob.java:73) ~[client-1.18.2-20220404.173914-srg.jar%23250!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:AdditionalAdditions.mixins.json:MobMixin,pl:mixin:APP:biomemakeover-common.mixins.json:MobAccess,pl:mixin:APP:bookshelf.common.mixins.json:entity.AccessorMob,pl:mixin:APP:radium.mixins.json:entity.inactive_navigations.MobEntityMixin,pl:mixin:APP:radium.mixins.json:entity.skip_equipment_change_check.MobEntityMixin,pl:mixin:A} at java.lang.Class.forName0(Native Method) ~[?:?] {re:mixin} at java.lang.Class.forName(Class.java:467) ~[?:?] {re:mixin} at net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber.lambda$inject$6(AutomaticEventSubscriber.java:61) ~[javafmllanguage-1.18.2-40.1.52.jar%23252!/:?] {} at java.util.ArrayList.forEach(ArrayList.java:1511) ~[?:?] {re:mixin} at net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber.inject(AutomaticEventSubscriber.java:48) ~[javafmllanguage-1.18.2-40.1.52.jar%23252!/:?] {} at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:77) ~[javafmllanguage-1.18.2-40.1.52.jar%23252!/:?] {} at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:106) ~[fmlcore-1.18.2-40.1.52.jar%23251!/:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {} at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {} at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {} at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {re:computing_frames} at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {re:computing_frames} at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {} -- MOD additionaladditions -- Details: Caused by 0: java.lang.reflect.InvocationTargetException at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {} at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {} at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {} at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:67) ~[javafmllanguage-1.18.2-40.1.52.jar%23252!/:?] {} at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:106) ~[fmlcore-1.18.2-40.1.52.jar%23251!/:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {} at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {} at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {} at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {re:computing_frames} at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {re:computing_frames} at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {} Mod File: additionaladditions-4.0.5.jar Failure message: Additional Additions (additionaladditions) has failed to load correctly java.lang.reflect.InvocationTargetException: null Mod Version: 4.0.5 Mod Issue URL: https://github.com/Additional-Mods/additionaladditions Exception message: java.lang.NullPointerException: Cannot invoke "com.google.gson.JsonElement.getAsInt()" because the return value of "com.google.gson.JsonObject.get(String)" is null Stacktrace: at dqu.additionaladditions.config.Config.load(Config.java:71) ~[additionaladditions-4.0.5.jar%2354!/:4.0.5] {re:mixin,re:classloading} at dqu.additionaladditions.AdditionalAdditions.<init>(AdditionalAdditions.java:32) ~[additionaladditions-4.0.5.jar%2354!/:4.0.5] {re:mixin,re:classloading} at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {} at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {} at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {} at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:67) ~[javafmllanguage-1.18.2-40.1.52.jar%23252!/:?] {} at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:106) ~[fmlcore-1.18.2-40.1.52.jar%23251!/:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {} at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {} at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {} at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {re:computing_frames} at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {re:computing_frames} at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {} -- System Details -- Details: Minecraft Version: 1.18.2 Minecraft Version ID: 1.18.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 17.0.1, Microsoft Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft Memory: 201245312 bytes (191 MiB) / 1279262720 bytes (1220 MiB) up to 4294967296 bytes (4096 MiB) CPUs: 4 Processor Vendor: GenuineIntel Processor Name: Intel(R) Core(TM) i3-8100 CPU @ 3.60GHz Identifier: Intel64 Family 6 Model 158 Stepping 11 Microarchitecture: Coffee Lake Frequency (GHz): 3.60 Number of physical packages: 1 Number of physical CPUs: 4 Number of logical CPUs: 4 Graphics card #0 name: Intel(R) UHD Graphics 630 Graphics card #0 vendor: Intel Corporation (0x8086) Graphics card #0 VRAM (MB): 1024.00 Graphics card #0 deviceId: 0x3e91 Graphics card #0 versionInfo: DriverVersion=30.0.101.1404 Memory slot #0 capacity (MB): 8192.00 Memory slot #0 clockSpeed (GHz): 2.67 Memory slot #0 type: DDR4 Virtual memory max (MB): 18705.85 Virtual memory used (MB): 10895.90 Swap memory total (MB): 10677.23 Swap memory used (MB): 564.29 JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx4096m -Xms256m Loaded Shaderpack: (off) ModLauncher: 9.1.3+9.1.3+main.9b69c82a ModLauncher launch target: forgeclient ModLauncher naming: srg ModLauncher services: mixin PLUGINSERVICE eventbus PLUGINSERVICE slf4jfixer PLUGINSERVICE object_holder_definalize PLUGINSERVICE runtime_enum_extender PLUGINSERVICE capability_token_subclass PLUGINSERVICE accesstransformer PLUGINSERVICE runtimedistcleaner PLUGINSERVICE mixin TRANSFORMATIONSERVICE fml TRANSFORMATIONSERVICE FML Language Providers: minecraft@1.0 lowcodefml@null kotlinforforge@3.6.0 javafml@null Mod List: dynamiclightsreforged-1.18.2_v1.3.3.jar |Rubidium Dynamic Lights |dynamiclightsreforged |1.18.2_v1.3.3 |COMMON_SET|Manifest: NOSIGNATURE YungsBetterDungeons-1.18.2-Forge-2.1.0.jar |YUNG's Better Dungeons |betterdungeons |1.18.2-Forge-2.1.0 |COMMON_SET|Manifest: NOSIGNATURE auudio_forge_1.0.3_MC_1.18-1.18.2.jar |Auudio |auudio |1.0.3 |COMMON_SET|Manifest: NOSIGNATURE cftlc-1.0.1+1.18.2.jar |Creatures from the Lush Cave |cftlc |1.0.1 |COMMON_SET|Manifest: NOSIGNATURE stalwart-dungeons-1.18.2-1.2.2.jar |Stalwart Dungeons |stalwart_dungeons |1.2.2 |COMMON_SET|Manifest: NOSIGNATURE bambooeverything-1.2.7-build.14+mc1.18.2.jar |Bamboo Everything |bambooeverything |1.2.7-build.14+mc1.1|COMMON_SET|Manifest: NOSIGNATURE Strawgolem-forge-1.18.2-2.0.0b1.jar |Straw Golem |strawgolem |2.0.0b1 |COMMON_SET|Manifest: NOSIGNATURE rubidium-0.5.2a.jar |Rubidium |rubidium |0.5.2a |COMMON_SET|Manifest: NOSIGNATURE duckling-1.0.5-forge.jar |Duckling |duckling |1.0.5 |COMMON_SET|Manifest: NOSIGNATURE YungsApi-1.18.2-Forge-2.0.8.jar |YUNG's API |yungsapi |1.18.2-Forge-2.0.8 |COMMON_SET|Manifest: NOSIGNATURE wildbackport-1.1.2.jar |WildBackport |wildbackport |1.1.2 |COMMON_SET|Manifest: NOSIGNATURE upgradednetherite_items-1.18.2-3.2.0.0-release.jar|Upgraded Netherite : Items |upgradednetherite_items |1.18.2-3.2.0.0-relea|COMMON_SET|Manifest: NOSIGNATURE guardvillagers-1.18.2.1.4.3.jar |Guard Villagers |guardvillagers |1.4.3 |COMMON_SET|Manifest: NOSIGNATURE PickUpNotifier-v3.2.0-1.18.2-Forge.jar |Pick Up Notifier |pickupnotifier |3.2.0 |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a balm-3.1.0+0.jar |Balm |balm |3.1.0+0 |COMMON_SET|Manifest: NOSIGNATURE JustEnoughResources-1.18.2-0.14.1.171.jar |Just Enough Resources |jeresources |0.14.1.171 |COMMON_SET|Manifest: NOSIGNATURE cloth-config-6.2.62-forge.jar |Cloth Config v4 API |cloth_config |6.2.62 |COMMON_SET|Manifest: NOSIGNATURE revampedwolf-1.18.2-1.2.0.jar |RevampedWolf |revampedwolf |1.18.2-1.2.0 |COMMON_SET|Manifest: NOSIGNATURE upgradednetherite-1.18.2-4.2.0.6-release.jar |Upgraded Netherite |upgradednetherite |1.18.2-4.2.0.6-relea|COMMON_SET|Manifest: NOSIGNATURE structure_gel-1.18.2-2.4.4.jar |Structure Gel API |structure_gel |2.4.4 |COMMON_SET|Manifest: NOSIGNATURE corpse-1.18.2-1.0.1.jar |Corpse |corpse |1.18.2-1.0.1 |COMMON_SET|Manifest: NOSIGNATURE repurposed_structures_forge-5.1.14+1.18.2.jar |Repurposed Structures |repurposed_structures |5.1.14+1.18.2 |COMMON_SET|Manifest: NOSIGNATURE morevillagers-forge-1.18.2-3.3.2.jar |More Villagers |morevillagers |3.3.2 |COMMON_SET|Manifest: NOSIGNATURE BetterCompatibilityChecker-1.1.14-build.26+mc1.18.|Better Compatibility Checker |bcc |1.1.14-build.26+mc1.|COMMON_SET|Manifest: NOSIGNATURE verdure-1.18.2-1.1.2.jar |Verdure |verdure |1.1.2 |COMMON_SET|Manifest: NOSIGNATURE geode-1.0.7.jar |Geode+ |geode |1.0.7 |COMMON_SET|Manifest: NOSIGNATURE supermartijn642corelib-1.0.18-forge-mc1.18.jar |SuperMartijn642's Core Lib |supermartijn642corelib |1.0.18 |COMMON_SET|Manifest: NOSIGNATURE YungsBridges-1.18.2-Forge-2.1.0.jar |YUNG's Bridges |yungsbridges |1.18.2-Forge-2.1.0 |COMMON_SET|Manifest: NOSIGNATURE Highlighter-1.18.1-1.1.2.jar |Highlighter |highlighter |1.1.2 |COMMON_SET|Manifest: NOSIGNATURE spark-1.9.11-forge.jar |spark |spark |1.9.11 |COMMON_SET|Manifest: NOSIGNATURE curios-forge-1.18.2-5.0.7.1.jar |Curios API |curios |1.18.2-5.0.7.1 |COMMON_SET|Manifest: NOSIGNATURE corail_woodcutter-1.18.2-2.3.5.jar |Corail Woodcutter |corail_woodcutter |2.3.5 |COMMON_SET|Manifest: NOSIGNATURE oculus-mc1.18.2-1.2.5.jar |Oculus |oculus |1.2.5 |COMMON_SET|Manifest: NOSIGNATURE YungsExtras-1.18.2-Forge-2.1.0.jar |YUNG's Extras |yungsextras |1.18.2-Forge-2.1.0 |COMMON_SET|Manifest: NOSIGNATURE biomeinfo-1.18.2-1.4.jar |BiomeInfo |biomeinfo |1.4 |COMMON_SET|Manifest: NOSIGNATURE Adorn-3.5.0+1.18.2-forge.jar |Adorn |adorn |3.5.0+1.18.2 |COMMON_SET|Manifest: NOSIGNATURE BetterShieldsMC1.18.1-1.0.1.jar |Better Shields |bettershields |1.0.1 |COMMON_SET|Manifest: NOSIGNATURE FallingTree-1.18.2-3.5.1.jar |FallingTree |fallingtree |3.5.1 |ERROR |Manifest: 3c:8e:df:6c:df:a6:2a:9f:af:64:ea:04:9a:cf:65:92:3b:54:93:0e:96:50:b4:52:e1:13:42:18:2b:ae:40:29 EasyShulkerBoxes-v3.1.1-1.18.2-Forge.jar |Easy Shulker Boxes |easyshulkerboxes |3.1.1 |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a YungsBetterMineshafts-1.18.2-Forge-2.1.4.jar |YUNG's Better Mineshafts |bettermineshafts |1.18.2-Forge-2.1.4 |COMMON_SET|Manifest: NOSIGNATURE veinmining-forge-1.18.2-0.18.jar |Vein Mining |veinmining |1.18.2-0.18 |COMMON_SET|Manifest: NOSIGNATURE geckolib-forge-1.18-3.0.26.jar |GeckoLib |geckolib3 |3.0.26 |COMMON_SET|Manifest: NOSIGNATURE BetterModsButton-v3.2.2-1.18.2-Forge.jar |Better Mods Button |bettermodsbutton |3.2.2 |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a NekosEnchantedBooks-1.18.2-1.7.0.jar |Neko's Enchanted Books |nebs |1.7.0 |COMMON_SET|Manifest: NOSIGNATURE DarkPaintings-Forge-1.18.2-10.0.3.jar |DarkPaintings |darkpaintings |10.0.3 |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 radium-0.7.10.jar |Radium |radium |0.7.10 |COMMON_SET|Manifest: NOSIGNATURE clienttweaks-forge-1.18.1-7.1.0.jar |Client Tweaks |clienttweaks |7.1.0 |COMMON_SET|Manifest: NOSIGNATURE ConfigMenusForge-v3.2.0-1.18.2-Forge.jar |Config Menus for Forge |configmenusforge |3.2.0 |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a jei-1.18.2-9.7.0.196.jar |Just Enough Items |jei |9.7.0.196 |COMMON_SET|Manifest: NOSIGNATURE VisualWorkbench-v3.3.0-1.18.2-Forge.jar |Visual Workbench |visualworkbench |3.3.0 |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a UniversalBoneMeal-v3.0.5-1.18.2-Forge.jar |Universal Bone Meal |universalbonemeal |3.0.5 |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a The_Graveyard_1.9.1_(FORGE)_for_1.18.2.jar |The Graveyard |graveyard |1.9.1 |COMMON_SET|Manifest: NOSIGNATURE AttributeFix-Forge-1.18.2-14.0.2.jar |AttributeFix |attributefix |14.0.2 |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 goblintraders-1.7.2-1.18.2.jar |Goblin Traders |goblintraders |1.7.2 |COMMON_SET|Manifest: NOSIGNATURE caelus-forge-1.18.1-3.0.0.2.jar |Caelus API |caelus |1.18.1-3.0.0.2 |COMMON_SET|Manifest: NOSIGNATURE Paxi-1.18.2-Forge-2.0.jar |Paxi |paxi |1.18.2-Forge-2.0 |COMMON_SET|Manifest: NOSIGNATURE immersive_weathering-1.18.2-1.2.11.jar |Immersive Weathering |immersive_weathering |1.18.2-1.2.11 |COMMON_SET|Manifest: NOSIGNATURE Fallingleaves-1.18.2-1.3.2.jar |Falling Leaves |fallingleaves |1.3.2 |COMMON_SET|Manifest: NOSIGNATURE NaturesCompass-1.18.2-1.9.5-forge.jar |Nature's Compass |naturescompass |1.18.2-1.9.5-forge |COMMON_SET|Manifest: NOSIGNATURE additionalbars-3.0.1-beta+1.18.2.jar |Additional Bars |additionalbars |3.0.1-beta |COMMON_SET|Manifest: NOSIGNATURE SereneSeasons-1.18.2-7.0.0.15.jar |Serene Seasons |sereneseasons |0.0NONE |COMMON_SET|Manifest: NOSIGNATURE curioofundying-forge-1.18-5.3.0.0.jar |Curio of Undying |curioofundying |1.18-5.3.0.0 |COMMON_SET|Manifest: NOSIGNATURE snuffles-1.0.2.jar |Snuffles |snuffles |1.0.2 |COMMON_SET|Manifest: NOSIGNATURE DeleteWorldsToTrash-v3.2.0-1.18.2-Forge.jar |Delete Worlds To Trash |deleteworldstotrash |3.2.0 |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a JEITweaker-1.18.2-3.0.0.8.jar |JEI Tweaker |jeitweaker |3.0.0.8 |COMMON_SET|Manifest: NOSIGNATURE CraftTweaker-forge-1.18.2-9.1.157.jar |CraftTweaker |crafttweaker |9.1.157 |COMMON_SET|Manifest: NOSIGNATURE rubidium_extras-1.18.2_v1.3.1.jar |Rubidium Extras |rubidium_extras |1.18.2_v1.3.1 |COMMON_SET|Manifest: NOSIGNATURE forge-1.18.2-40.1.52-universal.jar |Forge |forge |40.1.52 |COMMON_SET|Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90 DungeonsArise-1.18.2-2.1.50d-beta.jar |When Dungeons Arise |dungeons_arise |2.1.50d-1.18.2 |COMMON_SET|Manifest: NOSIGNATURE radon-0.8.1.jar |Radon |radon |0.8.1 |COMMON_SET|Manifest: NOSIGNATURE TerraBlender-forge-1.18.2-1.1.0.102.jar |TerraBlender |terrablender |1.18.2-1.1.0.102 |COMMON_SET|Manifest: NOSIGNATURE MouseTweaks-forge-mc1.18-2.21.jar |Mouse Tweaks |mousetweaks |2.21 |COMMON_SET|Manifest: NOSIGNATURE Paintings-forge-1.18.2-9.1.2.1.jar |Paintings ++ |paintings |9.1.2.1 |COMMON_SET|Manifest: NOSIGNATURE notenoughanimations-forge-1.6.0-mc1.18.2.jar |NotEnoughAnimations Mod |notenoughanimations |1.6.0 |COMMON_SET|Manifest: NOSIGNATURE polymorph-forge-1.18.2-0.44.jar |Polymorph |polymorph |1.18.2-0.44 |COMMON_SET|Manifest: NOSIGNATURE JustEnoughProfessions-1.18.2-1.2.2.jar |Just Enough Professions (JEP) |justenoughprofessions |1.2.2 |COMMON_SET|Manifest: NOSIGNATURE AutoRegLib-1.7-53.jar |AutoRegLib |autoreglib |1.7-53 |COMMON_SET|Manifest: NOSIGNATURE EarthMobs-1.18.2-1.1.2.jar |Earth Mobs Mod |earthmobsmod |1.18.2-1.1.2 |COMMON_SET|Manifest: NOSIGNATURE entityculling-forge-mc1.18-1.5.1.jar |EntityCulling |entityculling |1.5.1 |COMMON_SET|Manifest: NOSIGNATURE backpacked-2.1.8-1.18.2.jar |Backpacked |backpacked |2.1.8 |COMMON_SET|Manifest: NOSIGNATURE upgradednetherite_ultimate-1.18.2-3.2.0.1-release.|Upgraded Netherite : Ultimerit|upgradednetherite_ultimate |1.18.2-3.2.0.1-relea|COMMON_SET|Manifest: NOSIGNATURE PuzzlesLib-v3.3.5-1.18.2-Forge.jar |Puzzles Lib |puzzleslib |3.3.5 |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a Oh_The_Biomes_You'll_Go-forge-1.18.2-1.4.1.jar |Oh The Biomes You'll Go |byg |1.4 |COMMON_SET|Manifest: NOSIGNATURE Aquaculture-1.18.2-2.3.7.jar |Aquaculture 2 |aquaculture |1.18.2-2.3.7 |COMMON_SET|Manifest: NOSIGNATURE xptome-1.18.2-2.1.5.jar |XP Tome |xpbook |2.1.5 |COMMON_SET|Manifest: NOSIGNATURE blue_skies-1.18.2-1.3.12.jar |Blue Skies |blue_skies |1.3.12 |COMMON_SET|Manifest: NOSIGNATURE YungsBetterWitchHuts-1.18.2-Forge-1.0.jar |YUNG's Better Witch Huts |betterwitchhuts |1.18.2-Forge-1.0 |COMMON_SET|Manifest: NOSIGNATURE netherportalfix-forge-1.18-9.0.0.jar |NetherPortalFix |netherportalfix |9.0.0 |COMMON_SET|Manifest: NOSIGNATURE AdditionalBanners-Forge-1.18.2-7.0.6.jar |AdditionalBanners |additionalbanners |7.0.6 |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 incontrol-1.18-6.0.11.jar |InControl |incontrol |1.18-6.0.11 |COMMON_SET|Manifest: NOSIGNATURE Tips-Forge-1.18.2-5.0.3.jar |Tips |tipsmod |5.0.3 |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 kleeslabs-forge-1.18.2-11.1.1.jar |KleeSlabs |kleeslabs |11.1.1 |COMMON_SET|Manifest: NOSIGNATURE villagernames_1.18.2-3.5.jar |Villager Names |villagernames |3.5 |COMMON_SET|Manifest: NOSIGNATURE XaerosWorldMap_1.23.3_Forge_1.18.2.jar |Xaero's World Map |xaeroworldmap |1.23.3 |COMMON_SET|Manifest: NOSIGNATURE Controlling-forge-1.18.2-9.0+19.jar |Controlling |controlling |9.0+19 |COMMON_SET|Manifest: NOSIGNATURE citadel-1.11.3-1.18.2.jar |Citadel |citadel |1.11.3 |COMMON_SET|Manifest: NOSIGNATURE alexsmobs-1.18.5.jar |Alex's Mobs |alexsmobs |1.18.5 |COMMON_SET|Manifest: NOSIGNATURE feature_nbt_deadlock_be_gone_forge-2.0.0+1.18.2.ja|Feature NBT Deadlock Be Gone |feature_nbt_deadlock_be_gone |2.0.0+1.18.2 |COMMON_SET|Manifest: NOSIGNATURE Bookshelf-Forge-1.18.2-13.2.21.jar |Bookshelf |bookshelf |13.2.21 |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 twigs-forge-1.1.4-patch3+1.18.2.jar |Twigs |twigs |1.1.4-patch1+1.18.2 |COMMON_SET|Manifest: NOSIGNATURE jeed-1.18.2-1.11.jar |Just Enough Effect Description|jeed |1.18.2-1.11 |COMMON_SET|Manifest: NOSIGNATURE Rex's-AdditionalStructures-1.18.2-(v.3.1.0).jar |Additional Structures |additionalstructures |3.1.0 |COMMON_SET|Manifest: NOSIGNATURE bygonenether-1.1.2-1.18.2.jar |Bygone Nether |bygonenether |1.1.2 |COMMON_SET|Manifest: NOSIGNATURE carryon-1.18.2-1.17.0.8.jar |Carry On |carryon |1.17.0.8 |COMMON_SET|Manifest: NOSIGNATURE dragonmounts-1.18.2-BETA_1.1.0b1.jar |Dragon Mounts: Legacy |dragonmounts |1.18.2-BETA_1.1.0b1 |COMMON_SET|Manifest: NOSIGNATURE absentbydesign-1.18.2-1.6.2.jar |Absent By Design Mod |absentbydesign |1.18.2-1.6.2 |COMMON_SET|Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed twilightforest-1.18.2-4.1.1102-universal.jar |The Twilight Forest |twilightforest |4.1.1102 |COMMON_SET|Manifest: NOSIGNATURE konkrete_forge_1.3.3_MC_1.18-1.18.1.jar |Konkrete |konkrete |1.3.3 |COMMON_SET|Manifest: NOSIGNATURE JEIEnchantmentInfo-1.17.1-2.0.0.jar |JEI Enchantment Info |jeienchantmentinfo |1.17.1-2.0.0 |COMMON_SET|Manifest: NOSIGNATURE EquipmentCompare-1.18.1-1.2.12.jar |Equipment Compare |equipmentcompare |1.2.12 |COMMON_SET|Manifest: NOSIGNATURE chipped-1.18.2-1.2.1-forge.jar |Chipped |chipped |1.18.2-1.2.1-forge |COMMON_SET|Manifest: NOSIGNATURE FarmersDelight-1.18.2-1.1.2.jar |Farmer's Delight |farmersdelight |1.18.2-1.1.2 |COMMON_SET|Manifest: NOSIGNATURE Snow_Pig-1.18.2-4.2.0.jar |Snow Pig |snowpig |1.18.2-4.2.0 |COMMON_SET|Manifest: NOSIGNATURE culturaldelights-1.18.2-0.11.jar |Cultural Delights |culturaldelights |1.18.2-0.11 |COMMON_SET|Manifest: NOSIGNATURE FarmersRespite-1.18.2-1.2.0.jar |Farmer's Respite |farmersrespite |1.18.1-1.2.0 |COMMON_SET|Manifest: NOSIGNATURE simpleshops-1.2.1.jar |Simple Shops |simpleshops |1.1.4 |COMMON_SET|Manifest: NOSIGNATURE skinned_lanterns-1.18.2-1.3.4.jar |Skinned Lanterns |skinnedlanterns |1.18.2-1.3.4 |COMMON_SET|Manifest: NOSIGNATURE JER-Integration-3.3.1.jar |JER Integration |jerintegration |3.3.1 |COMMON_SET|Manifest: NOSIGNATURE Illager Plushies 1.1.5 1.18.2.jar |Illager Plushies |illager_plushies |1.1.5 |COMMON_SET|Manifest: NOSIGNATURE Cataclysm-0.19.jar |Cataclysm Mod |cataclysm |1.0 |COMMON_SET|Manifest: NOSIGNATURE Patchouli-1.18.2-71.1.jar |Patchouli |patchouli |1.18.2-71.1 |COMMON_SET|Manifest: NOSIGNATURE collective-1.18.2-4.28.jar |Collective |collective |4.28 |COMMON_SET|Manifest: NOSIGNATURE villagertools-1.18-1.0.2.jar |villagertools |villagertools |1.18-1.0.2 |COMMON_SET|Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed BetterThirdPerson-Forge-1.18.2-1.8.1.jar |Better Third Person |betterthirdperson |1.8.1 |COMMON_SET|Manifest: NOSIGNATURE elevatorid-1.18.2-1.8.4.jar |Elevator Mod |elevatorid |1.18.2-1.8.4 |COMMON_SET|Manifest: NOSIGNATURE YungsBetterStrongholds-1.18.2-Forge-2.1.1.jar |YUNG's Better Strongholds |betterstrongholds |1.18.2-Forge-2.1.1 |COMMON_SET|Manifest: NOSIGNATURE Runelic-Forge-1.18.2-11.0.1.jar |Runelic |runelic |11.0.1 |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 starterkit_1.18.2-3.2.jar |Starter Kit |starterkit |3.2 |COMMON_SET|Manifest: NOSIGNATURE Spirit-forge-1.18.2-1.3.0.jar |Spirit |spirit |1.3.0 |COMMON_SET|Manifest: NOSIGNATURE architectury-4.5.75-forge.jar |Architectury |architectury |4.5.75 |COMMON_SET|Manifest: NOSIGNATURE ftb-library-forge-1802.3.6-build.123.jar |FTB Library |ftblibrary |1802.3.6-build.123 |COMMON_SET|Manifest: NOSIGNATURE ftb-teams-forge-1802.2.6-build.51.jar |FTB Teams |ftbteams |1802.2.6-build.51 |COMMON_SET|Manifest: NOSIGNATURE curiouselytra-forge-1.18.1-5.0.1.0.jar |Curious Elytra |curiouselytra |1.18.1-5.0.1.0 |COMMON_SET|Manifest: NOSIGNATURE AI-Improvements-1.18.2-0.5.0.jar |AI-Improvements |aiimprovements |0.5.0 |COMMON_SET|Manifest: NOSIGNATURE cherishedworlds-forge-1.18-5.1.1.0.jar |Cherished Worlds |cherishedworlds |1.18-5.1.1.0 |COMMON_SET|Manifest: NOSIGNATURE enchantwithmob-1.18.2-4.2.0.jar |Enchant With Mob |enchantwithmob |1.18.2-4.2.0 |COMMON_SET|Manifest: NOSIGNATURE Towns-and-Towers-1.18.2-1.6.0.jar |Towns and Towers - Structure A|t_and_t |1.6 |COMMON_SET|Manifest: NOSIGNATURE mavm-mc1.18.2-forge-1.0.8b.jar |More Axolotl Variants Mod |mavm |1.0.8b |COMMON_SET|Manifest: NOSIGNATURE voidtotem-forge-1.18.2-1.3.1.jar |Void Totem |voidtotem |1.18.2-1.3.1 |COMMON_SET|Manifest: NOSIGNATURE TradingPost-v3.2.0-1.18.2-Forge.jar |Trading Post |tradingpost |3.2.0 |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a BetterAdvancements-1.18.2-0.1.2.125.jar |Better Advancements |betteradvancements |0.1.2.125 |COMMON_SET|Manifest: NOSIGNATURE BH-Menu-1.18.2-1.3.jar |Bisect Hosting Menu |bhmenu |1.18.2-1.3 |COMMON_SET|Manifest: NOSIGNATURE biomemakeover-FORGE-1.18.2-1.4.24.jar |Biome Makeover |biomemakeover |1.18.2-1.4.24 |COMMON_SET|Manifest: NOSIGNATURE additionallanterns-1.0.1-mc1.18.jar |Additional Lanterns |additionallanterns |1.0.1 |COMMON_SET|Manifest: NOSIGNATURE NourishedNetherV12.jar |Nourished Nether |nourished_nether |1.1.3 |COMMON_SET|Manifest: NOSIGNATURE item-filters-forge-1802.2.7-build.29.jar |Item Filters |itemfilters |1802.2.7-build.29 |COMMON_SET|Manifest: NOSIGNATURE ftb-quests-forge-1802.3.8-build.101.jar |FTB Quests |ftbquests |1802.3.8-build.101 |COMMON_SET|Manifest: NOSIGNATURE EasyMagic-v3.3.0-1.18.2-Forge.jar |Easy Magic |easymagic |3.3.0 |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a Enlightened End BB V1.5.jar |Enlightened End |nourished_end |1.1.0 |ERROR |Manifest: NOSIGNATURE Steve's_Vanilla_v0.4.0+1.18.2.jar |Steve's Vanilla |steves_vanilla |0.4.0 |COMMON_SET|Manifest: NOSIGNATURE the-conjurer-1.18.2-1.1.1.jar |The Conjurer |conjurer_illager |1.1.1 |COMMON_SET|Manifest: NOSIGNATURE simple-rpc-1.18.2-3.0.1.jar |Simple RPC |simplerpc |3.0.1 |COMMON_SET|Manifest: NOSIGNATURE waystones-forge-1.18.2-10.1.0.jar |Waystones |waystones |10.1.0 |COMMON_SET|Manifest: NOSIGNATURE MerchantMarkers-1.18.2-1.2.0.jar |Merchant Markers |merchantmarkers |1.2.0 |COMMON_SET|Manifest: NOSIGNATURE Xaeros_Minimap_22.9.3_Forge_1.18.2.jar |Xaero's Minimap |xaerominimap |22.9.3 |COMMON_SET|Manifest: NOSIGNATURE Clumps-forge-1.18.2-8.0.0+10.jar |Clumps |clumps |8.0.0+10 |COMMON_SET|Manifest: NOSIGNATURE village-employment-1.18.2-1.5.1.jar |Village Employment |village_employment |1.5.1 |COMMON_SET|Manifest: NOSIGNATURE comforts-forge-1.18.2-5.0.0.4.jar |Comforts |comforts |1.18.2-5.0.0.4 |COMMON_SET|Manifest: NOSIGNATURE SimpleStorageNetwork-1.18.2-1.6.1.jar |Simple Storage Network |storagenetwork |1.18.2-1.6.1 |COMMON_SET|Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed Decorative Blocks-forge-1.18.2-2.1.0.jar |Decorative Blocks |decorative_blocks |2.1.0 |COMMON_SET|Manifest: NOSIGNATURE BadMobs-1.18.2-13.01.jar |BadMobs |badmobs |13.01 |COMMON_SET|Manifest: NOSIGNATURE More Babies-forge-1.18.1-0.5.2.jar |More Babies |more_babies |0.5.2 |COMMON_SET|Manifest: NOSIGNATURE lazydfu-1.0-1.18+.jar |LazyDFU |lazydfu |0.1.3 |COMMON_SET|Manifest: NOSIGNATURE everycomp-1.18.2-1.5.7.jar |Every Compat |everycomp |1.18.2-1.5.7 |COMMON_SET|Manifest: NOSIGNATURE YungsBetterDesertTemples-1.18.2-Forge-1.1.0.jar |YUNG's Better Desert Temples |betterdeserttemples |1.18.2-Forge-1.1.0 |COMMON_SET|Manifest: NOSIGNATURE blueprint-1.18.2-5.4.0.jar |Blueprint |blueprint |5.4.0 |COMMON_SET|Manifest: NOSIGNATURE AkashicTome-1.5-20.jar |Akashic Tome |akashictome |1.5-20 |COMMON_SET|Manifest: NOSIGNATURE ftb-chunks-forge-1802.3.6-build.147.jar |FTB Chunks |ftbchunks |1802.3.6-build.147 |COMMON_SET|Manifest: NOSIGNATURE 3dskinlayers-forge-1.4.6-mc1.18.2.jar |3dSkinLayers |skinlayers3d |1.4.6 |COMMON_SET|Manifest: NOSIGNATURE curiouslights-forge-1.1.0+1.18.2.jar |Curious Lights |curiouslights |1.1.0+1.18.2 |COMMON_SET|Manifest: NOSIGNATURE forgottenrecipes-forge-1.18.1-1.0.0.jar |Forgotten Recipes |forgottenrecipes |1.18.1-1.0.0 |COMMON_SET|Manifest: NOSIGNATURE friendsandfoes-forge-mc1.18.2-1.4.5.jar |Friends&Foes |friendsandfoes |1.4.5 |COMMON_SET|Manifest: NOSIGNATURE selene-1.18.2-1.17.9.jar |Selene |selene |1.18.2-1.17.9 |COMMON_SET|Manifest: NOSIGNATURE supplementaries-1.18.2-1.4.6.jar |Supplementaries |supplementaries |1.18.2-1.4.6 |COMMON_SET|Manifest: NOSIGNATURE EnchantmentDescriptions-Forge-1.18.2-10.0.4.jar |EnchantmentDescriptions |enchdesc |10.0.4 |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 dynamic_asset_generator-forge-1.18.2-0.6.3.jar |DynamicAssetGenerator |dynamic_asset_generator |0.6.3 |COMMON_SET|Manifest: NOSIGNATURE excavated_variants-forge-1.18.2-0.6.2.jar |Excavated Variants |excavated_variants |0.6.2 |COMMON_SET|Manifest: NOSIGNATURE MagnumTorch-v3.1.3-1.18.2-Forge.jar |Magnum Torch |magnumtorch |3.1.3 |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a Jade-1.18.2-forge-5.2.2.jar |Jade |jade |5.2.2 |COMMON_SET|Manifest: NOSIGNATURE additionaladditions-4.0.5.jar |Additional Additions |additionaladditions |4.0.5 |ERROR |Manifest: NOSIGNATURE snowyspirit-1.18.2-1.3.2.jar |Snowy Spirit |snowyspirit |1.18.2-1.3.2 |COMMON_SET|Manifest: NOSIGNATURE another_furniture-forge-1.1.2-1.18.2.jar |Another Furniture |another_furniture |1.1.2-1.18.2 |COMMON_SET|Manifest: NOSIGNATURE NethersDelight-1.18.2-2.2.0.jar |Nethers Delight |nethersdelight |2.2 |COMMON_SET|Manifest: NOSIGNATURE ThisRocks-1.18.2-1.0.2.jar |This Rocks! (Forge) |rocks |1.0.2 |COMMON_SET|Manifest: NOSIGNATURE Iceberg-1.18.2-1.0.44.jar |Iceberg |iceberg |1.0.44 |COMMON_SET|Manifest: NOSIGNATURE Quark-3.2-358.jar |Quark |quark |3.2-358 |COMMON_SET|Manifest: NOSIGNATURE ecologics-FORGE-1.18.2-1.6.9.jar |Ecologics |ecologics |1.6.9 |COMMON_SET|Manifest: NOSIGNATURE InventoryHud_[1.18].forge-3.4.4.jar |Inventory HUD+(Forge edition) |inventoryhud |3.4.4 |COMMON_SET|Manifest: NOSIGNATURE fancymenu_forge_2.8.0_MC_1.18.2.jar |FancyMenu |fancymenu |2.8.0 |COMMON_SET|Manifest: NOSIGNATURE drippyloadingscreen_forge_1.6.4_MC_1.18-1.18.2.jar|Drippy Loading Screen |drippyloadingscreen |1.6.4 |COMMON_SET|Manifest: NOSIGNATURE Blocks + 1.18.1 - 1.4.jar |Blocks + |blocksplus |1.4 |COMMON_SET|Manifest: NOSIGNATURE upgradedcore-1.18.2-3.2.0.0-release.jar |Upgraded Core |upgradedcore |1.18.2-3.2.0.0-relea|COMMON_SET|Manifest: NOSIGNATURE HunterIllager-1.18.2-4.0.1.jar |Hunter Illager |hunterillager |1.18.2-4.0.1 |COMMON_SET|Manifest: NOSIGNATURE illagersweararmor-1.1.5.jar |Illagers Wear Armor |zillagersweararmor |1.1.5 |COMMON_SET|Manifest: NOSIGNATURE client-1.18.2-20220404.173914-srg.jar |Minecraft |minecraft |1.18.2 |COMMON_SET|Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f creeperoverhaul-1.18.2-1.3.0-forge.jar |Creeper Overhaul |creeperoverhaul |1.3.0 |COMMON_SET|Manifest: NOSIGNATURE ferritecore-4.2.1-forge.jar |Ferrite Core |ferritecore |0.0NONE |COMMON_SET|Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a Enhanced_Celestials-forge-1.18.2-2.0.7.jar |Enhanced Celestials |enhancedcelestials |2.0.7 |COMMON_SET|Manifest: NOSIGNATURE BetterF3-1.2.5-Forge-1.18.2.jar |BetterF3 |betterf3 |1.2.5 |COMMON_SET|Manifest: NOSIGNATURE Crash Report UUID: 3559cac6-fbd1-4614-a8f3-36f99b4777a6 FML: 40.1 Forge: net.minecraftforge:40.1.52 -
By posierosie · Posted
accidentally knocked a cord loose while loading in better minecraft and now when i launch i get an error saying 3 mods have failed to load correctly. -
By DanielleNelms87 · Posted
2b2t is the king of anarchy servers in the eyes of many in the Minecraft community. The server is synonymous with the culture at this point and almost defines the genre altogether. There are absolutely zero rules in what is often humorously described as the "oldest anarchy server in Minecraft" by the community. The server also features a huge selection of some serious YouTube names who have claimed 2b2t as their home, including the likes of FitMC and Salc1. 2b2t is an absolute must-try for any players wanting to get their feet wet in the ruthlessly intense world of pure anarchy servers. The only slight downside to this server is the ridiculously long queue times in place due to its unparalleled recent success and popularity.
-
-
Topics
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.