Jump to content

(1.18.2) Modifying features in the vanilla biomes


badkraft

Recommended Posts

I'm researching the how to create biomes in json. There is a great tool for creating the jsons online. Using the vanilla `river` biome, I want to essentially create a custom disk feature that mixes 3 blocks instead of a single-block provider. Any ideas on where to start with that?

Link to comment
Share on other sites

Not sure if this is what you're looking for, but this webpage explains the keys/values for the custom biome json file.

https://minecraft.fandom.com/wiki/Custom_biome

And this link is to slicedlime's GitHub where he posts the vanilla worldgen template files. He's kept it up to date until they started working on 1.19.3. This will give you pretty much everything you need for a worldgen datapack.

https://github.com/slicedlime/examples/commits/master

But, I will admit that I'm not sure I entirely understand what you mean by block provider. This is what the file for the disk_clay feature, in the configure_feature folder, looks like in vanilla:

{
  "type": "minecraft:disk",
  "config": {
    "half_height": 1,
    "radius": {
      "type": "minecraft:uniform",
      "value": {
        "max_inclusive": 3,
        "min_inclusive": 2
      }
    },
    "state_provider": {
      "fallback": {
        "type": "minecraft:simple_state_provider",
        "state": {
          "Name": "minecraft:clay"
        }
      },
      "rules": []
    },
    "target": {
      "type": "minecraft:matching_blocks",
      "blocks": [
        "minecraft:dirt",
        "minecraft:clay"
      ]
    }
  }
}

So the clay disk has two blocks in it actually, dirt and clay. I don't think it would be a problem to add a third block to the list. There is a file for disk_sand and disk_gravel as well.

Link to comment
Share on other sites

8 hours ago, badkraft said:

Are these files in minecraft data? If so, where?

But, spot on. That's what I was hoping for.

Thanks!

This came from slicedlime's download links. Last I knew, the guy works for Mojang. So yes, I assume it's somewhere in the vanilla jar, but probably obfuscated. I say this because you can pull any jar for a version of Minecraft you've played right from the game's folders, but when you look into the data folder of the jar, the worldgen folder isn't there until you hit 1.19.3. This is probably why he stopped posting them at that point.

So to find the jar on a PC it's AppData/Roaming/.minecraft/versions/ and in there will be folders for every version you've ever played. In each of those folders is a matching jar. This means that you'll probably be able to find it all in the external libraries of your workspace as well.

  • Like 1
Link to comment
Share on other sites

1 hour ago, badkraft said:

Ok... I'm not getting anything helpful in the directories. I've looked in the 1.18.2 since that's the version I'm working from.

Image insert isn't working so here is my directory structure.

I'll just start putting my modified .json files in ... let me see - ./data/modid/worldgen/

  • biome
  • placedfeature
  • etc.

Okay, so I'm pretty sure the zip folder you want from slicedlime is this one:

https://github.com/slicedlime/examples/tree/d766a7028865fc210bef3ddcffb54886cdaf4860

This should give you all the vanilla worldgen files and folders to look at as templates as well as how to place them in your own namespace.

