Jump to content

(1.18.2) Good Recipe Tutorial


badkraft

Recommended Posts

I'm adding quite a few recipes. Some are shapeless but I'm not sure how to add shapeless recipes when they are like nuggets -> ingot & ingot -> nuggets.

I've also got some smelting recipes for the furnace. It looks like it is fairly involved - adding some class implementations, etc. No big deal, just need a simple, step-by-step tutorial.

I'm actually seeing where there is a huge need for tools to help build mods. Oh boy...

Any leads on adding some special recipes for the campfire would be nice... 

Link to comment
Share on other sites

Unfortunately, the results are slim. I'll approach from a couple of avenues:

1. Look at available source from other mods

2. Follow kaupenjoe's tutorial on YouTube.

 

Problem with kaupenjoe is that I'm not a advanced yet as he's starting. I've got a couple recipes to craft court ingot to nuggets and copper nuggets to ingot.

Then I've gotta add some smelting recipes to smelt nuggets ores into nuggets - copper, iron, gold.

Changing up the diamond drops a bit so I'll have some green cutting recipes to add. Those are more advanced.

Then some carpentry recipes changing up how we work with logs, planks, fencing, walls, doors, floors, etc.

Got a lot of work ahead. But it's fun.

Also gotta learn about block generation. Ugh... anyone wanna help? 😁

Edited by badkraft
formatting
Link to comment
Share on other sites

Okay, if you're having trouble with kaupenjoe's tutorials it's because he assumes you already have a solid understanding of Java, so he skips over explaining that aspect of what he's doing - which is a lot, since it's all in Java. This website should be very helpful in understanding whatever methods or parts he uses in his videos. 

https://www.w3schools.com/java/ 

Just click the GitHub link he provides with his tutorials, and look up on that site whatever you don't understand. Don't be afraid to take your time with this. Same goes for anything else you run into that you don't understand since this site covers many other programming languages, not just Java. In fact, if you click on their tutorials tab you'll find JSON under the Javascript heading in there too.

Link to comment
Share on other sites

I'm not having trouble with Java ... picking it up pretty fast. I've been a software engineer for .Net C# for 10+ years. I'm following his tutorial for an advanced block with recipes (the gem cutting station). There is a lot more to write for recipes than for just blocks and items. That's not a problem. Just having to watch many times to get it all.

Link to comment
Share on other sites

4 hours ago, badkraft said:

I'm not having trouble with Java ... picking it up pretty fast. I've been a software engineer for .Net C# for 10+ years. I'm following his tutorial for an advanced block with recipes (the gem cutting station). There is a lot more to write for recipes than for just blocks and items. That's not a problem. Just having to watch many times to get it all.

Ah, I get it. Personally, I find reading easier than listening to be honest, especially when there's a lot to process and absorb. And that guy does go fast from what I've seen. At least with a video you can pause it to compare notes and text when you need to. I'm sorry if I insulted you in any way, it wasn't my intention.

  • Like 1
Link to comment
Share on other sites

10 hours ago, badkraft said:

No...not insulted at all. No one knows who I am or what I do. No worries. I do wish there was better Forge documentation, though.

First, recipes are a vanilla system. The best thing to do is look at how vanilla does it in the source code and replicate it, replacing any necessary steps with their Forge wrapped counterpart (registries, itemstack result, etc.)

Additionally, there is some documentation on the custom recipe process; however, it is community generated. If you choose to complain about the Forge documentation, please provide information on where it is lacking on an issue on the repo. I will be happy to address those concerns since I've put myself in the position to be responsible for it.

Link to comment
Share on other sites

11 hours ago, ChampionAsh5357 said:

First, recipes are a vanilla system. The best thing to do is look at how vanilla does it in the source code and replicate it, replacing any necessary steps with their Forge wrapped counterpart (registries, itemstack result, etc.)

I've made a few recipes (smelting & shape). I have the .json recipes that, for instance, produce a spacium ingot: either smelt a spacium ore block or put 9 spacium nuggets into a crafting grid. Well, those have specific names for the json -

  • spacium_ingot_from_spacium_ore.json
  • spacium_ingot_from_spacium_nuggets.json

If there was only one shaped or shapeless recipe to create spacium ingot, then naming the recipe `spacium_ingot.json` is all you have to do. But because we have 2 recipes producing the same item from two different processes, I'm trying to figure out how to "register" these recipes. Kaupenjoe is talking about a custom item from a custom block (gem cutting).

If I need to build all the same registry items - e.g. recipe serializers - then that's fine. I'm trying to find the correlation between the name of the .json file and what is in the code. That's where I'm really missing something integral.

Link to comment
Share on other sites

3 hours ago, badkraft said:

I've made a few recipes (smelting & shape). I have the .json recipes that, for instance, produce a spacium ingot: either smelt a spacium ore block or put 9 spacium nuggets into a crafting grid. Well, those have specific names for the json -

  • spacium_ingot_from_spacium_ore.json
  • spacium_ingot_from_spacium_nuggets.json

If there was only one shaped or shapeless recipe to create spacium ingot, then naming the recipe `spacium_ingot.json` is all you have to do. But because we have 2 recipes producing the same item from two different processes, I'm trying to figure out how to "register" these recipes. Kaupenjoe is talking about a custom item from a custom block (gem cutting).

If I need to build all the same registry items - e.g. recipe serializers - then that's fine. I'm trying to find the correlation between the name of the .json file and what is in the code. That's where I'm really missing something integral.

If you used the vanilla recipe types, meaning that in the "type" part of your recipe's Json file is "smelting", "shaped_recipe", "shapeless_recipe", etc. then the only thing you need to do is put it in the recipe folder. It's the recipe types that get registered. So your recipes using vanilla types don't need anything extra once the Json file is made.

Registering for recipes come in when say you want to make a recipe "type" called maybe, I don't know, "spacium_smelting" for example. There you would tell Forge what recipe format it uses, which block entity type uses it, and how to read it, etc.

Edit: Oh, wait, I meant to also say that the vanilla "smelting" type is tied to the furnace for example while the vanilla "shaped_recipe" and "shapeless_recipe" are tied to the crafting table. So if you want these vanilla types to also be connected to your custom block entity, then you will to make a custom recipe type with a different name that uses the same format. You'd make them the same way as their serializer, but just replace the name of it with your custom name where ever it pops up and then register this custom type. After that, when you make recipes for it, you just plug in your recipe type's name in the json file and stick the file into your recipe folder. I really hope I'm making sense here.

Edited by Warren Tode
Link to comment
Share on other sites

19 hours ago, Warren Tode said:

If you used the vanilla recipe types, meaning that in the "type" part of your recipe's Json file is "smelting", "shaped_recipe", "shapeless_recipe", etc. then the only thing you need to do is put it in the recipe folder. It's the recipe types that get registered. So your recipes using vanilla types don't need anything extra once the Json file is made.

I figured out what was wrong ... you can spot it pretty quick most likely:

{
  "type": "minecraft:smelting",
  "ingredient": {
    "item": "minecraft:gold_nugget_ore"
  },
  "result": "minecraft:gold_nugget",
  "experience": 0.25,
  "cookingtime": 150
}

 

... so, after changing `minecraft` to `foundations` for all the custom items and all the recipes work. Well that's what copy/paste will get you.

One last question about recipes, though. What does the following json key/value do in the game?


  "group": "copper_ingot"

 

Edited by badkraft
Link to comment
Share on other sites

3 hours ago, badkraft said:

One last question about recipes, though. What does the following json key/value do in the game?


  "group": "copper_ingot"

 

I think the old saying is, "The devil is in the details." Far too often I find this to be the case.

The "group" defined in the json file deals with the recipe book and how crafts show up in there. I think maybe the best way to explain this is with a couple of screenshots.

sAvH1K0.png

So you see the wool and how it says "right click for more" when you hover over it? This is because I have more than one dye along with the stack of wool to craft with here. If I just sit there, it will toggle through the other colors I have available in my inventory. When you right click on it, you get this:

PZN2gtQ.png

It gives you a collection of similar recipes. This is what a "group" does. It works for vanilla and modded. You don't need to bother with it if you don't want to, but some people like it since it declutters the book so to speak.