I will admit that mostly what I've done with datapacks is make compatibility packs to make mods and datapacks more friendly with each other, or to make custom NPC villages for my sons. I've only dabbled in custom biomes a few times (tried to make a biome with spider spawners in the trees, but that didn't go well - the spawners still only spawn pigs), but I will help with whatever I can. The way I learn things is through exploration and experimentation, so I promise I'm not trying to confuse or mess anyone up. All I can do with certainty is share the information I've come across. Whether I understand it correctly or not is another matter.

There isn't a lot of documentation or tutorials for making datapacks. They exist, but basically be willing to experiment quite a bit until you get what you're aiming for. I never shared anything I made, but if it ends up being useful to you or relevant to what you're trying to do here, I'll put it up to look at in my GitHub. All of this is something I find very interesting, so I don't mind learning it with you.

Link to comment
Share on other sites

He's actually got aย  mistake in the video. It's relatively minor, though. But as far as accuracy, no one really tells you what to do to include biome modifications, configured/placed features, etc. You never get all the information in one place. Developers are the world's most ineffective documenters (I know because I am one) ...ย 

This is what I've done so far...

First usingย Data Pack Generatorsย created a project and organized like mod directory structure.

Second, I created a custom `configured_feature/disk_clay` and `placed_feature/disk_clay` for the `minecraft:river` biome to reference. But I have more planned changes to the river biome (and others). So, I copied minecraft `river.json`, place that in the `foundations/data/worldgen/biome/` directory.

To have minecraft reference the biome, I overrode the default `minecraft/data/dimension/overworld.json`. Where ever I found `minecraft:river` in overworld.json, I replaced with `foundations:river`.

The clay is still just minecraft:clay ... not foundations:clay_block. See screen shot.

So, I don't know what is keeping my clay blocks from being in the feature.

See directory structure.

There are 8 entries in `minecraft/dimension/overworld.json` where we can find `foundations:river`. The file is huge so I'm only including one of the biome entries...

Spoiler
        {
          "biome": "foundations:river",
          "parameters": {
            "temperature": [
              -0.45,
              1
            ],
            "humidity": [
              -1,
              1
            ],
            "continentalness": [
              -0.19,
              -0.11
            ],
            "erosion": [
              -1,
              -0.375
            ],
            "weirdness": [
              -0.05,
              0.05
            ],
            "depth": 0,
            "offset": 0
          }
        },

ย 

`foundations/worldgen/biome/river.json` See entry near the bottom of the features list.

Spoiler
{
  "temperature": 0.5,
  "downfall": 0.5,
  "precipitation": "rain",
  "category": "river",
  "effects": {
    ... snipped - irrelevant ...
  },
  "spawners": {
    ... snipped - irrelevant ...
  },
  "spawn_costs": {},
  "carvers": {
    ... snipped - irrelevant ...
  },
  "features": [
    ... snipped - irrelevant ... ,
    [
      "minecraft:ore_dirt",
      "minecraft:ore_gravel",
      "minecraft:ore_granite_upper",
      "minecraft:ore_granite_lower",
      "minecraft:ore_diorite_upper",
      "minecraft:ore_diorite_lower",
      "minecraft:ore_andesite_upper",
      "minecraft:ore_andesite_lower",
      "minecraft:ore_tuff",
      "minecraft:ore_coal_upper",
      "minecraft:ore_coal_lower",
      "minecraft:ore_iron_upper",
      "minecraft:ore_iron_middle",
      "minecraft:ore_iron_small",
      "minecraft:ore_gold",
      "minecraft:ore_gold_lower",
      "minecraft:ore_redstone",
      "minecraft:ore_redstone_lower",
      "minecraft:ore_diamond",
      "minecraft:ore_diamond_large",
      "minecraft:ore_diamond_buried",
      "minecraft:ore_lapis",
      "minecraft:ore_lapis_buried",
      "minecraft:ore_copper",
      "minecraft:underwater_magma",
      "foundations:disk_clay",
      "minecraft:disk_sand",
      "minecraft:disk_gravel"
    ],
    ... snipped - irrelevant ...
  ]
}

ย 

`foundations/worldgen/configured_feature/disk_clay.json`

Spoiler
{
  "type": "minecraft:disk",
  "config": {
    "state": {
      "Name": "minecraft:clay"
    },
    "radius": {
      "type": "minecraft:uniform",
      "value": {
        "min_inclusive": 2,
        "max_inclusive": 3
      }
    },
    "half_height": 1,
    "targets": [
      {
        "Name": "foundations:clay_block"
      },
      {
        "Name": "minecraft:gravel"
      },
      {
        "Name": "minecraft:clay"
      }
    ]
  }
}

And finally,ย `foundations/worldgen/placed_feature/disk_clay.json`

Spoiler
{
  "feature": "foundations:disk_clay",
  "placement": [
    {
      "type": "minecraft:in_square"
    },
    {
      "type": "minecraft:heightmap",
      "heightmap": "OCEAN_FLOOR_WG"
    },
    {
      "type": "minecraft:biome"
    }
  ]
}

ย 

P.S. -- how come I can insert image links from imgur?

Edited by badkraft
added relevant source materials
Link to comment
Share on other sites

2 hours ago, badkraft said:

P.S. -- how come I can insert image links from imgur?

Bottom right of the forum's comment box is a button that says, "Insert image from URL" copy the direct link of your image from Imagur to paste it in there.

As far as why your blocks aren't showing up, I don't know yet. And, yeah, I've noticed that the info is all over the place for datapacks. It's actually been easier for me to find stuff for Forge since I started modding - which I didn't expect. But, maybe this is because Forge has been around longer than the datapack feature so the community has had more time to do stuff with Forge in contrast with datapacks? As far as devs not documenting stuff? Well, you guys are busy so I get it. Honestly, I'm surprised he shared as much as he did for as long as he did.

Link to comment
Share on other sites

48 minutes ago, Warren Tode said:

Bottom right of the forum's comment box is a button that says, "Insert image from URL" copy the direct link of your image from Imagur to paste it in there.

Yeah, I've tried that. When I paste the link and click `Insert Into Post`, the button acts like it's disabled.

I'm going to add my json files in the previous post. It's usually some kind of little detail - like using `minecraft:` instead of my mod name.

Link to comment
Share on other sites

4 hours ago, badkraft said:

Yeah, I've tried that. When I paste the link and click `Insert Into Post`, the button acts like it's disabled.

I'm going to add my json files in the previous post. It's usually some kind of little detail - like using `minecraft:` instead of my mod name.

That is so weird, I don't know why the image link thing isn't working for you. :(

And I will try to make my own river with a custom clay disk to see what gives. I'm wondering if I misunderstood the format or something. Give me a bit and I'll see what I can figure out if anything.

Link to comment
Share on other sites

I've tried making my own test datapack in 1.18.2 with a custom river biome. The river generates just fine, but I'm running into the same problem as you are with the custom disk feature. I went so far as to remove all of the other disk features from my biome to be sure and it doesn't seem to matter what order I place the block replacing the clay (in my case, magenta concrete) my custom disk doesn't generate. I'm not sure what the problem is. Starting to wonder if there's another file we need.

  • Like 1
Link to comment
Share on other sites

7 hours ago, Warren Tode said:

I've tried making my own test datapack in 1.18.2 with a custom river biome. The river generates just fine, but I'm running into the same problem as you are with the custom disk feature. I went so far as to remove all of the other disk features from my biome to be sure and it doesn't seem to matter what order I place the block replacing the clay (in my case, magenta concrete) my custom disk doesn't generate. I'm not sure what the problem is. Starting to wonder if there's another file we need.

I began wondering the same - if there was a file missing or something. I kind of did the same as you, removing `minecraft:clay` from the disk_clay feature and that doesn't make a difference. It's like the feature is being ignored altogether.

I'm going to work around the problem in a 2-step process. I really want to be able to modify the biome.

  1. remove all the custom `river.json`, etc. from my mod with just the modified configured/placed feature in the minecraft/data folder; or,
  2. modify the `minecraft:clay` loot table to drop my custom item

ย 

Link to comment
Share on other sites

Okay, so I got it working for both 1.18.2 and 1.19.2 - in the process I learned that for 1.18.2 the configured feature file format only allows for you to place a single block, and it's in 1.19 that you're able to use weighted lists or noise providers for block placement in the disk feature. Meaning, that I was initially incorrect altogether about how the format works regarding block placement. For this I'm sorry.

So in 1.18.2 the configured feature placement looks like this:

Spoiler

ย 

{
  "type": "minecraft:disk",
  "config": {
    "state": {
		"Name": "minecraft:magenta_concrete"
    },
    "radius": {
      "type": "minecraft:uniform",
      "value": {
        "min_inclusive": 2,
        "max_inclusive": 8
      }
    },
    "half_height": 4,
    "targets": [
		{
			"Name": "minecraft:dirt"
		}
    ]
  }
}

In the "targets" section, you are permitted to have multiple blocks listed, and these are the blocks being replaced by the block defined first in "state".


However in 1.19.2, the format can look something like this:

Spoiler

ย 

{
  "type": "minecraft:disk",
  "config": {
    "state_provider": {
      "fallback": {
        "type": "minecraft:weighted_state_provider",
        "entries": [
          {
            "weight": 1,
            "data": {
              "Name": "minecraft:cyan_concrete"
            }
          },
          {
            "weight": 1,
            "data": {
              "Name": "minecraft:green_concrete"
            }
          },
          {
            "weight": 1,
            "data": {
              "Name": "minecraft:magenta_concrete"
            }
          }
        ]
      },
      "rules": []
    },
    "target": {
      "type": "minecraft:matching_blocks",
      "blocks": "minecraft:dirt"
    },
    "radius": {
      "type": "minecraft:uniform",
      "value": {
        "min_inclusive": 2,
        "max_inclusive": 3
      }
    },
    "half_height": 1
  }
}

Which gives me this for a result:

ndytaiZ.png

I hope this helps and I apologize for getting things mixed up earlier.

Edit: I've put both test datapacks in GitHub for anyone to look at.

1.18.2 Test Datapack
https://github.com/toadie-odie/TestDatapack-1.18.2

1.19.2 Test Datapack
https://github.com/toadie-odie/TestDatapack-1.19.2

Edited by Warren Tode
forgot to add GitHub links
  • Like 1
Link to comment
Share on other sites

1 hour ago, badkraft said:

I began wondering the same - if there was a file missing or something. I kind of did the same as you, removing `minecraft:clay` from the disk_clay feature and that doesn't make a difference. It's like the feature is being ignored altogether.

I'm going to work around the problem in a 2-step process. I really want to be able to modify the biome.

  1. remove all the custom `river.json`, etc. from my mod with just the modified configured/placed feature in the minecraft/data folder; or,
  2. modify the `minecraft:clay` loot table to drop my custom item

ย 

I also learned that you can add new disk features - up to a point. I put back the disk_clay, disk_gravel, and disk_sand and named my disk feature for 1.18.2 disk_concrete. All this worked just fine. When I tried to add disk_concrete_1, disk_concrete_2 to that list, 1 & 2 didn't show up. Not sure if it's due to the way I named them or if there is a limit as to how many disk features you can add to a biome.

I think you should be able to get your custom feature working just fine with the adjustments mentioned above, and if you don't want to completely replace the clay block, you could just rename your disk feature to something different so that the vanilla clay disks can be placed as well.

  • Like 1
Link to comment
Share on other sites

20 hours ago, badkraft said:

It's easier at this point just to modify the clay loot table. I've not seen enough in 1.19.x to make that leap. I've still got a long way to go with this.

ย 

ย 

I understand. Sorry it didn't work out the way you wanted.

Link to comment
Share on other sites

  • 2 weeks later...

After a couple of weeks thinking about this while on the road, I'm going to replace the standard clay block in generation with mine. You'll still be able to craft the `minecraft:clay` but it won't generate.

Later, I'll upgrade generation with a structure. That will allow multiple block types. I'm going to stick with 1.18.2 until I get Foundations where I want it. By then, around 1.21, 1.22 or 1.25, I'll update. I just can't see doing all this work for every version. If I'm always updating to a new version, I can't actually create features.

Link to comment
Share on other sites

On 2/6/2023 at 10:30 AM, Warren Tode said:

Okay, so I got it working for both 1.18.2 and 1.19.2 - in the process I learned that for 1.18.2 the configured feature file format only allows for you to place a single block, and it's in 1.19 that you're able to use weighted lists or noise providers for block placement in the disk feature. Meaning, that I was initially incorrect altogether about how the format works regarding block placement. For this I'm sorry.

So in 1.18.2 the configured feature placement looks like this:

ย  Reveal hidden contents

ย 

{
  "type": "minecraft:disk",
  "config": {
    "state": {
		"Name": "minecraft:magenta_concrete"
    },
    "radius": {
      "type": "minecraft:uniform",
      "value": {
        "min_inclusive": 2,
        "max_inclusive": 8
      }
    },
    "half_height": 4,
    "targets": [
		{
			"Name": "minecraft:dirt"
		}
    ]
  }
}

In the "targets" section, you are permitted to have multiple blocks listed, and these are the blocks being replaced by the block defined first in "state".


However in 1.19.2, the format can look something like this:

ย  Reveal hidden contents

ย 

{
  "type": "minecraft:disk",
  "config": {
    "state_provider": {
      "fallback": {
        "type": "minecraft:weighted_state_provider",
        "entries": [
          {
            "weight": 1,
            "data": {
              "Name": "minecraft:cyan_concrete"
            }
          },
          {
            "weight": 1,
            "data": {
              "Name": "minecraft:green_concrete"
            }
          },
          {
            "weight": 1,
            "data": {
              "Name": "minecraft:magenta_concrete"
            }
          }
        ]
      },
      "rules": []
    },
    "target": {
      "type": "minecraft:matching_blocks",
      "blocks": "minecraft:dirt"
    },
    "radius": {
      "type": "minecraft:uniform",
      "value": {
        "min_inclusive": 2,
        "max_inclusive": 3
      }
    },
    "half_height": 1
  }
}

Which gives me this for a result:

ndytaiZ.png

I hope this helps and I apologize for getting things mixed up earlier.

Edit: I've put both test datapacks in GitHub for anyone to look at.

1.18.2 Test Datapack
https://github.com/toadie-odie/TestDatapack-1.18.2

1.19.2 Test Datapack
https://github.com/toadie-odie/TestDatapack-1.19.2

My configured feature was wrong. I had the wrong block as the provider (state).

It's working now.

  • Like 1
Link to comment
Share on other sites

On 2/18/2023 at 10:31 AM, badkraft said:

After a couple of weeks thinking about this while on the road, I'm going to replace the standard clay block in generation with mine. You'll still be able to craft the `minecraft:clay` but it won't generate.

Later, I'll upgrade generation with a structure. That will allow multiple block types. I'm going to stick with 1.18.2 until I get Foundations where I want it. By then, around 1.21, 1.22 or 1.25, I'll update. I just can't see doing all this work for every version. If I'm always updating to a new version, I can't actually create features.

That totally makes sense to me. I've been hanging back in 1.19.2 for this reason as well. I'm not ready to jump right into 1.19.3 just yet. I only jumped into 1.19 when I did because I really liked some of the changes they had made to datapacks at the time and it didn't feel that hard for me to make the leap, but now that I'm tinkering around with Forge I feel like I have my hands full so I'm more than willing to just take my time for now to figure things out.

18 hours ago, badkraft said:

My configured feature was wrong. I had the wrong block as the provider (state).

It's working now.

I'm really glad you got it all sorted out. :)

  • 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.