I hope this helps.

  • Thanks 1
Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • ---- Minecraft Crash Report ---- // You're mean. Time: 4/1/23, 6:39 PM Description: Unexpected error java.lang.NullPointerException: Cannot invoke "net.minecraft.client.renderer.ShaderInstance.m_173350_(String, Object)" because "$$13" is null     at com.mojang.blaze3d.vertex.BufferUploader.m_166838_(BufferUploader.java:100) ~[client-1.18.2-20220404.173914-srg.jar%23313!/:?] {re:classloading,pl:accesstransformer:B,pl:rei_plugin_compatibilities:B,re:mixin,pl:accesstransformer:B}     at com.mojang.blaze3d.vertex.BufferUploader.m_85761_(BufferUploader.java:52) ~[client-1.18.2-20220404.173914-srg.jar%23313!/:?] {re:classloading,pl:accesstransformer:B,pl:rei_plugin_compatibilities:B,re:mixin,pl:accesstransformer:B}     at net.coderbot.batchedentityrendering.impl.BufferSegmentRenderer.drawInner(BufferSegmentRenderer.java:29) ~[oculus-1.5.2.jar%23225!/:?] {re:classloading,pl:rei_plugin_compatibilities:B}     at net.coderbot.batchedentityrendering.impl.FullyBufferedMultiBufferSource.m_109911_(FullyBufferedMultiBufferSource.java:118) ~[oculus-1.5.2.jar%23225!/:?] {re:mixin,re:classloading,pl:rei_plugin_compatibilities:B}     at net.minecraft.client.renderer.LevelRenderer.handler$beb000$batchedentityrendering$beginTranslucents(LevelRenderer.java:4591) ~[client-1.18.2-20220404.173914-srg.jar%23313!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:rei_plugin_compatibilities:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.renderer.LevelRenderer.m_109599_(LevelRenderer.java:1359) ~[client-1.18.2-20220404.173914-srg.jar%23313!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:rei_plugin_compatibilities:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.renderer.GameRenderer.m_109089_(GameRenderer.java:1061) ~[client-1.18.2-20220404.173914-srg.jar%23313!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:rei_plugin_compatibilities:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:835) ~[client-1.18.2-20220404.173914-srg.jar%23313!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:rei_plugin_compatibilities:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1046) ~[client-1.18.2-20220404.173914-srg.jar%23313!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:rei_plugin_compatibilities:B,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:braincell.mixins.json:client.MinecraftMixin,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Keybinds,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Images,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_PipelineManagement,pl:mixin:APP:fastload.mixins.json:client.MinecraftClientMixin,pl:mixin:APP:fallingleaves.mixins.json:MinecraftClientMixin,pl:mixin:APP:ars_nouveau.mixins.json:light.ClientMixin,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:antiqueatlas-common.mixins.json:MixinMinecraftClient,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:globaldataandresourcepacks.mixins.json:ClientPackFinderMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:konkrete.mixin.json:client.MixinMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:blueprint.mixins.json:client.MinecraftMixin,pl:mixin:APP:travelerstitles.mixins.json:MinecraftClientTickMixin,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:APP:fancymenu.general.mixin.json:MixinMinecraft,pl:mixin:APP:fancymenu.general.mixin.json:IMixinMinecraft,pl:mixin:APP:dannys_expansion.mixins.json:client.MinecraftMixin,pl:mixin:APP:mixins.essential.json:client.MixinMinecraft,pl:mixin:APP:mixins.essential.json:client.gui.Mixin_FixKeybindUnpressedInEmoteWheel,pl:mixin:APP:mixins.essential.json:client.gui.Mixin_RecalculateMenuScale,pl:mixin:APP:mixins.essential.json:compatibility.forge.Mixin_FixInternalByteBufAccess,pl:mixin:APP:mixins.essential.json:events.Mixin_RenderTickEvent,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:ars_nouveau.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:665) ~[client-1.18.2-20220404.173914-srg.jar%23313!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:rei_plugin_compatibilities:B,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:braincell.mixins.json:client.MinecraftMixin,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Keybinds,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Images,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_PipelineManagement,pl:mixin:APP:fastload.mixins.json:client.MinecraftClientMixin,pl:mixin:APP:fallingleaves.mixins.json:MinecraftClientMixin,pl:mixin:APP:ars_nouveau.mixins.json:light.ClientMixin,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:antiqueatlas-common.mixins.json:MixinMinecraftClient,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:globaldataandresourcepacks.mixins.json:ClientPackFinderMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:konkrete.mixin.json:client.MixinMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:blueprint.mixins.json:client.MinecraftMixin,pl:mixin:APP:travelerstitles.mixins.json:MinecraftClientTickMixin,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:APP:fancymenu.general.mixin.json:MixinMinecraft,pl:mixin:APP:fancymenu.general.mixin.json:IMixinMinecraft,pl:mixin:APP:dannys_expansion.mixins.json:client.MinecraftMixin,pl:mixin:APP:mixins.essential.json:client.MixinMinecraft,pl:mixin:APP:mixins.essential.json:client.gui.Mixin_FixKeybindUnpressedInEmoteWheel,pl:mixin:APP:mixins.essential.json:client.gui.Mixin_RecalculateMenuScale,pl:mixin:APP:mixins.essential.json:compatibility.forge.Mixin_FixInternalByteBufAccess,pl:mixin:APP:mixins.essential.json:events.Mixin_RenderTickEvent,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:ars_nouveau.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%23313!/:?] {re:classloading,re:mixin,pl:runtimedistcleaner:A,pl:mixin:A,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.2.1.jar%2317!/:?] {}     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.mojang.blaze3d.vertex.BufferUploader.m_166838_(BufferUploader.java:100) ~[client-1.18.2-20220404.173914-srg.jar%23313!/:?] {re:classloading,pl:accesstransformer:B,pl:rei_plugin_compatibilities:B,re:mixin,pl:accesstransformer:B}     at com.mojang.blaze3d.vertex.BufferUploader.m_85761_(BufferUploader.java:52) ~[client-1.18.2-20220404.173914-srg.jar%23313!/:?] {re:classloading,pl:accesstransformer:B,pl:rei_plugin_compatibilities:B,re:mixin,pl:accesstransformer:B}     at net.coderbot.batchedentityrendering.impl.BufferSegmentRenderer.drawInner(BufferSegmentRenderer.java:29) ~[oculus-1.5.2.jar%23225!/:?] {re:classloading,pl:rei_plugin_compatibilities:B}     at net.coderbot.batchedentityrendering.impl.FullyBufferedMultiBufferSource.m_109911_(FullyBufferedMultiBufferSource.java:118) ~[oculus-1.5.2.jar%23225!/:?] {re:mixin,re:classloading,pl:rei_plugin_compatibilities:B}     at net.minecraft.client.renderer.LevelRenderer.handler$beb000$batchedentityrendering$beginTranslucents(LevelRenderer.java:4591) ~[client-1.18.2-20220404.173914-srg.jar%23313!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:rei_plugin_compatibilities:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.renderer.LevelRenderer.m_109599_(LevelRenderer.java:1359) ~[client-1.18.2-20220404.173914-srg.jar%23313!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:rei_plugin_compatibilities:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.renderer.GameRenderer.m_109089_(GameRenderer.java:1061) ~[client-1.18.2-20220404.173914-srg.jar%23313!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:rei_plugin_compatibilities:B,pl:mixin:A,pl:runtimedistcleaner:A} -- Affected level -- Details:     All players: 1 total; [LocalPlayer['Kai_dps'/946, l='ClientLevel', x=8.87, y=55.00, z=-251.47]]     Chunk stats: 16384, 313     Level dimension: minecraft:overworld     Level spawn location: World: (0,100,0), Section: (at 0,4,0 in 0,6,0; chunk contains blocks 0,-64,0 to 15,319,15), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511)     Level time: 134284 game time, 134284 day time     Server brand: forge     Server type: Integrated singleplayer server Stacktrace:     at net.minecraft.client.multiplayer.ClientLevel.m_6026_(ClientLevel.java:407) ~[client-1.18.2-20220404.173914-srg.jar%23313!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:rei_plugin_compatibilities:B,pl:mixin:APP:dynamiclightsreforged.mixins.json:ClientWorldMixin,pl:mixin:APP:rubidium.mixins.json:features.chunk_rendering.MixinClientWorld,pl:mixin:APP:rubidium.mixins.json:features.fast_biome_colors.MixinClientWorld,pl:mixin:APP:mixins.oculus.vertexformat.json:block_rendering.MixinClientLevel,pl:mixin:APP:krypton.mixins.json:client.fastchunkentityaccess.ClientWorldMixin,pl:mixin:APP:starlight.mixins.json:client.world.ClientLevelMixin,pl:mixin:APP:mixins.sndctrl.json:MixinClientWorld,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:entityculling.mixins.json:ClientWorldMixin,pl:mixin:APP:blue_skies.mixins.json:ClientLevelMixin,pl:mixin:APP:betterbiomeblend.mixins.json:MixinClientWorld,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:blueprint.mixins.json:client.ClientLevelMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91354_(Minecraft.java:2264) ~[client-1.18.2-20220404.173914-srg.jar%23313!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:rei_plugin_compatibilities:B,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:braincell.mixins.json:client.MinecraftMixin,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Keybinds,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Images,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_PipelineManagement,pl:mixin:APP:fastload.mixins.json:client.MinecraftClientMixin,pl:mixin:APP:fallingleaves.mixins.json:MinecraftClientMixin,pl:mixin:APP:ars_nouveau.mixins.json:light.ClientMixin,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:antiqueatlas-common.mixins.json:MixinMinecraftClient,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:globaldataandresourcepacks.mixins.json:ClientPackFinderMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:konkrete.mixin.json:client.MixinMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:blueprint.mixins.json:client.MinecraftMixin,pl:mixin:APP:travelerstitles.mixins.json:MinecraftClientTickMixin,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:APP:fancymenu.general.mixin.json:MixinMinecraft,pl:mixin:APP:fancymenu.general.mixin.json:IMixinMinecraft,pl:mixin:APP:dannys_expansion.mixins.json:client.MinecraftMixin,pl:mixin:APP:mixins.essential.json:client.MixinMinecraft,pl:mixin:APP:mixins.essential.json:client.gui.Mixin_FixKeybindUnpressedInEmoteWheel,pl:mixin:APP:mixins.essential.json:client.gui.Mixin_RecalculateMenuScale,pl:mixin:APP:mixins.essential.json:compatibility.forge.Mixin_FixInternalByteBufAccess,pl:mixin:APP:mixins.essential.json:events.Mixin_RenderTickEvent,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:ars_nouveau.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:687) ~[client-1.18.2-20220404.173914-srg.jar%23313!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:rei_plugin_compatibilities:B,pl:mixin:APP:dynamiclightsreforged.mixins.json:MinecraftClientMixin,pl:mixin:APP:rubidium.mixins.json:core.MixinMinecraftClient,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:braincell.mixins.json:client.MinecraftMixin,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Keybinds,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Images,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_PipelineManagement,pl:mixin:APP:fastload.mixins.json:client.MinecraftClientMixin,pl:mixin:APP:fallingleaves.mixins.json:MinecraftClientMixin,pl:mixin:APP:ars_nouveau.mixins.json:light.ClientMixin,pl:mixin:APP:rubidium_extras.mixins.json:FrameCounter.FpsAccessorMixin,pl:mixin:APP:antiqueatlas-common.mixins.json:MixinMinecraftClient,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:globaldataandresourcepacks.mixins.json:ClientPackFinderMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:konkrete.mixin.json:client.MixinMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:blueprint.mixins.json:client.MinecraftMixin,pl:mixin:APP:travelerstitles.mixins.json:MinecraftClientTickMixin,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:APP:fancymenu.general.mixin.json:MixinMinecraft,pl:mixin:APP:fancymenu.general.mixin.json:IMixinMinecraft,pl:mixin:APP:dannys_expansion.mixins.json:client.MinecraftMixin,pl:mixin:APP:mixins.essential.json:client.MixinMinecraft,pl:mixin:APP:mixins.essential.json:client.gui.Mixin_FixKeybindUnpressedInEmoteWheel,pl:mixin:APP:mixins.essential.json:client.gui.Mixin_RecalculateMenuScale,pl:mixin:APP:mixins.essential.json:compatibility.forge.Mixin_FixInternalByteBufAccess,pl:mixin:APP:mixins.essential.json:events.Mixin_RenderTickEvent,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:ars_nouveau.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%23313!/:?] {re:classloading,re:mixin,pl:runtimedistcleaner:A,pl:mixin:A,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.2.1.jar%2317!/:?] {}     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:?] {} -- Last reload -- Details:     Reload number: 1     Reload reason: initial     Finished: Yes     Packs: Default, Mod Resources, Supplementaries Generated Pack, quark-emote-pack, Skyrim Soundpack v5.8b.zip, mount1.3.zip, EF_anmation_1.18_v1.0.zip, Excalibur_V1.18.1.zip, Excalibur_Mod_Support_V1.18.1.1.zip, IORR +Terralith Legacy v3.0.zip, Enhanced Boss Bars 1.1.zip, EmbellishedStone-1.18-1.0.0.zip, DawnCraft_Resources.zip, Essential (forge_1.18.2).jar -- 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: 2145893704 bytes (2046 MiB) / 4596957184 bytes (4384 MiB) up to 17951621120 bytes (17120 MiB)     CPUs: 8     Processor Vendor: GenuineIntel     Processor Name: Intel(R) Core(TM) i7-9700K CPU @ 3.60GHz     Identifier: Intel64 Family 6 Model 158 Stepping 13     Microarchitecture: Coffee Lake     Frequency (GHz): 3.60     Number of physical packages: 1     Number of physical CPUs: 8     Number of logical CPUs: 8     Graphics card #0 name: NVIDIA GeForce GTX 1070     Graphics card #0 vendor: NVIDIA (0x10de)     Graphics card #0 VRAM (MB): 4095.00     Graphics card #0 deviceId: 0x1b81     Graphics card #0 versionInfo: DriverVersion=31.0.15.3141     Memory slot #0 capacity (MB): 16384.00     Memory slot #0 clockSpeed (GHz): 3.20     Memory slot #0 type: DDR4     Memory slot #1 capacity (MB): 16384.00     Memory slot #1 clockSpeed (GHz): 3.20     Memory slot #1 type: DDR4     Virtual memory max (MB): 65458.67     Virtual memory used (MB): 24623.37     Swap memory total (MB): 32768.00     Swap memory used (MB): 231.15     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx17120m -Xms256m     Loaded Shaderpack: (off)     Launched Version: forge-40.2.1     Backend library: LWJGL version 3.2.2 SNAPSHOT     Backend API: NVIDIA GeForce GTX 1070/PCIe/SSE2 GL version 4.3.0 NVIDIA 531.41, NVIDIA Corporation     Window size: 1920x1080     GL Caps: Using framebuffer using OpenGL 3.2     GL debug messages:      Using VBOs: Yes     Is Modded: Definitely; Client brand changed to 'forge'; Server brand changed to 'forge'     Type: Integrated Server (map_client.txt)     Graphics mode: fancy     Resource Packs: vanilla, mod_resources, Supplementaries Generated Pack, quark:emote_resources (incompatible), file/Skyrim Soundpack v5.8b.zip, file/mount1.3.zip, file/EF_anmation_1.18_v1.0.zip, file/Excalibur_V1.18.1.zip, file/Excalibur_Mod_Support_V1.18.1.1.zip, file/IORR +Terralith Legacy v3.0.zip, file/Enhanced Boss Bars 1.1.zip, file/EmbellishedStone-1.18-1.0.0.zip, file/DawnCraft_Resources.zip     Current Language: English (US)     CPU: 8x Intel(R) Core(TM) i7-9700K CPU @ 3.60GHz     Server Running: true     Player Count: 1 / 8; [ServerPlayer['Kai_dps'/946, l='ServerLevel[Kai & Minty]', x=8.87, y=55.00, z=-251.47]]     Data Packs: vanilla, mod:saturn, mod:dynamiclightsreforged (incompatible), mod:adaptive_performance_tweaks_core, mod:betterdungeons, mod:habitat (incompatible), mod:stackablepotions (incompatible), mod:secondchanceforge (incompatible), mod:musictriggers (incompatible), mod:entangledfix, mod:auudio (incompatible), mod:supermartijn642configlib, mod:theimpossiblelibrary (incompatible), mod:deleteitem (incompatible), mod:areas, mod:majruszsdifficulty (incompatible), mod:quest_giver (incompatible), mod:entitycollisionfpsfix (incompatible), mod:strawgolem (incompatible), mod:rubidium (incompatible), mod:nyfsquiver (incompatible), mod:ctm (incompatible), mod:reauth (incompatible), mod:yungsapi, mod:wildbackport, mod:maxhealthfix (incompatible), mod:difficultraids, mod:guardvillagers (incompatible), mod:apotheosis (incompatible), mod:balm (incompatible), mod:betterfortresses, mod:paraglider, mod:cloth_config (incompatible), mod:sound_physics_remastered (incompatible), mod:structure_gel, mod:solapplepie (incompatible), mod:corpse (incompatible), mod:advancementplaques (incompatible), mod:tinyskeletons (incompatible), mod:tenshilib, mod:morevillagers (incompatible), mod:bcc (incompatible), mod:braincell (incompatible), mod:timeout_fixes (incompatible), mod:hardermonsterboats (incompatible), mod:supermartijn642corelib, mod:yungsbridges, mod:highlighter (incompatible), mod:spark (incompatible), mod:curios (incompatible), mod:oculus (incompatible), mod:yungsextras, mod:cc (incompatible), mod:bettervillage, mod:atlaslib (incompatible), mod:pmmo (incompatible), mod:netherskeletons, mod:itemphysic (incompatible), mod:krypton (incompatible), mod:illageandspillage, mod:bettermineshafts, mod:pumpkillagersquest, mod:nebs (incompatible), mod:essential (incompatible), mod:mowziesmobs (incompatible), mod:humancompanions (incompatible), mod:fastload (incompatible), mod:reputation (incompatible), mod:simple_mobs, mod:visualworkbench (incompatible), mod:attributefix (incompatible), mod:libraryferret, mod:goblintraders (incompatible), mod:kobolds, mod:passablefoliage, mod:fallingleaves (incompatible), mod:shutupexperimentalsettings, mod:mobhealthbar (incompatible), mod:integrated_api, mod:sereneseasons (incompatible), mod:jumpboat (incompatible), mod:libx, mod:scattered_weapons, mod:champions, mod:starlight (incompatible), mod:jeitweaker (incompatible), mod:crafttweaker (incompatible), mod:gamestages, mod:rubidium_extras (incompatible), mod:forge, mod:villagercomfort, mod:darkersouls (incompatible), mod:idas, mod:dsurround, mod:dungeons_arise, mod:smoothchunk (incompatible), mod:logprot (incompatible), mod:simplebackups, mod:terrablender (incompatible), mod:mousetweaks (incompatible), mod:awesomedungeonnether, mod:shouldersurfing (incompatible), mod:presencenotrequired, mod:efdg, mod:epicfight, mod:betterfpsdist (incompatible), mod:notenoughanimations (incompatible), mod:flywheel (incompatible), mod:ecologics, mod:integrated_stronghold, mod:polymorph (incompatible), mod:autoreglib (incompatible), mod:earthmobsmod, mod:entityculling (incompatible), mod:effective_fg (incompatible), mod:globaldataandresourcepacks (incompatible), mod:fastfurnace (incompatible), mod:tlc, mod:lootr (incompatible), mod:lilwings (incompatible), mod:puzzleslib (incompatible), mod:bettergolem, mod:ob_core, mod:followme (incompatible), mod:aquamirae, mod:defaultoptions (incompatible), mod:hexerei (incompatible), mod:treechop (incompatible), mod:blue_skies (incompatible), mod:betterwitchhuts, mod:netherportalfix (incompatible), mod:healthoverlay (incompatible), mod:incontrol (incompatible), mod:betteroceanmonuments, mod:incendium, mod:sophisticatedcore (incompatible), mod:insanelib, mod:mimic (incompatible), mod:geckolib3 (incompatible), mod:villagernames, mod:piglinproliferation, mod:controlling (incompatible), mod:prism (incompatible), mod:placebo (incompatible), mod:citadel (incompatible), mod:alexsmobs (incompatible), mod:cloudstorage, mod:untamedwilds (incompatible), mod:rei_plugin_compatibilities (incompatible), mod:feature_nbt_deadlock_be_gone (incompatible), mod:bookshelf, mod:sophisticatedbackpacks (incompatible), mod:progressivebosses (incompatible), mod:bygonenether (incompatible), mod:fpsreducer (incompatible), mod:pfm (incompatible), mod:dragonmounts (incompatible), mod:dummmmmmy (incompatible), mod:konkrete (incompatible), mod:farmersdelight (incompatible), mod:itshallnottick (incompatible), mod:entangled, mod:ambientsounds (incompatible), mod:compasscoords (incompatible), mod:bloodandmadness (incompatible), mod:getittogetherdrops (incompatible), mod:endrem (incompatible), mod:dogslie (incompatible), mod:chunky (incompatible), mod:medievalmusic (incompatible), mod:goblinsanddungeons (incompatible), mod:cataclysm (incompatible), mod:patchouli (incompatible), mod:ars_nouveau, mod:collective (incompatible), mod:betterbiomeblend (incompatible), mod:unvotedandshelved (incompatible), mod:betterstrongholds, mod:starterkit, mod:architectury (incompatible), mod:ftblibrary (incompatible), mod:antiqueatlas (incompatible), mod:ftbteams (incompatible), mod:ftbranks (incompatible), mod:ftbessentials (incompatible), mod:aiimprovements (incompatible), mod:ageingspawners, mod:zensummoning (incompatible), mod:majruszlib (incompatible), mod:enchantwithmob, mod:bwncr (incompatible), mod:adaptive_performance_tweaks_items, mod:polylib (incompatible), mod:celesteconfig (incompatible), mod:craftpresence (incompatible), mod:fixmyspawnr (incompatible), mod:bhmenu (incompatible), mod:biomemakeover (incompatible), mod:irisflw, mod:limitedchunks (incompatible), mod:shrines, mod:nourished_nether, mod:itemfilters (incompatible), mod:ftbquests (incompatible), mod:easymagic (incompatible), mod:nourished_end, mod:conjurer_illager, mod:callablehorses (incompatible), mod:obscure_api, mod:create, mod:waystones (incompatible), mod:monsterplus (incompatible), mod:structory, mod:comforts (incompatible), mod:tumbleweed (incompatible), mod:alternate_current (incompatible), mod:magistuarmory (incompatible), mod:dungeoncrawl, mod:badmobs, mod:ob_tooltips, mod:farsightedmobs (incompatible), mod:lazydfu (incompatible), mod:betterdeserttemples, mod:orcz, mod:farsight_view (incompatible), mod:toastcontrol (incompatible), mod:terralith, mod:blueprint (incompatible), mod:savage_and_ravage (incompatible), mod:recipestages (incompatible), mod:armoreablemobs (incompatible), mod:travelerstitles, mod:toofast (incompatible), mod:deathbackup, mod:meetyourfight (incompatible), mod:selene (incompatible), mod:supplementaries (incompatible), mod:ba_bt, mod:revamped_phantoms (incompatible), mod:enchdesc (incompatible), mod:jade, mod:culllessleaves (incompatible), mod:creativecore (incompatible), mod:weaponmaster, mod:smoothboot (incompatible), mod:nethersdelight (incompatible), mod:roughlyenoughitems (incompatible), mod:iceberg (incompatible), mod:quark (incompatible), mod:legendarytooltips (incompatible), mod:brutalbosses (incompatible), mod:fancymenu (incompatible), mod:hunterillager, mod:dannys_expansion (incompatible), mod:creeperoverhaul (incompatible), mod:ferritecore (incompatible), mod:improvedmobs, mod:valhelsia_core (incompatible), mod:valhelsia_structures (incompatible), mod:dawncraft (incompatible), Supplementaries Generated Pack, global:DawnCraft_Datapack, global:towns-and-towers-structure-overhaul-terralith-1-6, global:witch-raids-1-18-v-1-1 (incompatible)     World Generation: Stable     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           essential-loader TRANSFORMATIONSERVICE           fml TRANSFORMATIONSERVICE      FML Language Providers:          minecraft@1.0         lowcodefml@null         kotlinforforge@3.6.0         javafml@null     Mod List:          saturn-mc1.18.2-0.0.1.jar                         |Saturn                        |saturn                        |0.0.1               |DONE      |Manifest: NOSIGNATURE         dynamiclightsreforged-1.18.2_v1.3.3.jar           |Rubidium Dynamic Lights       |dynamiclightsreforged         |1.18.2_v1.3.3       |DONE      |Manifest: NOSIGNATURE         adaptive_performance_tweaks_core_1.18.2-3.19.0.jar|APTweaks: Core                |adaptive_performance_tweaks_co|3.19.0              |DONE      |Manifest: NOSIGNATURE         YungsBetterDungeons-1.18.2-Forge-2.1.0.jar        |YUNG's Better Dungeons        |betterdungeons                |1.18.2-Forge-2.1.0  |DONE      |Manifest: NOSIGNATURE         habitat-1.1.5.jar                                 |Habitat                       |habitat                       |1.1.5               |DONE      |Manifest: NOSIGNATURE         StackablePotions-forge-1.18.2-1.0.0.jar           |Stackable Potions             |stackablepotions              |1.0.0               |DONE      |Manifest: NOSIGNATURE         secondchanceforge-1.18.2-1.5.0.jar                |Second Chance Forge           |secondchanceforge             |1.5.0               |DONE      |Manifest: NOSIGNATURE         musictriggers-1.18.2-6.1.jar                      |Music Triggers                |musictriggers                 |1.18.2-6.1          |DONE      |Manifest: NOSIGNATURE         entangledfix-1.0.jar                              |Entangled Fix                 |entangledfix                  |1.0                 |DONE      |Manifest: NOSIGNATURE         auudio_forge_1.0.3_MC_1.18-1.18.2.jar             |Auudio                        |auudio                        |1.0.3               |DONE      |Manifest: NOSIGNATURE         supermartijn642configlib-1.1.6-forge-mc1.18.jar   |SuperMartijn642's Config Libra|supermartijn642configlib      |1.1.6               |DONE      |Manifest: NOSIGNATURE         theimpossiblelibrary-1.18.2-0.2.3.jar             |The Impossible Library        |theimpossiblelibrary          |1.18.2-0.2.3        |DONE      |Manifest: NOSIGNATURE         itemdelete-2.0.3.1.jar                            |DeleteItem                    |deleteitem                    |2.0.3.1             |DONE      |Manifest: NOSIGNATURE         areas-1.18.2-4.3.jar                              |Areas                         |areas                         |4.3                 |DONE      |Manifest: NOSIGNATURE         majruszs-difficulty-1.18.2-1.4.4.jar              |Majrusz's Progressive Difficul|majruszsdifficulty            |1.4.4               |DONE      |Manifest: NOSIGNATURE         Quest_Giver-1.18.2-1.0.7.jar                      |Quest Giver                   |quest_giver                   |1.18.2-1.0.7        |DONE      |Manifest: NOSIGNATURE         Entity_Collision_FPS_Fix-forge-1.18.2-1.0.0.jar   |Entity Collision FPS Fix      |entitycollisionfpsfix         |1.0.0               |DONE      |Manifest: NOSIGNATURE         Strawgolem-forge-1.18.2-2.0.0-beta.5.jar          |Straw Golem                   |strawgolem                    |2.0.0-beta.5        |DONE      |Manifest: NOSIGNATURE         rubidium-0.5.5.jar                                |Rubidium                      |rubidium                      |0.5.5               |DONE      |Manifest: NOSIGNATURE         nyfsquiver-1.18.2-0.7.3.jar                       |Nyf's Quiver                  |nyfsquiver                    |1.18.1-0.7.0        |DONE      |Manifest: NOSIGNATURE         CTM-1.18.2-1.1.5+5.jar                            |ConnectedTexturesMod          |ctm                           |1.18.2-1.1.5+5      |DONE      |Manifest: NOSIGNATURE         ReAuth-1.18-Forge-4.0.6.jar                       |ReAuth                        |reauth                        |4.0.6               |DONE      |Manifest: 3d:06:1e:e5:da:e2:ff:ae:04:00:be:45:5b:ff:fd:70:65:00:67:0b:33:87:a6:5f:af:20:3c:b6:a1:35:ca:7e         YungsApi-1.18.2-Forge-2.2.9.jar                   |YUNG's API                    |yungsapi                      |1.18.2-Forge-2.2.9  |DONE      |Manifest: NOSIGNATURE         wildbackport-1.2.3.jar                            |TheWildBackport               |wildbackport                  |1.2.3               |DONE      |Manifest: NOSIGNATURE         MaxHealthFix-Forge-1.18.2-5.0.1.jar               |MaxHealthFix                  |maxhealthfix                  |5.0.1               |DONE      |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         difficultraids-1.7.3-release.jar                  |Difficult Raids               |difficultraids                |1.7.3-release       |DONE      |Manifest: NOSIGNATURE         guardvillagers-1.18.2.1.4.3.jar                   |Guard Villagers               |guardvillagers                |1.4.3               |DONE      |Manifest: NOSIGNATURE         Apotheosis-1.18.2-5.7.7.jar                       |Apotheosis                    |apotheosis                    |5.7.7               |DONE      |Manifest: NOSIGNATURE         balm-3.2.6.jar                                    |Balm                          |balm                          |3.2.6               |DONE      |Manifest: NOSIGNATURE         YungsBetterNetherFortresses-1.18.2-Forge-1.0.0.jar|YUNG's Better Nether Fortresse|betterfortresses              |1.18.2-Forge-1.0.0  |DONE      |Manifest: NOSIGNATURE         Paraglider-1.18.2-1.6.0.5.jar                     |Paraglider                    |paraglider                    |1.6.0.5             |DONE      |Manifest: NOSIGNATURE         cloth-config-6.4.90-forge.jar                     |Cloth Config v4 API           |cloth_config                  |6.4.90              |DONE      |Manifest: NOSIGNATURE         soundphysics-forge-1.18.2-1.0.6.jar               |Sound Physics Remastered      |sound_physics_remastered      |1.18.2-1.0.6        |DONE      |Manifest: NOSIGNATURE         structure_gel-1.18.2-2.4.7.jar                    |Structure Gel API             |structure_gel                 |2.4.7               |DONE      |Manifest: NOSIGNATURE         solapplepie-1.18.2-1.0.4.jar                      |Spice of Life: Apple Pie Editi|solapplepie                   |1.18.2-1.0.4        |DONE      |Manifest: NOSIGNATURE         corpse-1.18.2-1.0.1.jar                           |Corpse                        |corpse                        |1.18.2-1.0.1        |DONE      |Manifest: NOSIGNATURE         AdvancementPlaques-1.18.2-1.4.5.1.jar             |Advancement Plaques           |advancementplaques            |1.4.5.1             |DONE      |Manifest: NOSIGNATURE         TinySkeletons-v3.2.1-1.18.2-Forge.jar             |Tiny Skeletons                |tinyskeletons                 |3.2.1               |DONE      |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         tenshilib-1.18.2-1.6.15-forge.jar                 |TenshiLib                     |tenshilib                     |1.18.2-1.6.15       |DONE      |Manifest: NOSIGNATURE         morevillagers-FORGE-1.18.2-3.2.0.jar              |More Villagers                |morevillagers                 |3.2.0               |DONE      |Manifest: NOSIGNATURE         BetterCompatibilityChecker-1.1.21-build.48+mc1.18.|Better Compatibility Checker  |bcc                           |1.1.21-build.48+mc1.|DONE      |Manifest: NOSIGNATURE         braincell-1.18.jar                                |Braincell                     |braincell                     |1.18                |DONE      |Manifest: NOSIGNATURE         timeout_fixes-1.18.1-1.0.0.jar                    |Timeout Fixes                 |timeout_fixes                 |1.18.1-1.0.0        |DONE      |Manifest: NOSIGNATURE         HarderMonsterBoats-1.18.1-39.1.1.0.jar            |Harder Monster Boats          |hardermonsterboats            |39.1.1.0            |DONE      |Manifest: NOSIGNATURE         supermartijn642corelib-1.1.5-forge-mc1.18.jar     |SuperMartijn642's Core Lib    |supermartijn642corelib        |1.1.5               |DONE      |Manifest: NOSIGNATURE         YungsBridges-1.18.2-Forge-2.1.0.jar               |YUNG's Bridges                |yungsbridges                  |1.18.2-Forge-2.1.0  |DONE      |Manifest: NOSIGNATURE         Highlighter-1.18.1-1.1.2.jar                      |Highlighter                   |highlighter                   |1.1.2               |DONE      |Manifest: NOSIGNATURE         spark-1.9.11-forge.jar                            |spark                         |spark                         |1.9.11              |DONE      |Manifest: NOSIGNATURE         curios-forge-1.18.2-5.0.7.1.jar                   |Curios API                    |curios                        |1.18.2-5.0.7.1      |DONE      |Manifest: NOSIGNATURE         oculus-1.5.2.jar                                  |Oculus                        |oculus                        |1.5.2               |DONE      |Manifest: NOSIGNATURE         YungsExtras-1.18.2-Forge-2.1.0.jar                |YUNG's Extras                 |yungsextras                   |1.18.2-Forge-2.1.0  |DONE      |Manifest: NOSIGNATURE         ClaimChunk-1.18-1.0.16.jar                        |Claim Chunk                   |cc                            |1.0.16              |DONE      |Manifest: NOSIGNATURE         bettervillage-forge-1.18.2-2.0.0.jar              |Better village                |bettervillage                 |2.0.0               |DONE      |Manifest: NOSIGNATURE         Atlas-Lib-1.18.2-1.1.7a.jar                       |Atlas Lib                     |atlaslib                      |1.1.7a              |DONE      |Manifest: NOSIGNATURE         Project_MMO-1.18.2-3.69.11.jar                    |Project MMO                   |pmmo                          |1.18.2-3.69.11      |DONE      |Manifest: NOSIGNATURE         1.18.2netherskeletons4.8.jar                      |NetherSkeletons               |netherskeletons               |4.8                 |DONE      |Manifest: NOSIGNATURE         ItemPhysic_v1.4.23_mc1.18.2.jar                   |ItemPhysic                    |itemphysic                    |1.6.0               |DONE      |Manifest: NOSIGNATURE         krypton-0.1.10-SNAPSHOT.jar                       |Krypton Reforged              |krypton                       |0.1.10-SNAPSHOT     |DONE      |Manifest: NOSIGNATURE         illageandspillage-1.18.2-1.1.3.jar                |Illage and Spillage           |illageandspillage             |1.1.3               |DONE      |Manifest: NOSIGNATURE         YungsBetterMineshafts-1.18.2-Forge-2.2.jar        |YUNG's Better Mineshafts      |bettermineshafts              |1.18.2-Forge-2.2    |DONE      |Manifest: NOSIGNATURE         pumpkillagersquest-1.18.2-3.2.jar                 |Pumpkillager's Quest          |pumpkillagersquest            |3.2                 |DONE      |Manifest: NOSIGNATURE         NekosEnchantedBooks-1.18.2-1.8.0.jar              |Neko's Enchanted Books        |nebs                          |1.8.0               |DONE      |Manifest: NOSIGNATURE         Essential (forge_1.18.2).jar                      |Essential                     |essential                     |12168+deploy-staging|DONE      |Manifest: NOSIGNATURE         mowziesmobs-1.5.32.jar                            |Mowzie's Mobs                 |mowziesmobs                   |1.5.32              |DONE      |Manifest: NOSIGNATURE         humancompanions-1.18.2-1.7.3.jar                  |Human Companions              |humancompanions               |1.18.2-1.7.3        |DONE      |Manifest: NOSIGNATURE         Fastload-Reforged-2.6.9+1.18.2.jar                |Fastload                      |fastload                      |2.6.9+1.18.2        |DONE      |Manifest: NOSIGNATURE         Reputation-1.18-0.9.9.jar                         |Reputation                    |reputation                    |0.9.9               |DONE      |Manifest: NOSIGNATURE         dawncraft_mobs-1.18-0.9.2c_beta.jar               |Simple Mobs                   |simple_mobs                   |0.9.2               |DONE      |Manifest: NOSIGNATURE         VisualWorkbench-v3.3.0-1.18.2-Forge.jar           |Visual Workbench              |visualworkbench               |3.3.0               |DONE      |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         AttributeFix-Forge-1.18.2-14.0.2.jar              |AttributeFix                  |attributefix                  |14.0.2              |DONE      |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         libraryferret-forge-1.18.2-3.0.0.jar              |Library ferret                |libraryferret                 |3.0.0               |DONE      |Manifest: NOSIGNATURE         goblintraders-1.8.0-1.18.2.jar                    |Goblin Traders                |goblintraders                 |1.8.0               |DONE      |Manifest: NOSIGNATURE         Kobolds-2.1.2.jar                                 |Kobolds                       |kobolds                       |2.1.2               |DONE      |Manifest: NOSIGNATURE         PassableFoliage-1.18.2-forge-4.0.4.jar            |Passable Foliage              |passablefoliage               |4.0.4               |DONE      |Manifest: NOSIGNATURE         Fallingleaves-1.18.2-1.3.2.jar                    |Falling Leaves                |fallingleaves                 |1.3.2               |DONE      |Manifest: NOSIGNATURE         shutupexperimentalsettings-1.0.5.jar              |Shutup Experimental Settings! |shutupexperimentalsettings    |1.0.5               |DONE      |Manifest: NOSIGNATURE         mobhealthbar-1-18-1-2.jar                         |YDM's Mob Health Bar          |mobhealthbar                  |2.0                 |DONE      |Manifest: NOSIGNATURE         integrated_api_forge-1.2.7+1.18.2.jar             |Integrated API                |integrated_api                |1.2.7+1.18.2        |DONE      |Manifest: NOSIGNATURE         Serene Seasons-1.18.2-7.0.0.13.jar                |Serene Seasons                |sereneseasons                 |1.18.2-7.0.0.13     |DONE      |Manifest: NOSIGNATURE         jumpboat-1.18.2-0.1.0.3.jar                       |Jumpy Boats                   |jumpboat                      |1.18.2-0.1.0.3      |DONE      |Manifest: NOSIGNATURE         LibX-1.18.2-3.2.19.jar                            |LibX                          |libx                          |1.18.2-3.2.19       |DONE      |Manifest: NOSIGNATURE         scatterd_weapons-1.18.2-1.2.jar                   |scattered weapons             |scattered_weapons             |1.0.0               |DONE      |Manifest: NOSIGNATURE         champions-forge-1.18.2-2.1.6.3.jar                |Champions                     |champions                     |1.18.2-2.1.6.3      |DONE      |Manifest: NOSIGNATURE         starlight-1.0.2+forge.546ae87.jar                 |Starlight                     |starlight                     |1.0.2+forge.83663de |DONE      |Manifest: NOSIGNATURE         JEITweaker-1.18.2-3.0.0.9.jar                     |JEI Tweaker                   |jeitweaker                    |3.0.0.9             |DONE      |Manifest: NOSIGNATURE         CraftTweaker-forge-1.18.2-9.1.204.jar             |CraftTweaker                  |crafttweaker                  |9.1.204             |DONE      |Manifest: NOSIGNATURE         GameStages-Forge-1.18.2-8.1.3.jar                 |GameStages                    |gamestages                    |8.1.3               |DONE      |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         rubidium_extras-1.18.2_v1.3.2.jar                 |Rubidium Extras               |rubidium_extras               |1.18.2_v1.3.2       |DONE      |Manifest: NOSIGNATURE         forge-1.18.2-40.2.1-universal.jar                 |Forge                         |forge                         |40.2.1              |DONE      |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         Villager Comfort-1.18.2-1.0.1.jar                 |Villager Comfort              |villagercomfort               |1.18.2-1.0.0        |DONE      |Manifest: NOSIGNATURE         DarkerSouls1.18.2Forgev1.3.1.jar                  |Darker Souls                  |darkersouls                   |1.0                 |DONE      |Manifest: NOSIGNATURE         idas_forge-1.6.1+1.18.2.jar                       |Integrated Dungeons and Struct|idas                          |1.6.1+1.18.2        |DONE      |Manifest: NOSIGNATURE         DynamicSurroundings-5.0.0.4.jar                   |§3Dynamic Surroundings: Resurr|dsurround                     |5.0.0.4             |DONE      |Manifest: NOSIGNATURE         DungeonsArise-1.18.2-2.1.52-release.jar           |When Dungeons Arise           |dungeons_arise                |2.1.52-1.18.2       |DONE      |Manifest: NOSIGNATURE         client-1.18.2-20220404.173914-srg.jar             |Minecraft                     |minecraft                     |1.18.2              |DONE      |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         smoothchunk-1.18.2-1.9.jar                        |Smoothchunk mod               |smoothchunk                   |1.18.2-1.9          |DONE      |Manifest: NOSIGNATURE         logprot-1.18.2-1.6.jar                            |Logprot                       |logprot                       |1.4                 |DONE      |Manifest: NOSIGNATURE         SimpleBackups-1.18.2-1.1.12.jar                   |Simple Backups                |simplebackups                 |1.18.2-1.1.12       |DONE      |Manifest: NOSIGNATURE         TerraBlender-forge-1.18.2-1.2.0.126.jar           |TerraBlender                  |terrablender                  |1.2.0.126           |DONE      |Manifest: NOSIGNATURE         MouseTweaks-forge-mc1.18-2.21.jar                 |Mouse Tweaks                  |mousetweaks                   |2.21                |DONE      |Manifest: NOSIGNATURE         awesomedungeonnether-forge-1.18.2-3.0.0.jar       |Awesome dungeon nether        |awesomedungeonnether          |3.0.0               |DONE      |Manifest: NOSIGNATURE         ShoulderSurfing-Forge-1.18.2-2.3.0.jar            |Shoulder Surfing              |shouldersurfing               |1.18.2-2.3.0        |DONE      |Manifest: NOSIGNATURE         PresenceNotRequired-Forge-1.3.0.jar               |Presence Not Required         |presencenotrequired           |1.3.0               |DONE      |Manifest: NOSIGNATURE         DualGreatsword-1.8.jar                            |Dual Greatsword               |efdg                          |1.8                 |DONE      |Manifest: NOSIGNATURE         EpicFight-18.3.8.jar                              |Epic Fight                    |epicfight                     |18.3.8              |DONE      |Manifest: NOSIGNATURE         betterfpsdist-1.18.2-1.5.jar                      |betterfpsdist mod             |betterfpsdist                 |1.18.2-1.5          |DONE      |Manifest: NOSIGNATURE         notenoughanimations-forge-1.6.0-mc1.18.2.jar      |NotEnoughAnimations Mod       |notenoughanimations           |1.6.0               |DONE      |Manifest: NOSIGNATURE         flywheel-forge-1.18.2-0.6.8.a.jar                 |Flywheel                      |flywheel                      |0.6.8.a             |DONE      |Manifest: NOSIGNATURE         ecologics-forge-1.18.2-1.7.10.jar                 |Ecologics                     |ecologics                     |1.7.10              |DONE      |Manifest: NOSIGNATURE         integrated_stronghold_forge-1.0.1+1.18.2.jar      |Integrated Stronghold         |integrated_stronghold         |1.0.1+1.18.2        |DONE      |Manifest: NOSIGNATURE         polymorph-forge-1.18.2-0.46.jar                   |Polymorph                     |polymorph                     |1.18.2-0.46         |DONE      |Manifest: NOSIGNATURE         AutoRegLib-1.7-53.jar                             |AutoRegLib                    |autoreglib                    |1.7-53              |DONE      |Manifest: NOSIGNATURE         EarthMobs-1.18.2-1.4.0.jar                        |Earth Mobs Mod                |earthmobsmod                  |1.18.2-1.4.0        |DONE      |Manifest: NOSIGNATURE         entityculling-forge-1.6.1-mc1.18.2.jar            |EntityCulling                 |entityculling                 |1.6.1               |DONE      |Manifest: NOSIGNATURE         effective_fg-1.2.4.jar                            |Effective (Forge)             |effective_fg                  |1.2.4               |DONE      |Manifest: NOSIGNATURE         global_packs-forge-1.18.2-1.12.3_forge.jar        |Global Data- & Resourcepacks  |globaldataandresourcepacks    |1.12.3_forge        |DONE      |Manifest: NOSIGNATURE         FastFurnace-1.18.2-6.0.3.jar                      |FastFurnace                   |fastfurnace                   |6.0.3               |DONE      |Manifest: NOSIGNATURE         tlc_forge-1.0.1-R-1.18.2.jar                      |The Lost Castle               |tlc                           |1.0.1               |DONE      |Manifest: NOSIGNATURE         lootr-1.18.2-0.2.23.60.jar                        |Lootr                         |lootr                         |0.2.21.58           |DONE      |Manifest: NOSIGNATURE         lilwings-forge-1.18.2-1.2.4.jar                   |Lil' Wings                    |lilwings                      |1.2.4               |DONE      |Manifest: NOSIGNATURE         PuzzlesLib-v3.3.6-1.18.2-Forge.jar                |Puzzles Lib                   |puzzleslib                    |3.3.6               |DONE      |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         bettergolem-1.18.2-1.1.0.jar                      |Better Golem                  |bettergolem                   |1.18.2-1.1.0        |DONE      |Manifest: NOSIGNATURE         Obscuria's Essentials 3.2.0 (Forge 1.18.2).jar    |Obscuria's Essentials         |ob_core                       |3.2.0               |DONE      |Manifest: NOSIGNATURE         Follow-Me-1.18-1.1.8a.jar                         |Follow Me                     |followme                      |1.1.8a              |DONE      |Manifest: NOSIGNATURE         aquamirae-5.api10.jar                             |Aquamirae                     |aquamirae                     |5.api10             |DONE      |Manifest: NOSIGNATURE         defaultoptions-forge-1.18.2-14.1.2.jar            |Default Options               |defaultoptions                |14.1.2              |DONE      |Manifest: NOSIGNATURE         hexerei-0.2.2.jar                                 |Hexerei                       |hexerei                       |0.2.2               |DONE      |Manifest: NOSIGNATURE         TreeChop-1.18.2-forge-0.16.3.jar                  |HT's TreeChop                 |treechop                      |0.16.3              |DONE      |Manifest: NOSIGNATURE         blue_skies-1.18.2-1.3.12.jar                      |Blue Skies                    |blue_skies                    |1.3.12              |DONE      |Manifest: NOSIGNATURE         YungsBetterWitchHuts-1.18.2-Forge-1.0.1.jar       |YUNG's Better Witch Huts      |betterwitchhuts               |1.18.2-Forge-1.0.1  |DONE      |Manifest: NOSIGNATURE         netherportalfix-forge-1.18-9.0.0.jar              |NetherPortalFix               |netherportalfix               |9.0.0               |DONE      |Manifest: NOSIGNATURE         HealthOverlay-1.18.2-6.3.4.jar                    |Health Overlay                |healthoverlay                 |6.3.4               |DONE      |Manifest: NOSIGNATURE         incontrol-1.18-6.1.3.jar                          |InControl                     |incontrol                     |1.18-6.1.3          |DONE      |Manifest: NOSIGNATURE         YungsBetterOceanMonuments-1.18.2-Forge-1.0.3.jar  |YUNG's Better Ocean Monuments |betteroceanmonuments          |1.18.2-Forge-1.0.3  |DONE      |Manifest: NOSIGNATURE         Incendium_1.18.2_v5.0.7.jar                       |Incendium                     |incendium                     |5.0.7               |DONE      |Manifest: NOSIGNATURE         sophisticatedcore-1.18.2-0.5.37.202.jar           |Sophisticated Core            |sophisticatedcore             |1.18.2-0.5.37.202   |DONE      |Manifest: NOSIGNATURE         InsaneLib-1.5.3-mc1.18.2.jar                      |InsaneLib                     |insanelib                     |1.5.3               |DONE      |Manifest: NOSIGNATURE         Mimic-forge-1.18.2-1.1.32.1.jar                   |Mimic                         |mimic                         |1.1.32              |DONE      |Manifest: NOSIGNATURE         geckolib-forge-1.18-3.0.56.jar                    |GeckoLib                      |geckolib3                     |3.0.56              |DONE      |Manifest: NOSIGNATURE         villagernames-1.18.2-5.1.jar                      |Villager Names                |villagernames                 |5.1                 |DONE      |Manifest: NOSIGNATURE         piglinproliferation-1.0.0.jar                     |Piglin Proliferation          |piglinproliferation           |1.0.0               |DONE      |Manifest: NOSIGNATURE         Controlling-forge-1.18.2-9.0+22.jar               |Controlling                   |controlling                   |9.0+22              |DONE      |Manifest: NOSIGNATURE         Prism-1.18.2-1.0.1.jar                            |Prism                         |prism                         |1.0.1               |DONE      |Manifest: NOSIGNATURE         Placebo-1.18.2-6.6.6.jar                          |Placebo                       |placebo                       |6.6.6               |DONE      |Manifest: NOSIGNATURE         citadel-1.11.3-1.18.2.jar                         |Citadel                       |citadel                       |1.11.3              |DONE      |Manifest: NOSIGNATURE         alexsmobs-1.18.6.jar                              |Alex's Mobs                   |alexsmobs                     |1.18.6              |DONE      |Manifest: NOSIGNATURE         cloudstorage-1.1.0-1.18.2.jar                     |Cloud Storage                 |cloudstorage                  |1.1.0               |DONE      |Manifest: NOSIGNATURE         untamedwilds-1.18.2-2.3.0.jar                     |Untamed Wilds                 |untamedwilds                  |2.3.0               |DONE      |Manifest: NOSIGNATURE         REIPluginCompatibilities-forge-8.0.46.jar         |REI Plugin Compatibilities    |rei_plugin_compatibilities    |8.0.46              |DONE      |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        |DONE      |Manifest: NOSIGNATURE         Bookshelf-Forge-1.18.2-13.2.53.jar                |Bookshelf                     |bookshelf                     |13.2.53             |DONE      |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         sophisticatedbackpacks-1.18.2-3.18.40.777.jar     |Sophisticated Backpacks       |sophisticatedbackpacks        |1.18.2-3.18.40.777  |DONE      |Manifest: NOSIGNATURE         ProgressiveBosses-3.6.5-mc1.18.2.jar              |Progressive Bosses            |progressivebosses             |3.6.5               |DONE      |Manifest: NOSIGNATURE         bygonenether-1.2.2-1.18.2.jar                     |Bygone Nether                 |bygonenether                  |1.2.2               |DONE      |Manifest: NOSIGNATURE         FpsReducer2-forge-1.18.2-2.0.jar                  |FPS Reducer                   |fpsreducer                    |1.18.2-2.0          |DONE      |Manifest: NOSIGNATURE         paladin-furniture-mod-1.1.1-forge-mc1.18.2.jar    |Paladin's Furniture           |pfm                           |1.1.1               |DONE      |Manifest: NOSIGNATURE         dragonmounts-1.18.2-1.1.4.jar                     |Dragon Mounts: Legacy         |dragonmounts                  |1.1.4               |DONE      |Manifest: NOSIGNATURE         MmmMmmMmmMmm-1.18.2-1.5.2.jar                     |MmmMmmMmmMmm                  |dummmmmmy                     |1.18-1.5.2          |DONE      |Manifest: NOSIGNATURE         konkrete_forge_1.6.0_MC_1.18-1.18.2.jar           |Konkrete                      |konkrete                      |1.6.0               |DONE      |Manifest: NOSIGNATURE         FarmersDelight-1.18.2-1.2.0.jar                   |Farmer's Delight              |farmersdelight                |1.18.2-1.2.0        |DONE      |Manifest: NOSIGNATURE         ItShallNotTick-1.0.22-build.34.jar                |It Shall Not Tick             |itshallnottick                |1.0.22-build.34     |DONE      |Manifest: NOSIGNATURE         entangled-1.3.13-forge-mc1.18.jar                 |Entangled                     |entangled                     |1.3.13              |DONE      |Manifest: NOSIGNATURE         AmbientSounds_FORGE_v5.0.16_mc1.18.2.jar          |Ambient Sounds                |ambientsounds                 |5.0.16              |DONE      |Manifest: NOSIGNATURE         CompassCoords-1.4.0-mc1.18.2.jar                  |Compass Coords                |compasscoords                 |1.4.0               |DONE      |Manifest: NOSIGNATURE         BloodAndMadness-Forge1.18.2-v2.0.4.jar            |Blood And Madness             |bloodandmadness               |2.0                 |DONE      |Manifest: NOSIGNATURE         getittogetherdrops-forge-1.18.2-1.3.jar           |Get It Together, Drops!       |getittogetherdrops            |1.3                 |DONE      |Manifest: NOSIGNATURE         endrem_forge-5.2.0-R-1.18.2.jar                   |End Remastered                |endrem                        |5.2.0-R-1.18.2      |DONE      |Manifest: NOSIGNATURE         LetSleepingDogsLie-1.18-1.1.1.jar                 |Let Sleeping Dogs Lie         |dogslie                       |1.1.1               |DONE      |Manifest: NOSIGNATURE         Chunky-1.2.164.jar                                |Chunky                        |chunky                        |1.2.164             |DONE      |Manifest: NOSIGNATURE         zmedievalmusic-1.18.2-1.4.jar                     |medievalmusic mod             |medievalmusic                 |1.18.2-1.4          |DONE      |Manifest: NOSIGNATURE         Goblins_Dungeons_1.0.8.jar                        |Goblins & Dungeons            |goblinsanddungeons            |1.0.8               |DONE      |Manifest: NOSIGNATURE         L_Enders Cataclysm-0.51-changed Them -1.18.2.jar  |Cataclysm Mod                 |cataclysm                     |1.0                 |DONE      |Manifest: NOSIGNATURE         Patchouli-1.18.2-71.1.jar                         |Patchouli                     |patchouli                     |1.18.2-71.1         |DONE      |Manifest: NOSIGNATURE         ars_nouveau-1.18.2-2.8.0.jar                      |Ars Nouveau                   |ars_nouveau                   |2.8.0               |DONE      |Manifest: NOSIGNATURE         collective-1.18.2-6.53.jar                        |Collective                    |collective                    |6.53                |DONE      |Manifest: NOSIGNATURE         betterbiomeblend-1.18.2-1.3.5-forge.jar           |Better Biome Blend            |betterbiomeblend              |1.3.5-forge         |DONE      |Manifest: NOSIGNATURE         unvotedandshelved-1.18.2-2.0.6-forge.jar          |Unvoted and Shelved           |unvotedandshelved             |1.18.2-2.0.6-forge  |DONE      |Manifest: NOSIGNATURE         YungsBetterStrongholds-1.18.2-Forge-2.1.1.jar     |YUNG's Better Strongholds     |betterstrongholds             |1.18.2-Forge-2.1.1  |DONE      |Manifest: NOSIGNATURE         starterkit-1.18.2-5.2.jar                         |Starter Kit                   |starterkit                    |5.2                 |DONE      |Manifest: NOSIGNATURE         architectury-4.11.89-forge.jar                    |Architectury                  |architectury                  |4.11.89             |DONE      |Manifest: NOSIGNATURE         ftb-library-forge-1802.3.11-build.177.jar         |FTB Library                   |ftblibrary                    |1802.3.11-build.177 |DONE      |Manifest: NOSIGNATURE         antiqueatlas-7.0.3-forge-mc1.18.2.jar             |Antique Atlas                 |antiqueatlas                  |7.0.3-forge-mc1.18.2|DONE      |Manifest: NOSIGNATURE         ftb-teams-forge-1802.2.10-build.96.jar            |FTB Teams                     |ftbteams                      |1802.2.10-build.96  |DONE      |Manifest: NOSIGNATURE         ftb-ranks-forge-1802.1.11-build.71.jar            |FTB Ranks                     |ftbranks                      |1802.1.11-build.71  |DONE      |Manifest: NOSIGNATURE         ftb-essentials-1802.1.7-build.42.jar              |FTB Essentials                |ftbessentials                 |1802.1.7-build.42   |DONE      |Manifest: NOSIGNATURE         AI-Improvements-1.18.2-0.5.2.jar                  |AI-Improvements               |aiimprovements                |0.5.2               |DONE      |Manifest: NOSIGNATURE         AgeingSpawners-1.18.2-1.2.2.jar                   |Ageing Spawners               |ageingspawners                |1.2.2               |DONE      |Manifest: NOSIGNATURE         ZenSummoning-1.18.2-1.3.8.jar                     |Zen Summoning                 |zensummoning                  |1.3.8               |DONE      |Manifest: NOSIGNATURE         majrusz-library-1.18.2-2.7.3.jar                  |Majrusz Library               |majruszlib                    |2.7.3               |DONE      |Manifest: NOSIGNATURE         enchantwithmob-1.18.2-4.2.1.jar                   |Enchant With Mob              |enchantwithmob                |1.18.2-4.2.1        |DONE      |Manifest: NOSIGNATURE         bwncr-3.13.21.jar                                 |Bad Wither No Cookie Reloaded |bwncr                         |3.13.21             |DONE      |Manifest: NOSIGNATURE         adaptive_performance_tweaks_items_1.18.2-3.19.0.ja|APTweaks: Items               |adaptive_performance_tweaks_it|3.19.0              |DONE      |Manifest: NOSIGNATURE         polylib-forge-1801.0.2-build.13.jar               |PolyLib                       |polylib                       |1801.0.2-build.13   |DONE      |Manifest: NOSIGNATURE         celesteconfig-1.18.2-1.0.0.jar                    |Celestial Config              |celesteconfig                 |1.0.0               |DONE      |Manifest: NOSIGNATURE         CraftPresence-1.18.2-Release-1.9.6-universal.jar  |CraftPresence                 |craftpresence                 |1.9.6               |DONE      |Manifest: NOSIGNATURE         FixMySpawnR-forge-1.18.2-1.0.0.jar                |Fix My SpawnR                 |fixmyspawnr                   |1.0.0               |DONE      |Manifest: NOSIGNATURE         BH-Menu-1.18.2-1.3.jar                            |Bisect Hosting Menu           |bhmenu                        |1.18.2-1.3          |DONE      |Manifest: NOSIGNATURE         biomemakeover-FORGE-1.18.2-1.4.32.jar             |Biome Makeover                |biomemakeover                 |1.18.2-1.4.32       |DONE      |Manifest: NOSIGNATURE         oculus-flywheel-compat-1.18.2-0.1.8-BETA.jar      |Oculus Flywheel Compat        |irisflw                       |1.18.2-0.1.8-BETA   |DONE      |Manifest: NOSIGNATURE         limitedchunks-1.18.2-2.3.jar                      |Limited Chunkloading          |limitedchunks                 |1.8                 |DONE      |Manifest: NOSIGNATURE         Shrines-1.18.2-4.1.0.jar                          |Shrines                       |shrines                       |1.18.2-4.1.0        |DONE      |Manifest: NOSIGNATURE         nourished-nether-1.18.2-v17.jar                   |Nourished Nether              |nourished_nether              |1.1.5               |DONE      |Manifest: NOSIGNATURE         item-filters-forge-1802.2.8-build.47.jar          |Item Filters                  |itemfilters                   |1802.2.8-build.47   |DONE      |Manifest: NOSIGNATURE         ftb-quests-forge-1802.3.14-build.191.jar          |FTB Quests                    |ftbquests                     |1802.3.14-build.191 |DONE      |Manifest: NOSIGNATURE         EasyMagic-v3.3.0-1.18.2-Forge.jar                 |Easy Magic                    |easymagic                     |3.3.0               |DONE      |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 RE Release V1.21.jar              |Enlightened End               |nourished_end                 |3.0.0               |DONE      |Manifest: NOSIGNATURE         the-conjurer-1.18.2-1.1.1.jar                     |The Conjurer                  |conjurer_illager              |1.1.1               |DONE      |Manifest: NOSIGNATURE         callablehorses-1.18.2-1.2.2.5.jar                 |Callable Horses               |callablehorses                |1.2.2.5             |DONE      |Manifest: 8c:03:ac:7d:21:62:65:e2:83:91:f3:22:57:99:ed:75:78:1e:db:de:03:99:ef:53:3b:59:95:18:01:bc:84:a9         obscure_api-10.jar                                |Obscure API                   |obscure_api                   |10                  |DONE      |Manifest: NOSIGNATURE         create-1.18.2-0.5.0.i.jar                         |Create                        |create                        |0.5.0.i             |DONE      |Manifest: NOSIGNATURE         waystones-forge-1.18.2-10.2.0.jar                 |Waystones                     |waystones                     |10.2.0              |DONE      |Manifest: NOSIGNATURE         MonsterPlus-Forge1.18.2-v1.1.5.jar                |Monster Plus                  |monsterplus                   |1.0                 |DONE      |Manifest: NOSIGNATURE         Structory-1.18.2-1.0.2.jar                        |Structory                     |structory                     |0.0NONE             |DONE      |Manifest: NOSIGNATURE         comforts-forge-1.18.2-5.0.0.6.jar                 |Comforts                      |comforts                      |1.18.2-5.0.0.6      |DONE      |Manifest: NOSIGNATURE         tumbleweed-1.18-0.5.4.jar                         |Tumbleweed                    |tumbleweed                    |1.18-0.5.4          |DONE      |Manifest: NOSIGNATURE         alternate-current-mc1.18-1.2.1.jar                |Alternate Current             |alternate_current             |0.0NONE             |DONE      |Manifest: NOSIGNATURE         [1.18.2-forge]-Epic-Knights-7.11.jar              |Epic Knights Mod              |magistuarmory                 |7.11                |DONE      |Manifest: NOSIGNATURE         DungeonCrawl-1.18.2-2.3.12.jar                    |Dungeon Crawl                 |dungeoncrawl                  |2.3.12              |DONE      |Manifest: NOSIGNATURE         BadMobs-1.18.2-13.01.jar                          |BadMobs                       |badmobs                       |13.01               |DONE      |Manifest: NOSIGNATURE         Obscuria's Tooltips 1.4.1 (1.18.2).jar            |Obscuria's Tooltips           |ob_tooltips                   |1.4.1               |DONE      |Manifest: NOSIGNATURE         farsightedmobs-forge-1.1-1.18.jar                 |Farsighted Mobs               |farsightedmobs                |1.1                 |DONE      |Manifest: NOSIGNATURE         lazydfu-1.0-1.18+.jar                             |LazyDFU                       |lazydfu                       |0.1.3               |DONE      |Manifest: NOSIGNATURE         YungsBetterDesertTemples-1.18.2-Forge-1.3.1.jar   |YUNG's Better Desert Temples  |betterdeserttemples           |1.18.2-Forge-1.3.1  |DONE      |Manifest: NOSIGNATURE         Orcz InteJason V5 1.18.2.jar                      |Orcz                          |orcz                          |0.74                |DONE      |Manifest: NOSIGNATURE         farsight-1.18.2-1.9.jar                           |Farsight mod                  |farsight_view                 |1.18.2-1.9          |DONE      |Manifest: NOSIGNATURE         ToastControl-1.18.2-6.0.3.jar                     |Toast Control                 |toastcontrol                  |6.0.3               |DONE      |Manifest: NOSIGNATURE         Terralith_v2.2.3.jar                              |Terralith                     |terralith                     |0.0NONE             |DONE      |Manifest: NOSIGNATURE         blueprint-1.18.2-5.5.0.jar                        |Blueprint                     |blueprint                     |5.5.0               |DONE      |Manifest: NOSIGNATURE         savage_and_ravage-1.18.2-4.0.1.jar                |Savage & Ravage               |savage_and_ravage             |4.0.1               |DONE      |Manifest: NOSIGNATURE         RecipeStages-3.0.0.10.jar                         |Recipe Stages                 |recipestages                  |3.0.0.10            |DONE      |Manifest: NOSIGNATURE         ArmoreableMobs-forge-1.18.2-1.0.5.jar             |Armoreable Mods               |armoreablemobs                |1.0.5               |DONE      |Manifest: NOSIGNATURE         TravelersTitles-1.18.2-Forge-2.1.1.jar            |Traveler's Titles             |travelerstitles               |1.18.2-Forge-2.1.1  |DONE      |Manifest: NOSIGNATURE         toofast-1.18-0.0.1.3.jar                          |Too Fast                      |toofast                       |0.0.1.2             |DONE      |Manifest: NOSIGNATURE         deathbackup-1.18.2-3.0.jar                        |Death Backup                  |deathbackup                   |3.0                 |DONE      |Manifest: NOSIGNATURE         meetyourfight-1.18.2-1.2.5.jar                    |Meet Your Fight               |meetyourfight                 |1.18.2-1.2.5        |DONE      |Manifest: NOSIGNATURE         selene-1.18.2-1.17.9.jar                          |Selene                        |selene                        |1.18.2-1.17.9       |DONE      |Manifest: NOSIGNATURE         supplementaries-1.18.2-1.5.16.jar                 |Supplementaries               |supplementaries               |1.18.2-1.5.16       |DONE      |Manifest: NOSIGNATURE         BrassAmberBattleTowers-1.18.2-2.3.5.jar           |Brass-Amber BattleTowers      |ba_bt                         |1.18.2-2.3.5        |DONE      |Manifest: NOSIGNATURE         revamped_phantoms-forge-0.2.3.jar                 |Revamped Phantoms             |revamped_phantoms             |0.2.3               |DONE      |Manifest: NOSIGNATURE         EnchantmentDescriptions-Forge-1.18.2-10.0.12.jar  |EnchantmentDescriptions       |enchdesc                      |10.0.12             |DONE      |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         Jade-1.18.2-forge-5.2.6.jar                       |Jade                          |jade                          |5.2.6               |DONE      |Manifest: NOSIGNATURE         CullLessLeaves-Reforged-1.18.2-1.0.5.jar          |Cull Less Leaves Reforged     |culllessleaves                |1.18.2-1.0.5        |DONE      |Manifest: NOSIGNATURE         CreativeCore_FORGE_v2.6.16_mc1.18.2.jar           |CreativeCore                  |creativecore                  |0.0NONE             |DONE      |Manifest: NOSIGNATURE         weaponmaster-multi-forge-1.18.1-3.0.3.jar         |YDM's Weapon Master           |weaponmaster                  |3.0.3               |DONE      |Manifest: NOSIGNATURE         smoothboot(reloaded)-mc1.18.2-0.0.2.jar           |Smooth Boot (Reloaded)        |smoothboot                    |0.0.2               |DONE      |Manifest: NOSIGNATURE         NethersDelight-1.18.2-2.2.0.jar                   |Nethers Delight               |nethersdelight                |2.2                 |DONE      |Manifest: NOSIGNATURE         RoughlyEnoughItems-8.3.594.jar                    |Roughly Enough Items (REI)    |roughlyenoughitems            |8.3.594             |DONE      |Manifest: NOSIGNATURE         Iceberg-1.18.2-forge-1.0.49.jar                   |Iceberg                       |iceberg                       |1.0.49              |DONE      |Manifest: NOSIGNATURE         Quark-3.2-358.jar                                 |Quark                         |quark                         |3.2-358             |DONE      |Manifest: NOSIGNATURE         LegendaryTooltips-1.18.2-1.3.1.jar                |Legendary Tooltips            |legendarytooltips             |1.3.1               |DONE      |Manifest: NOSIGNATURE         brutalbosses-1.18.2-5.7.jar                       |brutalbosses mod              |brutalbosses                  |1.18.2-5.7          |DONE      |Manifest: NOSIGNATURE         fancymenu_forge_2.13.3-2_MC_1.18.2.jar            |FancyMenu                     |fancymenu                     |2.13.3              |DONE      |Manifest: NOSIGNATURE         HunterIllager-1.18.2-4.0.1.jar                    |Hunter Illager                |hunterillager                 |1.18.2-4.0.1        |DONE      |Manifest: NOSIGNATURE         dannys_expansion-1.2.6.jar                        |Danny's Expansion             |dannys_expansion              |1.2.6               |DONE      |Manifest: NOSIGNATURE         creeperoverhaul-1.3.1-forge.jar                   |Creeper Overhaul              |creeperoverhaul               |1.3.1               |DONE      |Manifest: NOSIGNATURE         ferritecore-4.2.2-forge.jar                       |Ferrite Core                  |ferritecore                   |4.2.2               |DONE      |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         improvedmobs-1.18.2-1.11.0-forge.jar              |Improved Mobs Mod             |improvedmobs                  |1.18.2-1.11.0       |DONE      |Manifest: NOSIGNATURE         valhelsia_core-forge-1.18.2-0.4.0.jar             |Valhelsia Core                |valhelsia_core                |1.18.2-0.4.0        |DONE      |Manifest: NOSIGNATURE         valhelsia_structures-forge-1.18.2-0.1.0.jar       |Valhelsia Structures          |valhelsia_structures          |1.18.2-0.1.0        |DONE      |Manifest: NOSIGNATURE         DawnCraft-Tweaks-1.18.2-1.2.2b.jar                |DawnCraft-Tweaks              |dawncraft                     |1.18.2-1.2.2b       |DONE      |Manifest: NOSIGNATURE     Crash Report UUID: 5b8a533d-c451-4cc5-90ab-4b8ffeffaaea     FML: 40.2     Forge: net.minecraftforge:40.2.1     Flywheel Backend: GL33 Instanced Arrays
    • every time I try to load forge version 1. 12. 2 with the blockbuster mod the mclib and the metamorphs mod The game crashed and this is the crash m whilst there was a severe problem during mod loading that has caused the game to fail Error: net.minecraftforge.fml.common.LoaderExceptionModCrash: Caught exception from Blockbuster (blockbuster)
    • Join the Ultimate EarthSMP - [RiftMC SMP] play.riftmc.net https://riftmc.net/ Join Our Discord     Are you ready to embark on a Minecraft adventure like no other? Look no further than RiftMC! With our server, you'll be transported to a world of endless possibilities, where your imagination can run wild.   Have you ever dreamed of building your own kingdom, or exploring vast landscapes with your friends? At RiftMC, you can do just that and more. With multiple gameplay options, including survival, earthsmp, and PvP gameplay, you'll never run out of things to do.   Are you looking for a challenge? Our survival mode will test your skills as you brave the dangers of the wilderness. Or, if you're feeling creative, our custom world is the perfect canvas for you to unleash your imagination and build whatever your heart desires.   Do you thrive on competition? Our PvP arenas are the perfect place for you to battle it out with other players for supremacy. Or, if you prefer a more cooperative experience, join up with other players to form communities and build sprawling cities.   But that's not all - we also have a thriving economic system, where you can buy and sell goods with other players and even start your own businesses. And with our friendly and dedicated staff, you can rest assured that you'll always have the help and support you need.   So, what are you waiting for? Are you ready to experience the adventure of a lifetime? Join the thousands of players who have already discovered the magic of RiftMC! Simply connect to play.riftmc.net and let the journey begin. Are you ready to dive in?  
    • I want a sword that will kill all hostile mobs with one hit, so is there any way to do that?
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.