Jump to content

[SOLVED] [1.5.2.] Custom Mobs /w Custom Sounds.


DoorCloser

Recommended Posts

Hey mates. I've came here with another question about modding. I'm basicly modding my own mod(mobs, dimensions, items, blocks etc.). I've made one mob and i wanted to make it say my own sounds. I've watched alot of tutorials. It was said to put code like that in EntityName of your mob:

protected String getLivingSound() {
return "mob.mymob.bip";
}
protected String getHurtSound() {
return "mob.mymob.hurt";
}
protected String getDeathSound() {
return "mob.mymob.death";
}

 

 

So i've made that code, i only need to put sounds in folders. I tried to put them in [resources/sound3/mob/mymob]. Checked it out in the game...nothing works. I couldnt hear mymob make those sounds. I tried to put sounds in [resources/newsound/mob/mymob]. It didnt worked too! I also tried to convert them in .ogg format. Nothing changed! But when i try to set it like cow sounds, or chicken or enderman and etc. it works, but only with their sounds.

I dont know what to do, maybe you know?

P.S; I'm working with 1.5.2 version of minecraft.

Please Help me!

Thanks alot if you do. 

Link to comment
Share on other sites

Your question is not any more important than any other question on here. Putting "Very important" in the title is a) not going to have the desired effect (more people reading) but the opposite and b) very insolent.

 

On topic: Post your sound registering code, it is important.

 

Very important means  its important for me... Not for others.

Link to comment
Share on other sites

On topic: Post your sound registering code, it is important.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Its an event handler class.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Thanks. Could you give me any tutorial on how to do that, or code? I remember something about that, but that was ModLoader. Forge is another.

Look on the wiki (link above) in the tutorials list.

 

Seriously? Wiki? There is no answers on such questions. They only giv e answers on development if so.

Link to comment
Share on other sites

Thanks. Could you give me any tutorial on how to do that, or code? I remember something about that, but that was ModLoader. Forge is another.

Look on the wiki (link above) in the tutorials list.

 

Seriously? Wiki? There is no answers on such questions. They only giv e answers on development if so.

 

Oh, so this page doesn't exist.  Gotcha.

(Despite being old, its still accurate, based on a cursory glance and my recollections of when I did it)

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Thanks. Could you give me any tutorial on how to do that, or code? I remember something about that, but that was ModLoader. Forge is another.

Look on the wiki (link above) in the tutorials list.

 

Seriously? Wiki? There is no answers on such questions. They only giv e answers on development if so.

 

Oh, so this page doesn't exist.  Gotcha.

(Despite being old, its still accurate, based on a cursory glance and my recollections of when I did it)

 

Thanks, but i still miss understand something. Tutorial says i supposed to put  MinecraftForge.EVENT_BUS.register(new HalflifeMod_EventSounds()); in @PreInit in Main.class. So it should be looks like that;

 

 

@PreInit

MinecraftForge.EVENT_BUS.register(new HalflifeMod_EventSounds());

}}

 

 

 

Because eclipse giving me an error;

Syntax Error on token "MinecraftForge", delete this token

 

Without that string my sounds doesnt work. Can you help? I'll give you some codes;

package doorcloser.modding;

import net.minecraftforge.client.event.sound.SoundLoadEvent;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.ForgeSubscribe;

public class HalflifeMod_EventSounds
{

    @ForgeSubscribe
    public void onSound(SoundLoadEvent event)
    {
        try 
        {
            event.manager.soundPoolSounds.addSound("houndeye/bip.wav", mod_HalflifeMod.class.getResource("/resources/newsound/mob/bip.ogg"));            
        
        } 
        catch (Exception e)
        {
            System.err.println("Failed to register one or more sounds.");
        }
    
        event.manager.soundPoolSounds.addSound("houndeye/bip1.ogg", mod_HalflifeMod.class.getResource("/resources/newsound/mob/bip1.ogg"));         
        event.manager.soundPoolSounds.addSound("houndeye/bip2.ogg", mod_HalflifeMod.class.getResource("/resources/newsound/mob/bip2.ogg"));         
        event.manager.soundPoolSounds.addSound("houndeye/bip3.ogg", mod_HalflifeMod.class.getResource("/resources/newsound/mob/bip3.ogg"));
        
}}

 

Did i set the paths not correct? Please help,

Link to comment
Share on other sites

@PreInit
MinecraftForge.EVENT_BUS.register(new HalflifeMod_EventSounds());
}}

 

This is wrong.

 

First, @PreInit is a function declared with the @PreInit annotation in your main class.

Second (and the only inaccuracy in the tutoral) is that @PreInit was depreciated in favor of @EventHandler, but it should alert you to this and what to use instead.

Third, I don't know how you thought you needed two unpaired close-braces.

 

    @EventHandler
    public void preInit(FMLPreInitializationEvent event)
    {
        MinecraftForge.EVENT_BUS.register(new HalflifeMod_EventSounds());
    }

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

@PreInit
MinecraftForge.EVENT_BUS.register(new HalflifeMod_EventSounds());
}}

 

This is wrong.

 

First, @PreInit is a function declared with the @PreInit annotation in your main class.

Second (and the only inaccuracy in the tutoral) is that @PreInit was depreciated in favor of @EventHandler, but it should alert you to this and what to use instead.

Third, I don't know how you thought you needed two unpaired close-braces.

 

    @EventHandler
    public void preInit(FMLPreInitializationEvent event)
    {
        MinecraftForge.EVENT_BUS.register(new HalflifeMod_EventSounds());
    }

 

Eclipse says; @EventHandler cannot be resolved to a type.

Whats the matter? Am i suppose to type it below @Mod, or upper? Below public class or upper?

Link to comment
Share on other sites

EventHandler wasnt implemented yet in 1.5.2 forge.

 

DoorCloser, is there any reason you dont start modding with 1.6.4? You might get better answers if you update.

 

I know, but there was alot of changes. I was already modding for 1.5.2. When i finish my mod, i'll port it to 1.6.4. :9

Link to comment
Share on other sites

EventHandler wasnt implemented yet in 1.5.2 forge.

 

DoorCloser, is there any reason you dont start modding with 1.6.4? You might get better answers if you update.

 

So, @PreInit made without errors. But still no sounds. I dont know where to put them. Is it supposed to be in sound3 or newsound in resources folder? I tried to put folder newsound in minecraft.jar, nothing worked. I did something wrong again? Check my codes please:

 

Event_Sound file:

 

 

package doorcloser.modding;

 

import net.minecraftforge.client.event.sound.SoundLoadEvent;

import net.minecraftforge.common.MinecraftForge;

import net.minecraftforge.event.ForgeSubscribe;

 

public class HalflifeMod_EventSounds {

 

@ForgeSubscribe

public void onSound(SoundLoadEvent event) {

try {

event.manager.soundPoolSounds.addSound("houndeye/bip1.wav",

mod_HalflifeMod.class

.getResource("/newsound/mob/houndeye/bip1.wav"));

event.manager.soundPoolSounds.addSound("houndeye/bip2.wav",

mod_HalflifeMod.class

.getResource("/newsound/mob/houndeye/bip2.wav"));

event.manager.soundPoolSounds.addSound("houndeye/bip3.wav",

mod_HalflifeMod.class

.getResource("/newsound/mob/houndeye/bip3.wav"));

 

} catch (Exception e) {

System.err.println("Failed to register one or more sounds.");

}

 

}

}

 

 

 

My mod file:

 

 

package doorcloser.modding;

 

import net.minecraftforge.common.*;

import net.minecraft.block.Block;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.entity.EnumCreatureType;

import net.minecraft.item.EnumToolMaterial;

import net.minecraft.item.Item;

import net.minecraft.item.ItemFood;

import net.minecraft.item.ItemStack;

import net.minecraft.world.biome.BiomeGenBase;

import net.minecraftforge.common.EnumHelper;

import cpw.mods.fml.client.registry.RenderingRegistry;

import cpw.mods.fml.common.Mod;

import cpw.mods.fml.common.Mod.Init;

import cpw.mods.fml.common.Mod.PreInit;

import cpw.mods.fml.common.event.FMLInitializationEvent;

import cpw.mods.fml.common.event.FMLPreInitializationEvent;

import cpw.mods.fml.common.network.NetworkMod;

import cpw.mods.fml.common.registry.EntityRegistry;

import cpw.mods.fml.common.registry.GameRegistry;

import cpw.mods.fml.common.registry.LanguageRegistry;

 

// basic forge stuff

@Mod(modid = "mod_HalflifeMod", name = "Half-Life MOD", version = "v1")

 

@NetworkMod(clientSideRequired = true, serverSideRequired = false)

public class mod_HalflifeMod {

 

@PreInit

    public void preInit(FMLPreInitializationEvent event)

    {

        MinecraftForge.EVENT_BUS.register(new HalflifeMod_EventSounds());

    }

 

//creative tabs

public static CreativeTabs hltab = new TabHL(CreativeTabs.getNextID(), "Half-Life Blocks");

 

 

public static Block floor01;

public static Block floor02;

public static Block floor03;

public static Block wall01;

public static Block wall02;

public static Block wall03;

public static Block wall04;

public static Block wall05;

public static Block wall06;

public static Block wall07;

public static Block wall08pt1;

public static Block wall08pt2;

public static Block smallpc;

public static Block xeniangrass;

public static Block xeniandirt;

public static Block xenianbluepillar;

public static Block xeniangreenpillar;

public static Block xenianstone;

public static Block xenianpillar;

 

public static Block xenportal;

public static int DimID = 4;

public static BiomeGenBase xenbiome1 = new BiomeGenSpaces(30);

 

 

 

public String getVersion() {

return "1.5.2";

}

 

@Init

public void load(FMLInitializationEvent event) {

 

//Houndeye main

EntityRegistry.registerGlobalEntityID(EntityHoundeye.class,"Houndeye", EntityRegistry.findGlobalUniqueEntityId(), 111738, 889345);

RenderingRegistry.registerEntityRenderingHandler(EntityHoundeye.class, new RenderHoundeye(new ModelHoundeye(), 0.5F));

 

//rendering stuff

EntityRegistry.registerModEntity(EntityHoundeye.class, "Houndeye", 1, this, 80, 3, true);

EntityRegistry.addSpawn(doorcloser.modding.EntityHoundeye.class,20,3,8, EnumCreatureType.creature);

 

// floor 01 block

floor01 = new BlockFloor01(2000, "floor01")

.setUnlocalizedName("floor01")

.setHardness(4.0F)

.setResistance(5.0F)

.setStepSound(Block.soundMetalFootstep);

GameRegistry.registerBlock(floor01, "floor01");

LanguageRegistry.addName(floor01, "Chess Floor");

 

// floor 02 block

floor02 = new BlockFloor02(2001, "floor02")

.setUnlocalizedName("floor02")

.setHardness(4.0F)

.setResistance(5.0F)

.setStepSound(Block.soundMetalFootstep);

GameRegistry.registerBlock(floor02, "floor02");

LanguageRegistry.addName(floor02, "Carpet FLoor");

 

// floor 03 block

floor03 = new BlockFloor03(2002, "floor03")

.setUnlocalizedName("floor03")

.setHardness(4.0F)

.setResistance(5.0F)

.setStepSound(Block.soundMetalFootstep);

GameRegistry.registerBlock(floor03, "floor03");

LanguageRegistry.addName(floor03, "SiloD Floor");

 

// wall 01 block

wall01 = new BlockWall01(2003, "wall01")

.setUnlocalizedName("wall01")

.setHardness(4.0F)

.setResistance(5.0F)

.setStepSound(Block.soundMetalFootstep);

GameRegistry.registerBlock(wall01, "wall01");

LanguageRegistry.addName(wall01, "Green MetalWall");

 

// wall 02 block

wall02 = new BlockWall02(2004, "wall02")

.setUnlocalizedName("wall02")

.setHardness(4.0F)

.setResistance(5.0F)

.setStepSound(Block.soundMetalFootstep);

GameRegistry.registerBlock(wall02, "wall02");

LanguageRegistry.addName(wall02, "Green MetalWall 2");

 

// wall 03 block

wall03 = new BlockWall03(2005, "wall03")

.setUnlocalizedName("wall03")

.setHardness(4.0F)

.setResistance(5.0F)

.setStepSound(Block.soundMetalFootstep);

GameRegistry.registerBlock(wall03, "wall03");

LanguageRegistry.addName(wall03, "Grey MetalWall");

 

// wall 04 block

wall04 = new BlockWall04(2006, "wall04")

.setUnlocalizedName("wall04")

.setHardness(4.0F)

.setResistance(5.0F)

.setStepSound(Block.soundMetalFootstep);

GameRegistry.registerBlock(wall04, "wall04");

LanguageRegistry.addName(wall04, "Grey MetalWall 2");

 

// wall 05 block

wall05 = new BlockWall05(2007, "wall05")

.setUnlocalizedName("wall05")

.setHardness(4.0F)

.setResistance(5.0F)

.setStepSound(Block.soundMetalFootstep);

GameRegistry.registerBlock(wall05, "wall05");

LanguageRegistry.addName(wall05, "Green MetalWall 3");

 

// wall 06 block

wall06 = new BlockWall06(2008, "wall06")

.setUnlocalizedName("wall06")

.setHardness(4.0F)

.setResistance(5.0F)

.setStepSound(Block.soundMetalFootstep);

GameRegistry.registerBlock(wall06, "wall06");

LanguageRegistry.addName(wall06, "Grey MetalWall 3");

 

// wall 07 block

wall07 = new BlockWall07(2009, "wall07")

.setUnlocalizedName("wall07")

.setHardness(4.0F)

.setResistance(5.0F)

.setStepSound(Block.soundMetalFootstep);

GameRegistry.registerBlock(wall07, "wall07");

LanguageRegistry.addName(wall07, "Grey MetalWall 4");

 

// wall 08 pt1 block

wall08pt1 = new BlockWall08pt1(2010, "wall08pt1")

.setUnlocalizedName("wall08pt1")

.setHardness(4.0F)

.setResistance(5.0F)

.setStepSound(Block.soundMetalFootstep);

GameRegistry.registerBlock(wall08pt1, "wall08pt1");

LanguageRegistry.addName(wall08pt1, "String Wall Top");

 

// wall 08 pt2 block

wall08pt2 = new BlockWall08pt2(2011, "wall08pt2")

.setUnlocalizedName("wall08pt2")

.setHardness(4.0F)

.setResistance(5.0F)

.setStepSound(Block.soundMetalFootstep);

GameRegistry.registerBlock(wall08pt2, "wall08pt2");

LanguageRegistry.addName(wall08pt2, "String Wall Bottom");

 

// small pc block

smallpc = new BlockPC(2012, "smallpc")

.setUnlocalizedName("monitor")

.setHardness(4.0F)

.setResistance(5.0F)

.setStepSound(Block.soundMetalFootstep);

GameRegistry.registerBlock(smallpc, "smallpc");

LanguageRegistry.addName(smallpc, "Small PC");

 

// [XEN STUFF BELOW]

 

// xenian grass block

xeniangrass = new BlockXenianGrass(2013, "xeniangrass")

.setUnlocalizedName("xeniangrass")

.setHardness(2.0F)

.setResistance(3.0F)

.setStepSound(Block.soundGrassFootstep);

GameRegistry.registerBlock(xeniangrass, "xeniangrass");

LanguageRegistry.addName(xeniangrass, "Xenian Grass");

// xenian dirt block

xeniandirt = new BlockXenianDirt(2014, "xeniandirt")

.setUnlocalizedName("xeniandirt")

.setHardness(2.0F)

.setResistance(3.0F)

.setStepSound(Block.soundGrassFootstep);

GameRegistry.registerBlock(xeniandirt, "xeniandirt");

LanguageRegistry.addName(xeniandirt, "Xenian Dirt");

// xenian blue pillar block

xenianbluepillar = new BlockXenianBluePillar(2015, "xenianbluepillar")

.setUnlocalizedName("xenianbluepillar")

.setHardness(8.0F)

.setResistance(4.0F)

.setStepSound(Block.soundStoneFootstep);

GameRegistry.registerBlock(xenianbluepillar, "xenianbluepillar");

LanguageRegistry.addName(xenianbluepillar, "Blue Xenian Pillar");

// xenian green pillar block

xeniangreenpillar = new BlockXenianGreenPillar(2016, "xenianbluepillar")

.setUnlocalizedName("xeniangreenpillar")

.setHardness(8.0F)

.setResistance(4.0F)

.setStepSound(Block.soundStoneFootstep);

GameRegistry.registerBlock(xeniangreenpillar, "xeniangreenpillar");

LanguageRegistry.addName(xeniangreenpillar, "Green Xenian Pillar");

// xenian pillar block

xenianpillar = new BlockXenianPillar(2017, "xenianpillar")

.setUnlocalizedName("xenianpillar")

.setHardness(8.0F)

.setResistance(4.0F)

.setStepSound(Block.soundStoneFootstep);

GameRegistry.registerBlock(xenianpillar, "xenianpillar");

LanguageRegistry.addName(xenianpillar, "Xenian Pillar");

// xenian stone block

xenianstone = new BlockXenianStone(2018, "xenianstone")

.setUnlocalizedName("xenianstone")

.setHardness(8.0F)

.setResistance(4.0F)

.setStepSound(Block.soundStoneFootstep);

GameRegistry.registerBlock(xenianstone, "xenianstone");

LanguageRegistry.addName(xenianstone, "Xenian Stone");

 

// xenian portal block

xenportal = new BlockXenPortal(2019)

.setUnlocalizedName("xenportal")

.setHardness(8.0F)

.setResistance(4.0F)

.setStepSound(Block.soundStoneFootstep);

GameRegistry.registerBlock(xenportal, "xenportal");

LanguageRegistry.addName(xenportal, "Xenian Portal");

 

// Dimension stuff below

DimensionManager.registerProviderType(DimID, WorldProviderXen.class, true);

DimensionManager.registerDimension(DimID, DimID);

}}

 

 

 

 

 

My Entity file:

 

 

package doorcloser.modding;

 

import cpw.mods.fml.relauncher.SideOnly;

import net.minecraft.client.Minecraft;

import net.minecraft.client.model.ModelBase;

import net.minecraft.client.renderer.entity.RenderLiving;

import net.minecraft.entity.Entity;

import net.minecraft.entity.ai.EntityAIAttackOnCollide;

import net.minecraft.entity.ai.EntityAIHurtByTarget;

import net.minecraft.entity.ai.EntityAILeapAtTarget;

import net.minecraft.entity.ai.EntityAILookIdle;

import net.minecraft.entity.ai.EntityAIMoveTwardsRestriction;

import net.minecraft.entity.ai.EntityAINearestAttackableTarget;

import net.minecraft.entity.ai.EntityAISwimming;

import net.minecraft.entity.ai.EntityAIWander;

import net.minecraft.entity.ai.EntityAIWatchClosest;

import net.minecraft.entity.ai.EntityLookHelper;

import net.minecraft.entity.monster.EntityMob;

import net.minecraft.entity.passive.EntityVillager;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.nbt.NBTTagCompound;

import net.minecraft.pathfinding.PathEntity;

import net.minecraft.world.World;

 

public class EntityHoundeye extends EntityMob {

 

// mob

public EntityHoundeye(World par1World) {

 

super(par1World);

this.setSize(0.6F, 0.8F);

this.moveSpeed = 0.3F;

texture = "/mob/HL/Houndeye.png";

isImmuneToFire = true;

this.getNavigator().setSpeed(0.3F);

// mob's ai below

 

this.tasks.addTask(0, new EntityAISwimming(this));

this.tasks.addTask(1, new EntityAIAttackOnCollide(this,

EntityPlayer.class, this.moveSpeed, false));

this.tasks.addTask(2, new EntityAIMoveTwardsRestriction(this,

this.moveSpeed));

this.tasks.addTask(3, new EntityAIWander(this, 0.2F));

this.tasks.addTask(4, new EntityAILeapAtTarget(this, 0.4F));

this.tasks.addTask(5, new EntityAIWatchClosest(this,

EntityPlayer.class, 6.0F));

this.tasks.addTask(6, new EntityAILookIdle(this));

this.targetTasks.addTask(0, new EntityAIHurtByTarget(this, true));

this.targetTasks.addTask(1, new EntityAINearestAttackableTarget(this,

EntityPlayer.class, 25.0F, 0, true));

 

}

 

protected boolean isAIEnabled()// enable/disable ai

{

return true;

}

 

public int func_82193_c(Entity par1Entity) // the ammount of damage

{

return 4;

}

 

protected void fall(float par1) {

}

 

public int getMaxHealth() // mob's health

{

return 15;

}

 

protected String getLivingSound() {

return "newsound.mob.houndeye.bip";

}

 

protected String getHurtSound() {

return "houndeye.bip";

}

 

protected String getDeathSound() {

return "mob.houndeye.bip";

}

 

public void writeEntityToNBT(NBTTagCompound par1NBTTagCompound) {

super.writeEntityToNBT(par1NBTTagCompound);

}

 

public void readEntityFromNBT(NBTTagCompound par1NBTTagCompound) {

super.readEntityFromNBT(par1NBTTagCompound);

}

 

protected float getSoundVolume() {

return 0.4F;

}

 

protected boolean canDespawn() // respawn after kill on the same spot

{

return false;

 

}

}

 

 

Link to comment
Share on other sites

Im guessing like every other asset for mods, it goes in your mod's asset folder. Probably in a sub-folder called sounds.

 

ITS FINALLY WORKED!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! I HAD TO PUT MY entity's sounds FOLDER IN resources/mod/sound FOLDER!!!! YEEEEEEEEEEEEEEEAAAAAAAAAAAH!!! THANKS EVERYONE!!!! THIS PROBLEM NOW SOLVED!!!!!!!!!!!!!!!!!!!!!

Link to comment
Share on other sites

EventHandler wasnt implemented yet in 1.5.2 forge.

 

Whoops, yeah, this.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

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
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
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.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • in jujutsu craft mod 1.20.1 my armor/clothes doesnt shown,how to fix this bug? reistalling didnt help
    • I haven't unfortunately, Ive looked online and some say use sodium or something to disable it but when I used other renderers it didn't work
    • i removed azurelib but now it shows me this error ---- Minecraft Crash Report ---- // Hi. I'm Connector, and I'm a crashaholic ========================= SINYTRA CONNECTOR IS PRESENT! Please verify issues are not caused by Connector before reporting them to mod authors. If you're unsure, file a report on Connector's issue tracker found at https://github.com/Sinytra/Connector/issues. ========================= // Hey, that tickles! Hehehe! Time: 2024-05-03 14:59:31 Description: Rendering overlay com.google.gson.JsonSyntaxException: Expected vector to be a JsonArray, was an object ({"ve...0]})     at net.minecraft.util.GsonHelper.m_13924_(GsonHelper.java:439) ~[client-1.20.1-20230612.114412-srg.jar%23960!/:?] {re:classloading,pl:connector_pre_launch:A,re:mixin,pl:connector_pre_launch:A}     at net.minecraft.util.GsonHelper.m_13933_(GsonHelper.java:445) ~[client-1.20.1-20230612.114412-srg.jar%23960!/:?] {re:classloading,pl:connector_pre_launch:A,re:mixin,pl:connector_pre_launch:A}     at software.bernie.geckolib.loading.json.typeadapter.BakedAnimationsAdapter.buildKeyframeStack(BakedAnimationsAdapter.java:157) ~[geckolib-forge-1.20.1-4.4.4.jar%23718!/:4.4.4] {re:classloading}     at software.bernie.geckolib.loading.json.typeadapter.BakedAnimationsAdapter.bakeBoneAnimations(BakedAnimationsAdapter.java:72) ~[geckolib-forge-1.20.1-4.4.4.jar%23718!/:4.4.4] {re:classloading}     at software.bernie.geckolib.loading.json.typeadapter.BakedAnimationsAdapter.bakeAnimation(BakedAnimationsAdapter.java:53) ~[geckolib-forge-1.20.1-4.4.4.jar%23718!/:4.4.4] {re:classloading}     at software.bernie.geckolib.loading.json.typeadapter.BakedAnimationsAdapter.deserialize(BakedAnimationsAdapter.java:39) ~[geckolib-forge-1.20.1-4.4.4.jar%23718!/:4.4.4] {re:classloading}     at software.bernie.geckolib.loading.json.typeadapter.BakedAnimationsAdapter.deserialize(BakedAnimationsAdapter.java:31) ~[geckolib-forge-1.20.1-4.4.4.jar%23718!/:4.4.4] {re:classloading}     at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:76) ~[gson-2.10.jar%23107!/:?] {}     at com.google.gson.Gson.fromJson(Gson.java:1214) ~[gson-2.10.jar%23107!/:?] {}     at com.google.gson.Gson.fromJson(Gson.java:1319) ~[gson-2.10.jar%23107!/:?] {}     at com.google.gson.Gson.fromJson(Gson.java:1261) ~[gson-2.10.jar%23107!/:?] {}     at software.bernie.geckolib.loading.FileLoader.loadAnimationsFile(FileLoader.java:28) ~[geckolib-forge-1.20.1-4.4.4.jar%23718!/:4.4.4] {re:classloading}     at software.bernie.geckolib.cache.GeckoLibCache.lambda$loadAnimations$1(GeckoLibCache.java:90) ~[geckolib-forge-1.20.1-4.4.4.jar%23718!/:4.4.4] {re:classloading}     at software.bernie.geckolib.cache.GeckoLibCache.lambda$loadResources$5(GeckoLibCache.java:112) ~[geckolib-forge-1.20.1-4.4.4.jar%23718!/:4.4.4] {re:classloading}     at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?] {}     at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?] {}     at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {}     at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {}     at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {re:mixin,re:computing_frames}     at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {re:mixin,re:computing_frames}     at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {re:mixin} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Stacktrace:     at net.minecraft.util.GsonHelper.m_13924_(GsonHelper.java:439) ~[client-1.20.1-20230612.114412-srg.jar%23960!/:?] {re:classloading,pl:connector_pre_launch:A,re:mixin,pl:connector_pre_launch:A}     at net.minecraft.util.GsonHelper.m_13933_(GsonHelper.java:445) ~[client-1.20.1-20230612.114412-srg.jar%23960!/:?] {re:classloading,pl:connector_pre_launch:A,re:mixin,pl:connector_pre_launch:A} -- Overlay render details -- Details:     Overlay name: net.minecraftforge.client.loading.ForgeLoadingOverlay Stacktrace:     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:957) ~[client-1.20.1-20230612.114412-srg.jar%23960!/:?] {re:mixin,pl:accesstransformer:B,pl:connector_pre_launch:A,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:moonlight-common.mixins.json:GameRendererMixin from mod moonlight,pl:mixin:APP:pehkui.mixins.json:reach.client.compat1202minus.GameRendererMixin from mod pehkui,pl:mixin:APP:supplementaries-common.mixins.json:GameRendererMixin from mod supplementaries,pl:mixin:APP:immediatelyfast-common.mixins.json:core.compat.MixinGameRenderer from mod immediatelyfast,pl:mixin:APP:ad_astra-common.mixins.json:client.GameRendererMixin from mod ad_astra,pl:mixin:APP:mixins.artifacts.common.json:item.wearable.nightvisiongoggles.client.GameRendererMixin from mod artifacts,pl:mixin:APP:apoli.mixins.json:GameRendererMixin from mod apoli,pl:mixin:APP:do_a_barrel_roll.mixins.json:client.roll.GameRendererMixin from mod do_a_barrel_roll,pl:mixin:APP:pointblank.mixins.json:GameRendererMixin from mod pointblank,pl:mixin:APP:pehkui.mixins.json:client.compat1193plus.GameRendererMixin from mod pehkui,pl:mixin:APP:ars_nouveau.mixins.json:GameRendererMixin from mod ars_nouveau,pl:mixin:APP:zeta_forge.mixins.json:client.GameRenderMixin from mod zeta,pl:mixin:APP:immersive_aircraft.mixins.json:client.GameRendererMixin from mod immersive_aircraft,pl:mixin:APP:mixins.reach-entity-attributes.json:client.GameRendererMixin from mod reach_entity_attributes,pl:mixin:APP:witherstormmod.mixins.json:IMixinGameRenderer from mod witherstormmod,pl:mixin:APP:witherstormmod.mixins.json:MixinGameRenderer from mod witherstormmod,pl:mixin:APP:forge-DistantHorizons.mixins.json:client.MixinGameRenderer from mod (unknown),pl:mixin:APP:alexscaves.mixins.json:client.GameRendererMixin from mod alexscaves,pl:mixin:APP:create.mixins.json:accessor.GameRendererAccessor from mod create,pl:mixin:APP:create.mixins.json:client.GameRendererMixin from mod create,pl:mixin:APP:embeddium.mixins.json:features.gui.hooks.console.GameRendererMixin from mod embeddium,pl:mixin:APP:securitycraft.mixins.json:camera.GameRendererMixin from mod securitycraft,pl:mixin:A,pl:connector_pre_launch:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23960!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:connector_pre_launch:A,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:mixin:APP:alexscaves.mixins.json:client.MinecraftMixin from mod alexscaves,pl:mixin:APP:amecsapi.mixins.json:MixinMinecraftClient from mod amecsapi,pl:mixin:APP:connectorextras_architectury_bridge.mixins.json:MinecraftMixin from mod connectorextras_architectury_bridge,pl:mixin:APP:mixins.hammerlib.json:client.MinecraftMixin from mod hammerlib,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge from mod modernfix,pl:mixin:APP:botania_xplat.mixins.json:client.MinecraftAccessor from mod botania,pl:mixin:APP:ae2.mixins.json:PickColorMixin from mod ae2,pl:mixin:APP:dungeonnowloading.mixins.json:MixinMinecraft from mod dungeonnowloading,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor from mod flywheel,pl:mixin:APP:fabric-registry-sync-v0.client.mixins.json:MinecraftClientMixin from mod fabric_registry_sync_v0,pl:mixin:APP:immediatelyfast-common.mixins.json:core.MixinMinecraftClient from mod immediatelyfast,pl:mixin:APP:bookshelf.common.mixins.json:accessors.client.AccessorMinecraft from mod bookshelf,pl:mixin:APP:mixins.connectorextras_modmenu_bridge.json:MinecraftMixin from mod connectorextras_modmenu_bridge,pl:mixin:APP:connectormod.mixins.json:registries.MinecraftMixin from mod connectormod,pl:mixin:APP:mixins.irons_spellbooks.json:MinecraftMixin from mod irons_spellbooks,pl:mixin:APP:quartz.mixins.json:MinecraftShutdownMixin from mod quartz,pl:mixin:APP:apoli.mixins.json:MinecraftClientMixin from mod apoli,pl:mixin:APP:balm.mixins.json:MinecraftMixin from mod balm,pl:mixin:APP:fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric_screen_api_v1,pl:mixin:APP:immersive_armors.mixins.json:MixinMinecraftClient from mod immersive_armors,pl:mixin:APP:emojiful.mixins.json:MinecraftEmojifulMixin from mod emojiful,pl:mixin:APP:celestisynth.mixins.json:MinecraftMixin from mod celestisynth,pl:mixin:APP:ars_nouveau.mixins.json:light.ClientMixin from mod ars_nouveau,pl:mixin:APP:bettercombat.mixins.json:client.MinecraftClientAccessor from mod bettercombat,pl:mixin:APP:bettercombat.mixins.json:client.MinecraftClientInject from mod bettercombat,pl:mixin:APP:witherstormmod.mixins.json:MixinMinecraft from mod witherstormmod,pl:mixin:APP:architectury.mixins.json:MixinMinecraft from mod architectury,pl:mixin:APP:fabric-networking-api-v1.client.mixins.json:accessor.MinecraftClientAccessor from mod fabric_networking_api_v1,pl:mixin:APP:fabric-lifecycle-events-v1.client.mixins.json:MinecraftClientMixin from mod fabric_lifecycle_events_v1,pl:mixin:APP:quark.mixins.json:client.MinecraftMixin from mod quark,pl:mixin:APP:fabric-events-interaction-v0.client.mixins.json:MinecraftClientMixin from mod fabric_events_interaction_v0,pl:mixin:APP:create.mixins.json:client.WindowResizeMixin from mod create,pl:mixin:APP:embeddium.mixins.json:core.MinecraftClientMixin from mod embeddium,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin from mod securitycraft,pl:mixin:APP:ars_nouveau.mixins.json:camera.MinecraftMixin from mod ars_nouveau,pl:mixin:APP:mixins.connectorextras_geckolib_fabric_compat.json:MinecraftMixin from mod connectorextras_geckolib_fabric_compat,pl:mixin:APP:connectormod.mixins.json:boot.MinecraftMixin from mod connectormod,pl:mixin:A,pl:connector_pre_launch:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23960!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:connector_pre_launch:A,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:mixin:APP:alexscaves.mixins.json:client.MinecraftMixin from mod alexscaves,pl:mixin:APP:amecsapi.mixins.json:MixinMinecraftClient from mod amecsapi,pl:mixin:APP:connectorextras_architectury_bridge.mixins.json:MinecraftMixin from mod connectorextras_architectury_bridge,pl:mixin:APP:mixins.hammerlib.json:client.MinecraftMixin from mod hammerlib,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin from mod modernfix,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge from mod modernfix,pl:mixin:APP:botania_xplat.mixins.json:client.MinecraftAccessor from mod botania,pl:mixin:APP:ae2.mixins.json:PickColorMixin from mod ae2,pl:mixin:APP:dungeonnowloading.mixins.json:MixinMinecraft from mod dungeonnowloading,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor from mod flywheel,pl:mixin:APP:fabric-registry-sync-v0.client.mixins.json:MinecraftClientMixin from mod fabric_registry_sync_v0,pl:mixin:APP:immediatelyfast-common.mixins.json:core.MixinMinecraftClient from mod immediatelyfast,pl:mixin:APP:bookshelf.common.mixins.json:accessors.client.AccessorMinecraft from mod bookshelf,pl:mixin:APP:mixins.connectorextras_modmenu_bridge.json:MinecraftMixin from mod connectorextras_modmenu_bridge,pl:mixin:APP:connectormod.mixins.json:registries.MinecraftMixin from mod connectormod,pl:mixin:APP:mixins.irons_spellbooks.json:MinecraftMixin from mod irons_spellbooks,pl:mixin:APP:quartz.mixins.json:MinecraftShutdownMixin from mod quartz,pl:mixin:APP:apoli.mixins.json:MinecraftClientMixin from mod apoli,pl:mixin:APP:balm.mixins.json:MinecraftMixin from mod balm,pl:mixin:APP:fabric-screen-api-v1.mixins.json:MinecraftClientMixin from mod fabric_screen_api_v1,pl:mixin:APP:immersive_armors.mixins.json:MixinMinecraftClient from mod immersive_armors,pl:mixin:APP:emojiful.mixins.json:MinecraftEmojifulMixin from mod emojiful,pl:mixin:APP:celestisynth.mixins.json:MinecraftMixin from mod celestisynth,pl:mixin:APP:ars_nouveau.mixins.json:light.ClientMixin from mod ars_nouveau,pl:mixin:APP:bettercombat.mixins.json:client.MinecraftClientAccessor from mod bettercombat,pl:mixin:APP:bettercombat.mixins.json:client.MinecraftClientInject from mod bettercombat,pl:mixin:APP:witherstormmod.mixins.json:MixinMinecraft from mod witherstormmod,pl:mixin:APP:architectury.mixins.json:MixinMinecraft from mod architectury,pl:mixin:APP:fabric-networking-api-v1.client.mixins.json:accessor.MinecraftClientAccessor from mod fabric_networking_api_v1,pl:mixin:APP:fabric-lifecycle-events-v1.client.mixins.json:MinecraftClientMixin from mod fabric_lifecycle_events_v1,pl:mixin:APP:quark.mixins.json:client.MinecraftMixin from mod quark,pl:mixin:APP:fabric-events-interaction-v0.client.mixins.json:MinecraftClientMixin from mod fabric_events_interaction_v0,pl:mixin:APP:create.mixins.json:client.WindowResizeMixin from mod create,pl:mixin:APP:embeddium.mixins.json:core.MinecraftClientMixin from mod embeddium,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin from mod securitycraft,pl:mixin:APP:ars_nouveau.mixins.json:camera.MinecraftMixin from mod ars_nouveau,pl:mixin:APP:mixins.connectorextras_geckolib_fabric_compat.json:MinecraftMixin from mod connectorextras_geckolib_fabric_compat,pl:mixin:APP:connectormod.mixins.json:boot.MinecraftMixin from mod connectormod,pl:mixin:A,pl:connector_pre_launch:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.2.0.jar:?] {re:mixin,pl:connector_pre_launch:A,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:flywheel.mixins.json:ClientMainMixin from mod flywheel,pl:mixin:A,pl:connector_pre_launch: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) ~[?:?] {re:mixin}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.2.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.2.0.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} -- Last reload -- Details:     Reload number: 1     Reload reason: initial     Finished: No     Packs: pointblank_resources, vanilla, mod_resources, Moonlight Mods Dynamic Assets, fabric, diagonalblocks:default_block_models, SolarFlux -- System Details -- Details:     Minecraft Version: 1.20.1     Minecraft Version ID: 1.20.1     Operating System: Windows 11 (amd64) version 10.0     Java Version: 17.0.8, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 2006572032 bytes (1913 MiB) / 4555014144 bytes (4344 MiB) up to 8589934592 bytes (8192 MiB)     CPUs: 16     Processor Vendor: GenuineIntel     Processor Name: Intel(R) Core(TM) i7-10700F CPU @ 2.90GHz     Identifier: Intel64 Family 6 Model 165 Stepping 5     Microarchitecture: unknown     Frequency (GHz): 2.90     Number of physical packages: 1     Number of physical CPUs: 8     Number of logical CPUs: 16     Graphics card #0 name: NVIDIA GeForce RTX 3060     Graphics card #0 vendor: NVIDIA (0x10de)     Graphics card #0 VRAM (MB): 4095.00     Graphics card #0 deviceId: 0x2487     Graphics card #0 versionInfo: DriverVersion=31.0.15.5222     Memory slot #0 capacity (MB): 8192.00     Memory slot #0 clockSpeed (GHz): 2.40     Memory slot #0 type: DDR4     Memory slot #1 capacity (MB): 8192.00     Memory slot #1 clockSpeed (GHz): 2.40     Memory slot #1 type: DDR4     Virtual memory max (MB): 25878.83     Virtual memory used (MB): 22916.43     Swap memory total (MB): 9597.22     Swap memory used (MB): 960.27     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx8G -Xms256m     Launched Version: forge-47.2.0     Backend library: LWJGL version 3.3.1 build 7     Backend API: NVIDIA GeForce RTX 3060/PCIe/SSE2 GL version 4.6.0 NVIDIA 552.22, NVIDIA Corporation     Window size: 1024x768     GL Caps: Using framebuffer using OpenGL 3.2     GL debug messages:      Using VBOs: Yes     Is Modded: Definitely; Client brand changed to 'forge'     Type: Client (map_client.txt)     Graphics mode: fast     Resource Packs: vanilla, mod_resources, Moonlight Mods Dynamic Assets, fabric     Current Language: en_us     CPU: 16x Intel(R) Core(TM) i7-10700F CPU @ 2.90GHz     Sinytra Connector: 1.0.0-beta.43+1.20.1         SINYTRA CONNECTOR IS PRESENT!         Please verify issues are not caused by Connector before reporting them to mod authors. If you're unsure, file a report on Connector's issue tracker.         Connector's issue tracker can be found at https://github.com/Sinytra/Connector/issues.         Installed Fabric mods:         | ================================================== | ============================== | ============================== | ==================== |         | mcdar-4.0.3_mapped_srg_1.20.1.jar                  | MC Dungeons Artifacts          | mcdar                          | 4.0.3                |         | Godling-1.0.2_mapped_srg_1.20.1.jar                | Godling Origins                | godling_origin                 | 1.0.2                |     ModLauncher: 10.0.9+10.0.9+main.dcd20f30     ModLauncher launch target: forgeclient     ModLauncher naming: srg     ModLauncher services:          mixin-0.8.5.jar mixin PLUGINSERVICE          eventbus-6.0.5.jar eventbus PLUGINSERVICE          fmlloader-1.20.1-47.2.0.jar slf4jfixer PLUGINSERVICE          fmlloader-1.20.1-47.2.0.jar object_holder_definalize PLUGINSERVICE          fmlloader-1.20.1-47.2.0.jar runtime_enum_extender PLUGINSERVICE          fmlloader-1.20.1-47.2.0.jar capability_token_subclass PLUGINSERVICE          accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE          fmlloader-1.20.1-47.2.0.jar runtimedistcleaner PLUGINSERVICE          modlauncher-10.0.9.jar mixin TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar fml TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar mixin-transmogrifier TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar connector_loader TRANSFORMATIONSERVICE      FML Language Providers:          javafml@null         [email protected]         lowcodefml@null         [email protected]         [email protected]         [email protected]     Mod List:          YungsBetterDungeons-1.20-Forge-4.0.4.jar          |YUNG's Better Dungeons        |betterdungeons                |1.20-Forge-4.0.4    |COMMON_SET|Manifest: NOSIGNATURE         HavenGrowth-1.20.1-1.0.4.jar                      |Haven Growth                  |havengrowth                   |1.0.4               |COMMON_SET|Manifest: NOSIGNATURE         V1.20.1_Crystalcraft_Unlimited_Raw_Ore_Update.jar |Crystalcraft Unlimited Java Ed|crystalcraft_unlimited_java   |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         CraftingAutomat-MC1.20.1-1.2.4.jar                |Crafting Automat              |craftingautomat               |1.2.4               |COMMON_SET|Manifest: NOSIGNATURE         nethervillagertrader-1.0.0.jar                    |NetherVillagerTrader          |nethervillagertrader          |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         moreautomationmod-1.5.0.jar                       |More Automation Mod           |moreautomationmod             |1.5.0               |COMMON_SET|Manifest: NOSIGNATURE         kubejs-bridge-1.10.1+1.20.1.jar                   |Connector Extras KubeJS Bridge|connectorextras_kubejs_bridge |1.10.1+1.20.1       |COMMON_SET|Manifest: NOSIGNATURE         fabric-rendering-fluids-v1-3.0.28+4ac5e37a77.jar  |Fabric Rendering Fluids (v1)  |fabric_rendering_fluids_v1    |3.0.28+4ac5e37a77   |COMMON_SET|Manifest: NOSIGNATURE         mcdar-4.0.3_mapped_srg_1.20.1.jar                 |MC Dungeons Artifacts         |mcdar                         |4.0.3               |COMMON_SET|Manifest: NOSIGNATURE         fabric-models-v0-0.4.2+7c3892a477.jar             |Fabric Models (v0)            |fabric_models_v0              |0.4.2+7c3892a477    |COMMON_SET|Manifest: NOSIGNATURE         HammerLib-1.20.1-20.1.28.jar                      |HammerLib                     |hammerlib                     |20.1.28             |COMMON_SET|Manifest: 97:e8:52:e9:b3:f0:1b:83:57:4e:83:15:f7:e7:76:51:c6:60:5f:2b:45:59:19:a7:31:9e:98:69:56:4f:01:3c         ProjectE-1.20.1-PE1.0.1.jar                       |ProjectE                      |projecte                      |1.0.1               |COMMON_SET|Manifest: NOSIGNATURE         immersiveweapons-1.20.1-1.27.7.jar                |Immersive Weapons             |immersiveweapons              |1.20.1-1.27.7       |COMMON_SET|Manifest: NOSIGNATURE         ForgeEndertech-1.20.1-11.1.3.0-build.0398.jar     |ForgeEndertech                |forgeendertech                |11.1.3.0            |COMMON_SET|Manifest: NOSIGNATURE         antsportation-1.20.1-3.0.4.jar                    |Antsportation                 |antsportation                 |3.0.4               |COMMON_SET|Manifest: NOSIGNATURE         CreateMoreAutomation-1.20.1-0.4.0.jar             |Create: More Automation       |create_more_automation        |0.3.0               |COMMON_SET|Manifest: NOSIGNATURE         modernfix-forge-5.17.0+mc1.20.1.jar               |ModernFix                     |modernfix                     |5.17.0+mc1.20.1     |COMMON_SET|Manifest: NOSIGNATURE         fabric-command-api-v1-1.2.34+f71b366f77.jar       |Fabric Command API (v1)       |fabric_command_api_v1         |1.2.34+f71b366f77   |COMMON_SET|Manifest: NOSIGNATURE         fabric-block-view-api-v2-1.0.1+0767707077.jar     |Fabric BlockView API (v2)     |fabric_block_view_api_v2      |1.0.1+0767707077    |COMMON_SET|Manifest: NOSIGNATURE         fabric-command-api-v2-2.2.13+561530ec77.jar       |Fabric Command API (v2)       |fabric_command_api_v2         |2.2.13+561530ec77   |COMMON_SET|Manifest: NOSIGNATURE         YungsApi-1.20-Forge-4.0.4.jar                     |YUNG's API                    |yungsapi                      |1.20-Forge-4.0.4    |COMMON_SET|Manifest: NOSIGNATURE         BotanyPotsTiers-Forge-1.20.1-6.0.1.jar            |BotanyPotsTiers               |botanypotstiers               |6.0.1               |COMMON_SET|Manifest: NOSIGNATURE         rei-bridge-1.10.1+1.20.1.jar                      |Connector Extras REI Bridge   |connectorextras_rei_bridge    |1.10.1+1.20.1       |COMMON_SET|Manifest: NOSIGNATURE         OreTree-Forge-1.20.1-1.1.0.jar                    |Ore Tree                      |ore_tree                      |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         DarkUtilities-Forge-1.20.1-17.0.3.jar             |DarkUtilities                 |darkutils                     |17.0.3              |COMMON_SET|Manifest: NOSIGNATURE         YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar  |YUNG's Better Nether Fortresse|betterfortresses              |1.20-Forge-2.0.6    |COMMON_SET|Manifest: NOSIGNATURE         Paraglider-forge-20.1.3.jar                       |Paraglider                    |paraglider                    |20.1.3              |COMMON_SET|Manifest: NOSIGNATURE         cloth-config-11.1.118-forge.jar                   |Cloth Config v10 API          |cloth_config                  |11.1.118            |COMMON_SET|Manifest: NOSIGNATURE         sb_objectsblocks-1.03release.jar                  |security_breach_objects/blocks|sb_objectsblocks              |1.05                |COMMON_SET|Manifest: NOSIGNATURE         refinedstorage-1.12.4.jar                         |Refined Storage               |refinedstorage                |1.12.4              |COMMON_SET|Manifest: NOSIGNATURE         embeddium-0.3.17+mc1.20.1-all.jar                 |Embeddium                     |embeddium                     |0.3.17+mc1.20.1     |COMMON_SET|Manifest: NOSIGNATURE         structure_gel-1.20.1-2.16.2.jar                   |Structure Gel API             |structure_gel                 |2.16.2              |COMMON_SET|Manifest: NOSIGNATURE         corpse-forge-1.20.1-1.0.12.jar                    |Corpse                        |corpse                        |1.20.1-1.0.12       |COMMON_SET|Manifest: NOSIGNATURE         castle_in_the_sky-1.20.1-0.6.0.jar                |Castle in the Sky             |castle_in_the_sky             |1.20.1              |COMMON_SET|Manifest: NOSIGNATURE         industrial-foregoing-1.20.1-3.5.16.jar            |Industrial Foregoing          |industrialforegoing           |3.5.16              |COMMON_SET|Manifest: NOSIGNATURE         TaxOceanVillager+M.1.20.1+ForM+2.3.1.jar          |Tax' Ocean Villager           |taxov                         |2.3.1               |COMMON_SET|Manifest: NOSIGNATURE         handcrafted-forge-1.20.1-3.0.6.jar                |Handcrafted                   |handcrafted                   |3.0.6               |COMMON_SET|Manifest: NOSIGNATURE         morevillagers-forge-1.20.1-5.0.0.jar              |More Villagers                |morevillagers                 |5.0.0               |COMMON_SET|Manifest: NOSIGNATURE         mod-4.0.9.jar                                     |GroovyModLoader               |gml                           |4.0.9               |COMMON_SET|Manifest: NOSIGNATURE         immersivefoods-1.20.1-0.0.1.jar                   |Immersive Foods               |immersivefoods                |1.20.1-0.0.1        |COMMON_SET|Manifest: NOSIGNATURE         SkyLands-0.2.0.jar                                |flying stuff                  |flying_stuff                  |0.2                 |COMMON_SET|Manifest: NOSIGNATURE         Botania-1.20.1-443-FORGE.jar                      |Botania                       |botania                       |1.20.1-443-FORGE    |COMMON_SET|Manifest: NOSIGNATURE         cgl-1.20-forge-0.3.3.jar                          |CommonGroovyLibrary           |commongroovylibrary           |0.3.3               |COMMON_SET|Manifest: NOSIGNATURE         advgenerators-1.6.0.6-mc1.20.1.jar                |Advanced Generators           |advgenerators                 |1.6.0.6             |COMMON_SET|Manifest: NOSIGNATURE         smelting-1.20.1-ver1.0.jar                        |Smelting                      |smelting                      |1.0                 |COMMON_SET|Manifest: NOSIGNATURE         YungsExtras-1.20-Forge-4.0.3.jar                  |YUNG's Extras                 |yungsextras                   |1.20-Forge-4.0.3    |COMMON_SET|Manifest: NOSIGNATURE         dungeons-and-taverns-3.0.3.f[Forge].jar           |Dungeons and Taverns          |mr_dungeons_andtaverns        |3.0.3.f             |COMMON_SET|Manifest: NOSIGNATURE         bettervillage-forge-1.20.1-3.2.0.jar              |Better village                |bettervillage                 |3.1.0               |COMMON_SET|Manifest: NOSIGNATURE         cumulus_menus-1.20.1-1.0.0-neoforge.jar           |Cumulus                       |cumulus_menus                 |1.20.1-1.0.0-neoforg|COMMON_SET|Manifest: NOSIGNATURE         NaturesAura-39.4.jar                              |NaturesAura                   |naturesaura                   |39.4                |COMMON_SET|Manifest: NOSIGNATURE         constructionwand-1.20.1-2.11.jar                  |Construction Wand             |constructionwand              |1.20.1-2.11         |COMMON_SET|Manifest: NOSIGNATURE         cfm-forge-1.20.1-7.0.0-pre36.jar                  |MrCrayfish's Furniture Mod    |cfm                           |7.0.0-pre36         |COMMON_SET|Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         flib-1.20.1-0.0.12.jar                            |flib                          |flib                          |0.0.12              |COMMON_SET|Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed         YungsBetterEndIsland-1.20-Forge-2.0.6.jar         |YUNG's Better End Island      |betterendisland               |1.20-Forge-2.0.6    |COMMON_SET|Manifest: NOSIGNATURE         fabric-rendering-data-attachment-v1-0.3.37+a6081af|Fabric Rendering Data Attachme|fabric_rendering_data_attachme|0.3.37+a6081afc77   |COMMON_SET|Manifest: NOSIGNATURE         Lets_Forge_Pirates_[1_20_1]_3_10_1.jar            |Let'sForgePirates             |lfpirates                     |3.10.1              |COMMON_SET|Manifest: NOSIGNATURE         nitrogen_internals-1.20.1-1.0.7-neoforge.jar      |Nitrogen                      |nitrogen_internals            |1.20.1-1.0.7-neoforg|COMMON_SET|Manifest: NOSIGNATURE         FallingTree-1.20.1-4.3.4.jar                      |FallingTree                   |fallingtree                   |4.3.4               |COMMON_SET|Manifest: 3c:8e:df:6c:df:a6:2a:9f:af:64:ea:04:9a:cf:65:92:3b:54:93:0e:96:50:b4:52:e1:13:42:18:2b:ae:40:29         lootintegrationaddonyung-1.18-1.20.1-1.1.jar      |Yungs Dungeons Lootintegration|lootintegrationaddonyung      |1.18-1.20.1-1.1     |COMMON_SET|Manifest: NOSIGNATURE         FastLeafDecay-31.jar                              |Fast Leaf Decay               |fastleafdecay                 |31                  |COMMON_SET|Manifest: NOSIGNATURE         EnchantingInfuser-v8.0.2-1.20.1-Forge.jar         |Enchanting Infuser            |enchantinginfuser             |8.0.2               |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         YungsBetterJungleTemples-1.20-Forge-2.0.4.jar     |YUNG's Better Jungle Temples  |betterjungletemples           |1.20-Forge-2.0.4    |COMMON_SET|Manifest: NOSIGNATURE         fabric-client-tags-api-v1-1.1.2+5d6761b877.jar    |Fabric Client Tags            |fabric_client_tags_api_v1     |1.1.2+5d6761b877    |COMMON_SET|Manifest: NOSIGNATURE         SmartBrainLib-forge-1.20.1-1.14.jar               |SmartBrainLib                 |smartbrainlib                 |1.14                |COMMON_SET|Manifest: NOSIGNATURE         QuarkOddities-1.20.1.jar                          |Quark Oddities                |quarkoddities                 |1.20.1              |COMMON_SET|Manifest: NOSIGNATURE         tameablebeasts-1.20.1-5.0.jar                     |Tameable Beasts               |tameablebeasts                |2.0                 |COMMON_SET|Manifest: NOSIGNATURE         MutantMonsters-v8.0.7-1.20.1-Forge.jar            |Mutant Monsters               |mutantmonsters                |8.0.7               |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         Nameless Trinkets-1.20.1-1.7.8.jar                |Nameless Trinkets             |nameless_trinkets             |1.20.1-1.7.8        |COMMON_SET|Manifest: NOSIGNATURE         VisualWorkbench-v8.0.0-1.20.1-Forge.jar           |Visual Workbench              |visualworkbench               |8.0.0               |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         Sword_Of_God_0.6.6-1.20.1.jar                     |Sword_of_god                  |sword_of_god                  |0.6.6               |COMMON_SET|Manifest: NOSIGNATURE         AttributeFix-Forge-1.20.1-21.0.4.jar              |AttributeFix                  |attributefix                  |21.0.4              |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         fabric-screen-handler-api-v1-1.3.30+561530ec77.jar|Fabric Screen Handler API (v1)|fabric_screen_handler_api_v1  |1.3.30+561530ec77   |COMMON_SET|Manifest: NOSIGNATURE         libraryferret-forge-1.20.1-4.0.0.jar              |Library ferret                |libraryferret                 |4.0.0               |COMMON_SET|Manifest: NOSIGNATURE         goblintraders-forge-1.20.1-1.9.3.jar              |Goblin Traders                |goblintraders                 |1.9.3               |COMMON_SET|Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         caelus-forge-3.2.0+1.20.1.jar                     |Caelus API                    |caelus                        |3.2.0+1.20.1        |COMMON_SET|Manifest: NOSIGNATURE         FoodMod - 1.20.1 - 2.0.2.jar                      |More Foods Mod                |more_foods_mod                |2.0.2               |COMMON_SET|Manifest: NOSIGNATURE         oresabovediamonds-10.0.1b.jar                     |Ores Above Diamonds           |oresabovediamonds             |10.0.1b             |COMMON_SET|Manifest: NOSIGNATURE         Dungeon Now Loading-forge-1.20.1-1.3.jar          |Dungeon Now Loading           |dungeonnowloading             |1.3                 |COMMON_SET|Manifest: NOSIGNATURE         awesomedungeon-forge-1.20.1-3.2.0.jar             |Awesome dungeon               |awesomedungeon                |3.2.0               |COMMON_SET|Manifest: NOSIGNATURE         ggggggggg.jar                                     |Industry Underway             |industry_underway             |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         BotanyPots-Forge-1.20.1-13.0.29.jar               |BotanyPots                    |botanypots                    |13.0.29             |COMMON_SET|Manifest: NOSIGNATURE         phosphophyllite-1.20.1-0.7.0-alpha.0.1.jar        |Phosphophyllite               |phosphophyllite               |0.7.0-alpha.0.1     |COMMON_SET|Manifest: NOSIGNATURE         midnightlib-forge-1.4.2.jar                       |MidnightLib                   |midnightlib                   |1.4.2               |COMMON_SET|Manifest: NOSIGNATURE         ProjectE_Integration-1.20.1-7.2.2.jar             |ProjectE Integration          |projecteintegration           |7.2.2               |COMMON_SET|Manifest: NOSIGNATURE         BetterFusionReactor-1.20.1-1.4.5.jar              |Better Fusion Reactor for Meka|bfr                           |1.4.5               |COMMON_SET|Manifest: NOSIGNATURE         fusion-1.1.1-forge-mc1.20.1.jar                   |Fusion                        |fusion                        |1.1.1               |COMMON_SET|Manifest: NOSIGNATURE         ExtraDisks-1.20.1-3.0.2.jar                       |Extra Disks                   |extradisks                    |1.20.1-3.0.2        |COMMON_SET|Manifest: NOSIGNATURE         fabric-particles-v1-1.1.2+78e1ecb877.jar          |Fabric Particles (v1)         |fabric_particles_v1           |1.1.2+78e1ecb877    |COMMON_SET|Manifest: NOSIGNATURE         LUMINOUS V1.3.51 - 1.20.1.jar                     |Luminous                      |luminousworld                 |1.3.5               |COMMON_SET|Manifest: NOSIGNATURE         industrial drills 1.20.1.jar                      |mining equipment              |mining_equipment              |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         LootBag-1.20.1-1.2.2.jar                          |Loot Bag                      |lootbag                       |1.2.2               |COMMON_SET|Manifest: NOSIGNATURE         ironchest-1.20.1-14.4.4.jar                       |Iron Chests                   |ironchest                     |1.20.1-14.4.4       |COMMON_SET|Manifest: NOSIGNATURE         MythicBotany-1.20.1-4.0.3.jar                     |MythicBotany                  |mythicbotany                  |1.20.1-4.0.3        |COMMON_SET|Manifest: NOSIGNATURE         DungeonsArise-1.20.x-2.1.58-release.jar           |When Dungeons Arise           |dungeons_arise                |2.1.58-1.20.x       |COMMON_SET|Manifest: NOSIGNATURE         dimensionalpocketsii-1.20.1-9.0.9.0-universal.jar |Dimensional Pockets II        |dimensionalpocketsii          |9.0.8.0             |COMMON_SET|Manifest: NOSIGNATURE         awesomedungeonocean-forge-1.20.1-3.3.0.jar        |Awesome dungeon edition ocean |awesomedungeonocean           |3.3.0               |COMMON_SET|Manifest: NOSIGNATURE         client-1.20.1-20230612.114412-srg.jar             |Minecraft                     |minecraft                     |1.20.1              |COMMON_SET|Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f         trade-cycling-forge-1.20.1-1.0.7.jar              |Trade Cycling                 |trade_cycling                 |1.20.1-1.0.7        |COMMON_SET|Manifest: NOSIGNATURE         shw-forge-1.0.0.jar                               |Set Home & Waypoints          |shw                           |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         theoneprobe-1.20.1-10.0.2.jar                     |The One Probe                 |theoneprobe                   |1.20.1-10.0.2       |COMMON_SET|Manifest: NOSIGNATURE         TerraBlender-forge-1.20.1-3.0.1.4.jar             |TerraBlender                  |terrablender                  |3.0.1.4             |COMMON_SET|Manifest: NOSIGNATURE         BiomesOPlenty-1.20.1-18.0.0.598.jar               |Biomes O' Plenty              |biomesoplenty                 |18.0.0.598          |COMMON_SET|Manifest: NOSIGNATURE         Godling-1.0.2_mapped_srg_1.20.1.jar               |Godling Origins               |godling_origin                |1.0.2               |COMMON_SET|Manifest: NOSIGNATURE         darkloot-forge-1.20.1-1.1.9.jar                   |DarkLoot                      |darkloot                      |1.1.9               |COMMON_SET|Manifest: NOSIGNATURE         AdLods-1.20.1-8.1.2.0-build.0424.jar              |Large Ore Deposits            |adlods                        |8.1.2.0             |COMMON_SET|Manifest: NOSIGNATURE         fabric-block-api-v1-1.0.11+0e6cb7f777.jar         |Fabric Block API (v1)         |fabric_block_api_v1           |1.0.11+0e6cb7f777   |COMMON_SET|Manifest: NOSIGNATURE         fabric-resource-conditions-api-v1-2.3.8+9ad825cd77|Fabric Resource Conditions API|fabric_resource_conditions_api|2.3.8+9ad825cd77    |COMMON_SET|Manifest: NOSIGNATURE         randommobsizes-forge-1.20.1-2.0.jar               |Random Mob Sizes              |random_mob_sizes              |1.20.1-2.0          |COMMON_SET|Manifest: NOSIGNATURE         forgeconfigapiport-1.10.1+1.20.1.jar              |Forge Config API Port (Connect|forgeconfigapiport            |8.0.0               |COMMON_SET|Manifest: NOSIGNATURE         calio-forge-1.20.1-1.11.0.4.jar                   |Calio                         |calio                         |1.20.1-1.11.0.4     |COMMON_SET|Manifest: NOSIGNATURE         betterfpsdist-1.20.1-4.3.jar                      |betterfpsdist mod             |betterfpsdist                 |1.20.1-4.3          |COMMON_SET|Manifest: NOSIGNATURE         notenoughanimations-forge-1.7.3-mc1.20.1.jar      |NotEnoughAnimations           |notenoughanimations           |1.7.3               |COMMON_SET|Manifest: NOSIGNATURE         flywheel-forge-1.20.1-0.6.10-7.jar                |Flywheel                      |flywheel                      |0.6.10-7            |COMMON_SET|Manifest: NOSIGNATURE         baubley-heart-canisters-1.20.1-1.0.5.jar          |Baubley Heart Canisters       |bhc                           |1.20.1-1.0.5        |COMMON_SET|Manifest: NOSIGNATURE         JustEnoughProfessions-forge-1.20.1-3.0.1.jar      |Just Enough Professions (JEP) |justenoughprofessions         |3.0.1               |COMMON_SET|Manifest: NOSIGNATURE         [1.20.1] SecurityCraft v1.9.9.jar                 |SecurityCraft                 |securitycraft                 |1.9.9               |COMMON_SET|Manifest: NOSIGNATURE         nocube's_create_compact_exp_1.0.3_forge_1.20.1.jar|Create Compact Exp (by NoCube)|nocubescreateexp              |1.0.3               |COMMON_SET|Manifest: NOSIGNATURE         fabric-registry-sync-v0-2.3.3+1c0ea72177.jar      |Fabric Registry Sync (v0)     |fabric_registry_sync_v0       |2.3.3+1c0ea72177    |COMMON_SET|Manifest: NOSIGNATURE         ImmediatelyFast-Forge-1.2.12+1.20.4.jar           |ImmediatelyFast               |immediatelyfast               |1.2.12+1.20.4       |COMMON_SET|Manifest: NOSIGNATURE         FastFurnace-1.20.1-8.0.2.jar                      |FastFurnace                   |fastfurnace                   |8.0.2               |COMMON_SET|Manifest: NOSIGNATURE         moremobvariants-forge+1.20.1-1.3.0.1.jar          |More Mob Variants             |moremobvariants               |1.3.0.1             |COMMON_SET|Manifest: NOSIGNATURE         lootr-forge-1.20-0.7.33.83.jar                    |Lootr                         |lootr                         |0.7.33.82           |COMMON_SET|Manifest: NOSIGNATURE         fabric-object-builder-api-v1-11.1.3+2174fc8477.jar|Fabric Object Builder API (v1)|fabric_object_builder_api_v1  |11.1.3+2174fc8477   |COMMON_SET|Manifest: NOSIGNATURE         occultism-1.20.1-1.125.0.jar                      |Occultism                     |occultism                     |1.125.0             |COMMON_SET|Manifest: NOSIGNATURE         endsky-1.5.jar                                    |Better End Sky                |endsky                        |1.5                 |COMMON_SET|Manifest: NOSIGNATURE         adastraextra-forge-1.20.1-1.2.3.jar               |Ad Astra Extra                |adastraextra                  |1.2.3               |COMMON_SET|Manifest: NOSIGNATURE         fabric-message-api-v1-5.1.9+52cc178c77.jar        |Fabric Message API (v1)       |fabric_message_api_v1         |5.1.9+52cc178c77    |COMMON_SET|Manifest: NOSIGNATURE         cosmeticarmorreworked-1.20.1-v1a.jar              |CosmeticArmorReworked         |cosmeticarmorreworked         |1.20.1-v1a          |COMMON_SET|Manifest: 5e:ed:25:99:e4:44:14:c0:dd:89:c1:a9:4c:10:b5:0d:e4:b1:52:50:45:82:13:d8:d0:32:89:67:56:57:01:53         MMFarming-1.20.1-2.1.jar                          |Multipart Machines: Farming   |mm_farming                    |2.1                 |COMMON_SET|Manifest: NOSIGNATURE         ad_astra-forge-1.20.1-1.15.5.jar                  |Ad Astra                      |ad_astra                      |1.15.5              |COMMON_SET|Manifest: NOSIGNATURE         SkyVillages-1.0.3-1.19.2-1.20.x-forge-release.jar |Sky Villages                  |skyvillages                   |1.0.3               |COMMON_SET|Manifest: NOSIGNATURE         fabric-renderer-api-v1-3.2.1+1d29b44577.jar       |Fabric Renderer API (v1)      |fabric_renderer_api_v1        |3.2.1+1d29b44577    |COMMON_SET|Manifest: NOSIGNATURE         fabric-item-api-v1-2.1.28+4d0bbcfa77.jar          |Fabric Item API (v1)          |fabric_item_api_v1            |2.1.28+4d0bbcfa77   |COMMON_SET|Manifest: NOSIGNATURE         ants-1.20.1-forge-ver2.2.jar                      |Ants Unleashed                |ants_unleashed                |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         sophisticatedcore-1.20.1-0.6.21.609.jar           |Sophisticated Core            |sophisticatedcore             |0.6.21.609          |COMMON_SET|Manifest: NOSIGNATURE         structureessentials-1.20.1-3.3.jar                |Structure Essentials mod      |structureessentials           |1.20.1-3.3          |COMMON_SET|Manifest: NOSIGNATURE         Placebo-1.20.1-8.6.1.jar                          |Placebo                       |placebo                       |8.6.1               |COMMON_SET|Manifest: NOSIGNATURE         jumpoverfences-forge-1.20.1-1.3.1.jar             |Jump Over Fences              |jumpoverfences                |1.3.1               |COMMON_SET|Manifest: NOSIGNATURE         lootintegrations-1.20.1-3.6.jar                   |Lootintegrations mod          |lootintegrations              |1.20.1-3.6          |COMMON_SET|Manifest: NOSIGNATURE         Bookshelf-Forge-1.20.1-20.1.10.jar                |Bookshelf                     |bookshelf                     |20.1.10             |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         Random Crits 1.3.0 - 1.20.1.jar                   |Random Crits                  |random_crits                  |1.3.0               |COMMON_SET|Manifest: NOSIGNATURE         sophisticatedbackpacks-1.20.1-3.20.5.1044.jar     |Sophisticated Backpacks       |sophisticatedbackpacks        |3.20.5.1044         |COMMON_SET|Manifest: NOSIGNATURE         EnhancedNature-1.20.x-(v.2.1.0).jar               |Enhanced Nature               |enhanced_nature               |2.1.0               |COMMON_SET|Manifest: NOSIGNATURE         ImmersiveCaves-Forge-1.20.1-1.3.4.jar             |ImmersiveCaves                |immersivecaves                |1.3.0               |COMMON_SET|Manifest: NOSIGNATURE         SupremeMiningDimensions-1.20.1-V1.4.3.8.jar       |Supreme Mining Dimension      |supreme_mining_dimension      |1.4.3.8             |COMMON_SET|Manifest: NOSIGNATURE         More Villager Trades 1.0.0 - 1.20.1.jar           |More Villager Trades          |more_villager_trades          |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         fabric-api-0.92.1+1.11.8+1.20.1.jar               |Forgified Fabric API          |fabric_api                    |0.92.1+1.11.8+1.20.1|COMMON_SET|Manifest: NOSIGNATURE         modmenu-bridge-1.10.1+1.20.1.jar                  |Connector Extras ModMenu Bridg|connectorextras_modmenu_bridge|1.10.1+1.20.1       |COMMON_SET|Manifest: NOSIGNATURE         ironbows-1.20.1-FORGE-1.10.jar                    |Iron Bows (Forge)             |ironbows                      |1.20.1-FORGE-1.10   |COMMON_SET|Manifest: NOSIGNATURE         diagonalblocks-forge-8.0.5.jar                    |Diagonal Blocks               |diagonalblocks                |8.0.5               |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         Chipped-forge-1.20.1-3.0.6.jar                    |Chipped                       |chipped                       |3.0.6               |COMMON_SET|Manifest: NOSIGNATURE         mcw-bridges-3.0.0-mc1.20.1forge.jar               |Macaw's Bridges               |mcwbridges                    |3.0.0               |COMMON_SET|Manifest: NOSIGNATURE         mageflame-1.20.1-1.4.0.jar                        |MageFlame                     |mageflame                     |1.4.0               |COMMON_SET|Manifest: NOSIGNATURE         BagusMob-1.20.1-4.0.1.jar                         |BagusMob                      |bagusmob                      |1.20.1-4.0.1        |COMMON_SET|Manifest: NOSIGNATURE         HostileNeuralNetworks-1.20.1-5.3.0.jar            |Hostile Neural Networks       |hostilenetworks               |5.3.0               |COMMON_SET|Manifest: NOSIGNATURE         signpost-1.20.1-2.02.0.jar                        |signpost                      |signpost                      |2.02.0              |COMMON_SET|Manifest: NOSIGNATURE         fabric-api-lookup-api-v1-1.6.36+67f9824077.jar    |Fabric API Lookup API (v1)    |fabric_api_lookup_api_v1      |1.6.36+67f9824077   |COMMON_SET|Manifest: NOSIGNATURE         GodzillaRising_Beta0.1.6.jar                      |Godzilla Rising               |grising                       |0.1.6               |COMMON_SET|Manifest: NOSIGNATURE         simplylight-1.20.1-1.4.6-build.50.jar             |Simply Light                  |simplylight                   |1.20.1-1.4.6-build.5|COMMON_SET|Manifest: NOSIGNATURE         industrial-foregoing-souls-1.20.1-1.0.7.jar       |Industrial Foregoing Souls    |industrialforegoingsouls      |1.20.1-1.0.7        |COMMON_SET|Manifest: NOSIGNATURE         born_in_chaos_[Forge]1.20.1_1.2.jar               |Born in Chaos                 |born_in_chaos_v1              |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         architectury-bridge-1.10.1+1.20.1.jar             |Connector Extras Architectury |connectorextras_architectury_b|1.10.1+1.20.1       |COMMON_SET|Manifest: NOSIGNATURE         SolarFluxReborn-1.20.1-20.1.6.jar                 |Solar Flux Reborn             |solarflux                     |20.1.6              |COMMON_SET|Manifest: 97:e8:52:e9:b3:f0:1b:83:57:4e:83:15:f7:e7:76:51:c6:60:5f:2b:45:59:19:a7:31:9e:98:69:56:4f:01:3c         hole_filler_mod-1.2.8_mc-1.20.1_forge.jar         |Hole Filler Mod               |hole_filler_mod               |1.2.8               |COMMON_SET|Manifest: NOSIGNATURE         camera-forge-1.20.1-1.0.8.jar                     |Camera Mod                    |camera                        |1.20.1-1.0.8        |COMMON_SET|Manifest: NOSIGNATURE         oreexcavation-1.13.170.jar                        |OreExcavation                 |oreexcavation                 |1.13.170            |COMMON_SET|Manifest: NOSIGNATURE         villagertools-1.20.1-1.0.3.jar                    |villagertools                 |villagertools                 |1.0.3               |COMMON_SET|Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed         elevatorid-1.20.1-lex-1.9.jar                     |Elevator Mod                  |elevatorid                    |1.20.1-lex-1.9      |COMMON_SET|Manifest: NOSIGNATURE         Connector-1.0.0-beta.43+1.20.1-mod.jar            |Connector                     |connectormod                  |1.0.0-beta.43+1.20.1|COMMON_SET|Manifest: NOSIGNATURE         Runelic-Forge-1.20.1-18.0.2.jar                   |Runelic                       |runelic                       |18.0.2              |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         SimpleDrills-1.5.jar                              |SimpleDrills                  |simpledrills                  |1.5.0               |COMMON_SET|Manifest: NOSIGNATURE         cupboard-1.20.1-2.6.jar                           |Cupboard utilities            |cupboard                      |1.20.1-2.6          |COMMON_SET|Manifest: NOSIGNATURE         monolib-forge-1.20.1-1.1.0.jar                    |MonoLib                       |monolib                       |1.1.0               |COMMON_SET|Manifest: NOSIGNATURE         joyfulmining-1.20.1-1.2.3.jar                     |Dorcamo's Joyful Mining       |joyful_mining                 |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         framework-forge-1.20.1-0.6.27.jar                 |Framework                     |framework                     |0.6.27              |COMMON_SET|Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         quark_delight_1.0.0_forge_1.20.1.jar              |Quark Delight                 |quarkdelight                  |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         effortlessbuilding-1.20.1-3.7-all.jar             |Effortless Building           |effortlessbuilding            |3.7                 |COMMON_SET|Manifest: NOSIGNATURE         Sky Structures 1.0.0 - 1.20.1.jar                 |Sky Structures                |sky_structures                |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         fabric-key-binding-api-v1-1.0.37+561530ec77.jar   |Fabric Key Binding API (v1)   |fabric_key_binding_api_v1     |1.0.37+561530ec77   |COMMON_SET|Manifest: NOSIGNATURE         fabric-transfer-api-v1-3.3.5+631c9cd677.jar       |Fabric Transfer API (v1)      |fabric_transfer_api_v1        |3.3.5+631c9cd677    |COMMON_SET|Manifest: NOSIGNATURE         biggerreactors-1.20.1-0.6.0-beta.10.4.jar         |Bigger Reactors               |biggerreactors                |0.6.0-beta.10.4     |COMMON_SET|Manifest: NOSIGNATURE         compact-storage-1.20.1-forge-6.0.1.64.jar         |CompactStorage                |compact_storage               |6.0.1.64            |COMMON_SET|Manifest: NOSIGNATURE         pehkui-bridge-1.10.1+1.20.1.jar                   |Connector Extras Pehkui Bridge|connectorextras_pehkui_bridge |1.10.1+1.20.1       |COMMON_SET|Manifest: NOSIGNATURE         Monster Hunter Villager 1.1.0-1.20.1.jar          |Monster Hunter Villager       |monster_hunter_villager       |1.1.0               |COMMON_SET|Manifest: NOSIGNATURE         fabric-resource-loader-v0-0.11.10+bcd08ed377.jar  |Fabric Resource Loader (v0)   |fabric_resource_loader_v0     |0.11.10+bcd08ed377  |COMMON_SET|Manifest: NOSIGNATURE         Clumps-forge-1.20.1-12.0.0.4.jar                  |Clumps                        |clumps                        |12.0.0.4            |COMMON_SET|Manifest: NOSIGNATURE         MMGrinding-1.20.1-2.1.jar                         |Multipart Machines: Grinding  |mm_grinding                   |2.1                 |COMMON_SET|Manifest: NOSIGNATURE         breezy-1.20.1-1.1.1.jar                           |Breezy                        |breezy                        |1.1.1               |COMMON_SET|Manifest: NOSIGNATURE         artifacts-forge-9.5.3.jar                         |Artifacts                     |artifacts                     |9.5.3               |COMMON_SET|Manifest: NOSIGNATURE         mysticrift_blocks-15.2.3.jar                      |MysticRift: Ultimate Blocks   |mysticrift_blocks             |15.2.3              |COMMON_SET|Manifest: NOSIGNATURE         MekanismExplosives-1.20.1-0.3.5.jar               |Mekanism Explosives           |mekanismexplosives            |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         dimensional_traders-1.1.jar                       |Dimensional Traders           |dimensional_traders           |1.1                 |COMMON_SET|Manifest: NOSIGNATURE         mininggadgets-1.15.6.jar                          |Mining Gadgets                |mininggadgets                 |1.15.6              |COMMON_SET|Manifest: NOSIGNATURE         energy-bridge-1.10.1+1.20.1.jar                   |Connector Extras Energy Bridge|connectorextras_energy_bridge |1.10.1+1.20.1       |COMMON_SET|Manifest: NOSIGNATURE         watut-forge-1.20.1-1.1.1.jar                      |What Are They Up To           |watut                         |1.20.1-1.1.1        |COMMON_SET|Manifest: NOSIGNATURE         Animalistic_mod_1.2.2_1.20.1.jar                  |Animalistic                   |animalistic_a                 |1.2.2               |COMMON_SET|Manifest: NOSIGNATURE         scuba_gear-1.20.1-1.0.6.jar                       |Scuba Gear                    |scuba_gear                    |1.0.6               |COMMON_SET|Manifest: NOSIGNATURE         ColossalChests-1.20.1-1.8.4.jar                   |ColossalChests                |colossalchests                |1.8.4               |COMMON_SET|Manifest: NOSIGNATURE         avaritialite-forge-1.20.1-1.10.2.jar              |Avaritia Lite                 |avaritia                      |1.10.2              |COMMON_SET|Manifest: NOSIGNATURE         fabric-blockrenderlayer-v1-1.1.41+1d0da21e77.jar  |Fabric BlockRenderLayer Regist|fabric_blockrenderlayer_v1    |1.1.41+1d0da21e77   |COMMON_SET|Manifest: NOSIGNATURE         roost-1.1.0.jar                                   |Roost                         |roost                         |1.1.0               |COMMON_SET|Manifest: NOSIGNATURE         amecsapi-1.5.3+mc1.20-pre1.jar                    |Amecs API                     |amecsapi                      |1.5.3+mc1.20-pre1   |COMMON_SET|Manifest: NOSIGNATURE         NewOresAndArmors_v.5(1.20.1).jar                  |New ores 1.20.1               |new_ores_1_20_1               |4.0.0               |COMMON_SET|Manifest: NOSIGNATURE         movingelevators-1.4.7-forge-mc1.20.1.jar          |Moving Elevators              |movingelevators               |1.4.7               |COMMON_SET|Manifest: NOSIGNATURE         easy-villagers-forge-1.20.1-1.1.4.jar             |Easy Villagers                |easy_villagers                |1.20.1-1.1.4        |COMMON_SET|Manifest: NOSIGNATURE         automaticdoors-1.20.1-4.6.jar                     |Automatic Doors               |automaticdoors                |4.6                 |COMMON_SET|Manifest: NOSIGNATURE         PigPen-Forge-1.20.1-15.0.2.jar                    |PigPen                        |pigpen                        |15.0.2              |COMMON_SET|Manifest: NOSIGNATURE         storagedrawers-1.20.1-12.0.3.jar                  |Storage Drawers               |storagedrawers                |12.0.3              |COMMON_SET|Manifest: NOSIGNATURE         FluxNetworks-1.20.1-7.2.1.15.jar                  |Flux Networks                 |fluxnetworks                  |7.2.1.15            |COMMON_SET|Manifest: NOSIGNATURE         DiagonalFences-v8.1.4-1.20.1-Forge.jar            |Diagonal Fences               |diagonalfences                |8.1.4               |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         fabric-biome-api-v1-13.0.13+dc36698e77.jar        |Fabric Biome API (v1)         |fabric_biome_api_v1           |13.0.13+dc36698e77  |COMMON_SET|Manifest: NOSIGNATURE         immersiveores-1.20.1-0.7.jar                      |ImmersiveOres                 |immersiveores                 |1.20.1-0.7          |COMMON_SET|Manifest: NOSIGNATURE         lios_overhauled_villages-1.18.2-1.20.4-v0.0.3.jar |Lio's Overhauled Villages     |lios_overhauled_villages      |0.0.3-1.18.2-1.20.4-|COMMON_SET|Manifest: NOSIGNATURE         quartz-1.20.1-0.2.0-alpha.0.1.jar                 |Quartz                        |quartz                        |0.2.0-alpha.0.1     |COMMON_SET|Manifest: NOSIGNATURE         automobility-0.4.2+1.20.1-forge.jar               |Automobility                  |automobility                  |0.4.2+1.20.1-forge  |COMMON_SET|Manifest: NOSIGNATURE         ferritecore-6.0.1-forge.jar                       |Ferrite Core                  |ferritecore                   |6.0.1               |COMMON_SET|Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a         functionalstorage-1.20.1-1.2.10.jar               |Functional Storage            |functionalstorage             |1.20.1-1.2.10       |COMMON_SET|Manifest: NOSIGNATURE         Gunners-Forge-1.20.1-0.0.2.jar                    |Gunners                       |gunners                       |0.0.2               |COMMON_SET|Manifest: NOSIGNATURE         BotanyPotsOrePlanting-Forge-7.9.0+1.20.1.jar      |Botany Pots Ore Planting      |botany_pots_ore_planting      |7.9.0               |COMMON_SET|Manifest: NOSIGNATURE         jsonwrangler-forge-1.20.1-1.0.1.jar               |JsonWrangler                  |jsonwrangler                  |1.0.1               |COMMON_SET|Manifest: NOSIGNATURE         God Mode Mod 3.6.8 (1.20.1 RELEASE).jar           |God Mode Mod                  |god_mode_mod                  |3.7                 |COMMON_SET|Manifest: NOSIGNATURE         supermartijn642configlib-1.1.8-forge-mc1.20.jar   |SuperMartijn642's Config Libra|supermartijn642configlib      |1.1.8               |COMMON_SET|Manifest: NOSIGNATURE         MythicWeapons-1.0.3+1.21.1.jar                    |Mythic Weapons                |mythic_weapons                |1.0.3               |COMMON_SET|Manifest: NOSIGNATURE         walmart-1.1.jar                                   |Walmart                       |walmart                       |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         additionalentityattributes-forge-1.4.0.5+1.20.1.ja|Additional Entity Attributes  |additionalentityattributes    |1.4.0.5+1.20.1      |COMMON_SET|Manifest: NOSIGNATURE         player-animation-lib-forge-1.0.2-rc1+1.20.jar     |Player Animator               |playeranimator                |1.0.2-rc1+1.20      |COMMON_SET|Manifest: NOSIGNATURE         irons_spellbooks-1.20.1-3.1.4.jar                 |Iron's Spells 'n Spellbooks   |irons_spellbooks              |1.20.1-3.1.4        |COMMON_SET|Manifest: NOSIGNATURE         botarium-forge-1.20.1-2.3.3.jar                   |Botarium                      |botarium                      |2.3.3               |COMMON_SET|Manifest: NOSIGNATURE         extratrades-1.20.1-1.2.jar                        |Extra Trades                  |extratrades                   |1.20.1-1.2          |COMMON_SET|Manifest: NOSIGNATURE         cagerium-1.20.1-1.1.9.jar                         |cagerium                      |cagerium                      |1.20.1-1.1.9        |COMMON_SET|Manifest: NOSIGNATURE         the_awakening_of_the_elder_souls-0.0.6.jar        |The Awakening of the Elder Sou|the_awakening_of_the_elder_sou|0.0.6               |COMMON_SET|Manifest: NOSIGNATURE         apoli-forge-1.20.1-2.9.0.4.jar                    |Apoli                         |apoli                         |1.20.1-2.9.0.4      |COMMON_SET|Manifest: NOSIGNATURE         sound-physics-remastered-forge-1.20.1-1.3.1.jar   |Sound Physics Remastered      |sound_physics_remastered      |1.20.1-1.3.1        |COMMON_SET|Manifest: NOSIGNATURE         fabric-convention-tags-v1-1.5.5+fa3d1c0177.jar    |Fabric Convention Tags        |fabric_convention_tags_v1     |1.5.5+fa3d1c0177    |COMMON_SET|Manifest: NOSIGNATURE         cabletiers-1.20.1-1.2.2.jar                       |Cable Tiers                   |cabletiers                    |1.20.1-1.2.2        |COMMON_SET|Manifest: NOSIGNATURE         bagus_lib-1.20.1-4.6.0.jar                        |Bagus Lib                     |bagus_lib                     |1.20.1-4.6.0        |COMMON_SET|Manifest: NOSIGNATURE         rangedpumps-1.1.0.jar                             |Ranged Pumps                  |rangedpumps                   |1.1.0               |COMMON_SET|Manifest: NOSIGNATURE         guardvillagers-1.20.1-1.6.5.jar                   |Guard Villagers               |guardvillagers                |1.20.1-1.6.5        |COMMON_SET|Manifest: NOSIGNATURE         oregrowth-1.0.11a-forge-mc1.20.1.jar              |Ore Growth                    |oregrowth                     |1.0.11a             |COMMON_SET|Manifest: NOSIGNATURE         balm-forge-1.20.1-7.2.2.jar                       |Balm                          |balm                          |7.2.2               |COMMON_SET|Manifest: NOSIGNATURE         bad_npcs-3.0.beta.jar                             |Bad NPCs                      |bad_npcs                      |3.0.beta            |COMMON_SET|Manifest: NOSIGNATURE         fabric-screen-api-v1-2.0.8+45a670a577.jar         |Fabric Screen API (v1)        |fabric_screen_api_v1          |2.0.8+45a670a577    |COMMON_SET|Manifest: NOSIGNATURE         immersive_armors-1.6.1+1.20.1-forge.jar           |Immersive Armors              |immersive_armors              |1.6.1+1.20.1        |COMMON_SET|Manifest: NOSIGNATURE         JustEnoughResources-1.20.1-1.4.0.247.jar          |Just Enough Resources         |jeresources                   |1.4.0.247           |COMMON_SET|Manifest: NOSIGNATURE         ctov-forge-3.4.3.jar                              |ChoiceTheorem's Overhauled Vil|ctov                          |3.4.3               |COMMON_SET|Manifest: NOSIGNATURE         AutoLeveling-1.20-1.19b.jar                       |Auto Leveling                 |autoleveling                  |1.19b               |COMMON_SET|Manifest: NOSIGNATURE         Emojiful-Forge-1.20.1-4.2.0.jar                   |Emojiful                      |emojiful                      |4.2.0               |COMMON_SET|Manifest: NOSIGNATURE         athena-forge-1.20.1-3.1.2.jar                     |Athena                        |athena                        |3.1.2               |COMMON_SET|Manifest: NOSIGNATURE         terrablender-bridge-1.10.1+1.20.1.jar             |Connector Extras Terrablender |connectorextras_terrablender_b|1.10.1+1.20.1       |COMMON_SET|Manifest: NOSIGNATURE         alltheores-1.20.1-47.1.3-2.2.3.jar                |AllTheOres                    |alltheores                    |2.2.3               |COMMON_SET|Manifest: NOSIGNATURE         torchmaster-20.1.6.jar                            |Torchmaster                   |torchmaster                   |20.1.6              |COMMON_SET|Manifest: NOSIGNATURE         MMCooking-1.20.1-2.1.jar                          |Multipart Machines: Cooking   |mm_cooking                    |2.1                 |COMMON_SET|Manifest: NOSIGNATURE         fabric-game-rule-api-v1-1.0.40+683d4da877.jar     |Fabric Game Rule API (v1)     |fabric_game_rule_api_v1       |1.0.40+683d4da877   |COMMON_SET|Manifest: NOSIGNATURE         MoreBows-1.0.13+1.20.x.forge.jar                  |More Bows Restrung            |morebows                      |1.0.13              |COMMON_SET|Manifest: NOSIGNATURE         BotanyTrees-Forge-1.20.1-9.0.11.jar               |BotanyTrees                   |botanytrees                   |9.0.11              |COMMON_SET|Manifest: NOSIGNATURE         explorify-v1.4.0.jar                              |Explorify                     |explorify                     |1.4.0               |COMMON_SET|Manifest: NOSIGNATURE         Loot Crates Plus FORGE V1.11 (1.20.1).jar         |LootBoxesPlus                 |lootboxesplus                 |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         ironfurnaces-1.20.1-4.1.6.jar                     |Iron Furnaces                 |ironfurnaces                  |4.1.6               |COMMON_SET|Manifest: NOSIGNATURE         do_a_barrel_roll-forge-3.5.5+1.20.1.jar           |Do a Barrel Roll              |do_a_barrel_roll              |3.5.5+1.20.1        |COMMON_SET|Manifest: NOSIGNATURE         [1.20.1 ONLY]_Many_More_Ores_2.0_Full_Release.jar.|Many More Ores                |many_more_ores                |2.01.20.            |COMMON_SET|Manifest: NOSIGNATURE         supermartijn642corelib-1.1.17-forge-mc1.20.1.jar  |SuperMartijn642's Core Lib    |supermartijn642corelib        |1.1.17              |COMMON_SET|Manifest: NOSIGNATURE         YungsBridges-1.20-Forge-4.0.3.jar                 |YUNG's Bridges                |yungsbridges                  |1.20-Forge-4.0.3    |COMMON_SET|Manifest: NOSIGNATURE         resourcefulconfig-forge-1.20.1-2.1.2.jar          |Resourcefulconfig             |resourcefulconfig             |2.1.2               |COMMON_SET|Manifest: NOSIGNATURE         MysticalAdaptations-1.20.1-1.0.1.jar              |Mystical Adaptations          |mysticaladaptations           |1.20.1-1.0.1        |COMMON_SET|Manifest: NOSIGNATURE         MysticalAgriculture-1.20.1-7.0.11.jar             |Mystical Agriculture          |mysticalagriculture           |7.0.11              |COMMON_SET|Manifest: NOSIGNATURE         MysticalAgradditions-1.20.1-7.0.3.jar             |Mystical Agradditions         |mysticalagradditions          |7.0.3               |COMMON_SET|Manifest: NOSIGNATURE         curios-forge-5.9.0+1.20.1.jar                     |Curios API                    |curios                        |5.9.0+1.20.1        |COMMON_SET|Manifest: NOSIGNATURE         origins-forge-1.20.1-1.10.0.8-all.jar             |Origins                       |origins                       |1.20.1-1.10.0.8     |COMMON_SET|Manifest: NOSIGNATURE         workers-1.20.1-1.7.7.jar                          |Workers Mod                   |workers                       |1.7.7               |COMMON_SET|Manifest: NOSIGNATURE         Searchables-forge-1.20.1-1.0.3.jar                |Searchables                   |searchables                   |1.0.3               |COMMON_SET|Manifest: NOSIGNATURE         pointblank-1.20.1-1.2.4.jar                       |Point Blank                   |pointblank                    |1.2.4               |COMMON_SET|Manifest: NOSIGNATURE         gottschcore-1.20.1-2.1.0.jar                      |GottschCore                   |gottschcore                   |2.1.0               |COMMON_SET|Manifest: NOSIGNATURE         fabric-entity-events-v1-1.6.0+6274ab9d77.jar      |Fabric Entity Events (v1)     |fabric_entity_events_v1       |1.6.0+6274ab9d77    |COMMON_SET|Manifest: NOSIGNATURE         celestisynth-1.20.1-1.2.2.jar                     |Celestisynth                  |celestisynth                  |1.20.1-1.2.2        |COMMON_SET|Manifest: NOSIGNATURE         MMStorage-1.20.1-2.0.jar                          |Multipart Machines: Storage   |mm_storage                    |2.0                 |COMMON_SET|Manifest: NOSIGNATURE         YungsBetterMineshafts-1.20-Forge-4.0.4.jar        |YUNG's Better Mineshafts      |bettermineshafts              |1.20-Forge-4.0.4    |COMMON_SET|Manifest: NOSIGNATURE         fabric-dimensions-v1-2.1.54+8005d10d77.jar        |Fabric Dimensions API (v1)    |fabric_dimensions_v1          |2.1.54+8005d10d77   |COMMON_SET|Manifest: NOSIGNATURE         doubledoors-1.20.1-5.5.jar                        |Double Doors                  |doubledoors                   |5.5                 |COMMON_SET|Manifest: NOSIGNATURE         lootbundles-1.20.1-1.0.6.jar                      |Loot Bundles                  |lootbundles                   |1.20.1-1.0.6        |COMMON_SET|Manifest: NOSIGNATURE         treeharvester-1.20.1-8.7.jar                      |Tree Harvester                |treeharvester                 |8.7                 |COMMON_SET|Manifest: NOSIGNATURE         fabric-model-loading-api-v1-1.0.3+6274ab9d77.jar  |Fabric Model Loading API (v1) |fabric_model_loading_api_v1   |1.0.3+6274ab9d77    |COMMON_SET|Manifest: NOSIGNATURE         jei-1.20.1-forge-15.3.0.4.jar                     |Just Enough Items             |jei                           |15.3.0.4            |COMMON_SET|Manifest: NOSIGNATURE         appliedenergistics2-forge-15.1.1.jar              |Applied Energistics 2         |ae2                           |15.1.1              |COMMON_SET|Manifest: NOSIGNATURE         AE2-Things-1.2.1.jar                              |AE2 Things                    |ae2things                     |1.2.1               |COMMON_SET|Manifest: NOSIGNATURE         lithostitched-forge-1.20.1-1.1.5.jar              |Lithostitched                 |lithostitched                 |1.1.5               |COMMON_SET|Manifest: NOSIGNATURE         Pehkui-3.8.0+1.20.1-forge.jar                     |Pehkui                        |pehkui                        |3.8.0+1.20.1-forge  |COMMON_SET|Manifest: NOSIGNATURE         bdlib-1.27.0.8-mc1.20.1.jar                       |BdLib                         |bdlib                         |1.27.0.8            |COMMON_SET|Manifest: NOSIGNATURE         fabric-rendering-v1-3.0.8+66e9a48f77.jar          |Fabric Rendering (v1)         |fabric_rendering_v1           |3.0.8+66e9a48f77    |COMMON_SET|Manifest: NOSIGNATURE         fabric-renderer-indigo-1.5.1+67f9824077.jar       |Fabric Renderer - Indigo      |fabric_renderer_indigo        |1.5.1+67f9824077    |COMMON_SET|Manifest: NOSIGNATURE         travelersbackpack-forge-1.20.1-9.1.14.jar         |Traveler's Backpack           |travelersbackpack             |9.1.14              |COMMON_SET|Manifest: NOSIGNATURE         MMMining-1.20.1-1.3.jar                           |Multipart Machines: Mining    |mm_mining                     |1.3                 |COMMON_SET|Manifest: NOSIGNATURE         LibX-1.20.1-5.0.12.jar                            |LibX                          |libx                          |1.20.1-5.0.12       |COMMON_SET|Manifest: NOSIGNATURE         SimplyTools-1.20.1-2.0.5.jar                      |Simply Tools                  |simplytools                   |1.20.1-2.0.5        |COMMON_SET|Manifest: NOSIGNATURE         AdHooks-1.20.1-10.1.0.1-build.0276.jar            |Advanced Hook Launchers       |adhooks                       |10.1.0.1            |COMMON_SET|Manifest: NOSIGNATURE         geckolib-fabric-compat-1.10.1+1.20.1.jar          |Connector Extras Geckolib-Fabr|connectorextras_geckolib_fabri|1.10.1+1.20.1       |COMMON_SET|Manifest: NOSIGNATURE         oceanvillagertrader-1.0.0.jar                     |OceanVillagerTrader           |oceanvillagertrader           |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         mythicmounts-20.1-7.4.2-forge.jar                 |MythicMounts                  |mythicmounts                  |20.1-7.4.2-forge    |COMMON_SET|Manifest: NOSIGNATURE         imst-2.1.0.jar                                    |Immersive Structures          |imst                          |2.1.0               |COMMON_SET|Manifest: NOSIGNATURE         puzzlesaccessapi-forge-8.0.7.jar                  |Puzzles Access Api            |puzzlesaccessapi              |8.0.7               |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         DungeonsAriseSevenSeas-1.20.x-1.0.2-forge.jar     |When Dungeons Arise: Seven Sea|dungeons_arise_seven_seas     |1.0.2               |COMMON_SET|Manifest: NOSIGNATURE         forge-1.20.1-47.2.0-universal.jar                 |Forge                         |forge                         |47.2.0              |COMMON_SET|Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90         right_click_get_crops-1.20.1-1.6.0.12.jar         |Right Click, Get Crops        |right_click_get_crops         |1.6.0               |COMMON_SET|Manifest: NOSIGNATURE         cofh_core-1.20.1-11.0.0.51.jar                    |CoFH Core                     |cofh_core                     |11.0.0              |COMMON_SET|Manifest: NOSIGNATURE         thermal_core-1.20.1-11.0.2.18.jar                 |Thermal Series                |thermal                       |11.0.2              |COMMON_SET|Manifest: NOSIGNATURE         appleskin-forge-mc1.20.1-2.5.1.jar                |AppleSkin                     |appleskin                     |2.5.1+mc1.20.1      |COMMON_SET|Manifest: NOSIGNATURE         silent-gear-1.20.1-3.6.3.jar                      |Silent Gear                   |silentgear                    |3.6.3               |COMMON_SET|Manifest: NOSIGNATURE         thermal_foundation-1.20.1-11.0.2.64.jar           |Thermal Foundation            |thermal_foundation            |11.0.2              |COMMON_SET|Manifest: NOSIGNATURE         JsonThings-1.20.1-0.9.1.jar                       |Json Things                   |jsonthings                    |0.9.1               |COMMON_SET|Manifest: NOSIGNATURE         Mekanism-1.20.1-10.4.6.20.jar                     |Mekanism                      |mekanism                      |10.4.6              |COMMON_SET|Manifest: NOSIGNATURE         MekanismWeapons-1.20.1-1.5.jar                    |Mekanism: Weapons             |mekaweapons                   |1.5                 |COMMON_SET|Manifest: NOSIGNATURE         MekanismGenerators-1.20.1-10.4.6.20.jar           |Mekanism: Generators          |mekanismgenerators            |10.4.6              |COMMON_SET|Manifest: NOSIGNATURE         mekanism-ad-astra-ores-0.3.0.jar                  |Mekanism: Ad Astra Ores       |mekanismaaa                   |0.3.0               |COMMON_SET|Manifest: NOSIGNATURE         ZeroCore2-1.20.1-2.1.41.jar                       |Zero CORE 2                   |zerocore                      |1.20.1-2.1.41       |COMMON_SET|Manifest: NOSIGNATURE         fabric-api-base-0.4.31+ef105b4977.jar             |Fabric API Base               |fabric_api_base               |0.4.31+ef105b4977   |COMMON_SET|Manifest: NOSIGNATURE         MouseTweaks-forge-mc1.20-2.25.jar                 |Mouse Tweaks                  |mousetweaks                   |2.25                |COMMON_SET|Manifest: NOSIGNATURE         bettercombat-forge-1.8.5+1.20.1.jar               |Better Combat                 |bettercombat                  |1.8.5+1.20.1        |COMMON_SET|Manifest: NOSIGNATURE         awesomedungeonnether-forge-1.20.1-3.1.1.jar       |Awesome dungeon nether        |awesomedungeonnether          |3.1.1               |COMMON_SET|Manifest: NOSIGNATURE         createoreexcavation-1.20-1.4.3.jar                |Create Ore Excavation         |createoreexcavation           |1.4.3               |COMMON_SET|Manifest: NOSIGNATURE         jet_and_elias_armors-1.4-1.20.1-CF.jar            |Jet and Elia's Armors         |jet_and_elias_armors          |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         Gamma_creatures_mod_1.0.1.jar                     |Gamma creatures               |gamma_beasts                  |1.0.1               |COMMON_SET|Manifest: NOSIGNATURE         jei-bridge-1.10.1+1.20.1.jar                      |Connector Extras JEI Bridge   |connectorextras_jei_bridge    |1.10.1+1.20.1       |COMMON_SET|Manifest: NOSIGNATURE         ceilingtorch-1.20.1-1.28.jar                      |Ceiling Torch                 |ceilingtorch                  |1.28                |COMMON_SET|Manifest: NOSIGNATURE         e4mc-4.0.1+1.19.4-forge.jar                       |e4mc                          |e4mc_minecraft                |4.0.1               |COMMON_SET|Manifest: NOSIGNATURE         kffmod-4.10.0.jar                                 |Kotlin For Forge              |kotlinforforge                |4.10.0              |COMMON_SET|Manifest: NOSIGNATURE         dimdungeons-191-forge-1.20.1.jar                  |Dimensional Dungeons          |dimdungeons                   |191                 |COMMON_SET|Manifest: NOSIGNATURE         ecologics-forge-1.20.1-2.2.0.jar                  |Ecologics                     |ecologics                     |2.2.0               |COMMON_SET|Manifest: NOSIGNATURE         Xaeros_Minimap_24.1.1_Forge_1.20.jar              |Xaero's Minimap               |xaerominimap                  |24.1.1              |COMMON_SET|Manifest: NOSIGNATURE         fabric-item-group-api-v1-4.0.12+c9161c2d77.jar    |Fabric Item Group API (v1)    |fabric_item_group_api_v1      |4.0.12+c9161c2d77   |COMMON_SET|Manifest: NOSIGNATURE         Zeta-1.0-16.jar                                   |Zeta                          |zeta                          |1.0-16              |COMMON_SET|Manifest: NOSIGNATURE         lynx_mod_new-1.0.0(2).jar                         |Lynx Mod New                  |lynx_mod_new                  |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         immersivetools-5.1.0.jar                          |survival+++++++++++++++++MOD  |survivalmod                   |2.1.0               |COMMON_SET|Manifest: NOSIGNATURE         entityculling-forge-1.6.2-mc1.20.1.jar            |EntityCulling                 |entityculling                 |1.6.2               |COMMON_SET|Manifest: NOSIGNATURE         fabric-recipe-api-v1-1.0.21+514a076577.jar        |Fabric Recipe API (v1)        |fabric_recipe_api_v1          |1.0.21+514a076577   |COMMON_SET|Manifest: NOSIGNATURE         PuzzlesLib-v8.1.18-1.20.1-Forge.jar               |Puzzles Lib                   |puzzleslib                    |8.1.18              |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         denseores-1.20.1-1.2.2.jar                        |Dense Ores                    |denseores                     |1.2.2               |COMMON_SET|Manifest: NOSIGNATURE         Aquaculture-1.20.1-2.5.1.jar                      |Aquaculture 2                 |aquaculture                   |2.5.1               |COMMON_SET|Manifest: NOSIGNATURE         fabric-sound-api-v1-1.0.13+4f23bd8477.jar         |Fabric Sound API (v1)         |fabric_sound_api_v1           |1.0.13+4f23bd8477   |COMMON_SET|Manifest: NOSIGNATURE         villagesecurity-1.2-1.20.1.jar                    |Tightened Village Security    |villagesecurity               |1.2-1.20.1          |COMMON_SET|Manifest: NOSIGNATURE         UncraftingTable-forge-1.3.4.jar                   |Uncrafting Table              |uncraftingtable76             |1.3.4               |COMMON_SET|Manifest: NOSIGNATURE         mcpitanlib-2.2.4-1.20.1-forge.jar                 |MCPitanLib                    |mcpitanlib                    |2.2.4-1.20.1-forge  |COMMON_SET|Manifest: NOSIGNATURE         farlanders-1.20.1-1.4.1.jar                       |The Farlanders                |farlanders                    |1.4.1               |COMMON_SET|Manifest: NOSIGNATURE         cristellib-1.1.5-forge.jar                        |Cristel Lib                   |cristellib                    |1.1.5               |COMMON_SET|Manifest: NOSIGNATURE         CyclopsCore-1.20.1-1.19.1.jar                     |Cyclops Core                  |cyclopscore                   |1.19.1              |COMMON_SET|Manifest: NOSIGNATURE         randomloot-0.0.0.jar                              |RandomLoot 2                  |randomloot                    |0.0.0               |COMMON_SET|Manifest: NOSIGNATURE         YungsBetterWitchHuts-1.20-Forge-3.0.3.jar         |YUNG's Better Witch Huts      |betterwitchhuts               |1.20-Forge-3.0.3    |COMMON_SET|Manifest: NOSIGNATURE         netherportalfix-forge-1.20-13.0.1.jar             |NetherPortalFix               |netherportalfix               |13.0.1              |COMMON_SET|Manifest: NOSIGNATURE         aiotbotania-1.20.1-4.0.5.jar                      |AIOT Botania                  |aiotbotania                   |1.20.1-4.0.5        |COMMON_SET|Manifest: NOSIGNATURE         geckolib-forge-1.20.1-4.4.4.jar                   |GeckoLib 4                    |geckolib                      |4.4.4               |COMMON_SET|Manifest: NOSIGNATURE         creeperoverhaul-3.0.2-forge.jar                   |Creeper Overhaul              |creeperoverhaul               |3.0.2               |COMMON_SET|Manifest: NOSIGNATURE         ars_nouveau-1.20.1-4.10.0-all.jar                 |Ars Nouveau                   |ars_nouveau                   |4.10.0              |COMMON_SET|Manifest: NOSIGNATURE         ars_elemental-1.20.1-0.6.5.jar                    |Ars Elemental                 |ars_elemental                 |1.20.1-0.6.5        |COMMON_SET|Manifest: NOSIGNATURE         aether-1.20.1-1.4.2-neoforge.jar                  |The Aether                    |aether                        |1.20.1-1.4.2-neoforg|COMMON_SET|Manifest: NOSIGNATURE         mushroom_villager_trader-1.0.0.jar                |Mushroom Villager Trader      |mushroom_villager_trader      |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         immersive_aircraft-0.7.5+1.20.1-forge.jar         |Immersive Aircraft            |immersive_aircraft            |0.7.5+1.20.1        |COMMON_SET|Manifest: NOSIGNATURE         hrbsdrills-1.0.1-1.20.1.jar                       |Drills                        |hrbsdrills                    |1.0.1-1.20.1        |COMMON_SET|Manifest: NOSIGNATURE         tools_complement-1.20.1-4.0.0.25.jar              |Tool's Complement             |tools_complement              |4.0.0               |COMMON_SET|Manifest: NOSIGNATURE         XaerosWorldMap_1.38.4_Forge_1.20.jar              |Xaero's World Map             |xaeroworldmap                 |1.38.4              |COMMON_SET|Manifest: NOSIGNATURE         Controlling-forge-1.20.1-12.0.2.jar               |Controlling                   |controlling                   |12.0.2              |COMMON_SET|Manifest: NOSIGNATURE         citadel-2.5.4-1.20.1.jar                          |Citadel                       |citadel                       |2.5.4               |COMMON_SET|Manifest: NOSIGNATURE         eeeabsmobs-1.20.1-0.8.jar                         |EEEAB's Mobs                  |eeeabsmobs                    |1.20.1-0.8          |COMMON_SET|Manifest: NOSIGNATURE         alexsmobs-1.22.8.jar                              |Alex's Mobs                   |alexsmobs                     |1.22.8              |COMMON_SET|Manifest: NOSIGNATURE         iceandfire-2.1.13-1.20.1-beta-4.jar               |Ice and Fire                  |iceandfire                    |2.1.13-1.20.1-beta-4|COMMON_SET|Manifest: NOSIGNATURE         iwannaskate-1.2.0.jar                             |I Wanna Skate                 |iwannaskate                   |1.2.0               |COMMON_SET|Manifest: NOSIGNATURE         fabric-data-attachment-api-v1-1.0.0+30ef839e77.jar|Fabric Data Attachment API (v1|fabric_data_attachment_api_v1 |1.0.0+30ef839e77    |COMMON_SET|Manifest: NOSIGNATURE         mixinextras-forge-0.3.5.jar                       |MixinExtras                   |mixinextras                   |0.3.5               |COMMON_SET|Manifest: NOSIGNATURE         continuity-compat-1.10.1+1.20.1.jar               |Connector Extras Continuity Co|connectorextras_continuity_com|1.10.1+1.20.1       |COMMON_SET|Manifest: NOSIGNATURE         Murvel V2.8.5.jar                                 |Murvel                        |murvel                        |2.7.0               |COMMON_SET|Manifest: NOSIGNATURE         dragonmounts-1.20.1-1.2.1-beta.jar                |Dragon Mounts: Legacy         |dragonmounts                  |1.2.1-beta          |COMMON_SET|Manifest: NOSIGNATURE         dummmmmmy-1.20-1.8.14.jar                         |MmmMmmMmmmmm                  |dummmmmmy                     |1.20-1.8.14         |COMMON_SET|Manifest: NOSIGNATURE         fabric-content-registries-v0-4.0.11+a670df1e77.jar|Fabric Content Registries (v0)|fabric_content_registries_v0  |4.0.11+a670df1e77   |COMMON_SET|Manifest: NOSIGNATURE         twilightforest-1.20.1-4.3.2145-universal.jar      |The Twilight Forest           |twilightforest                |4.3.2145            |COMMON_SET|Manifest: NOSIGNATURE         mob_grinding_utils-1.20.1-1.1.0.jar               |Mob Grinding Utils            |mob_grinding_utils            |1.20.1-1.1.0        |COMMON_SET|Manifest: NOSIGNATURE         cosmos-library-1.20.1-10.5.1.0-universal.jar      |Cosmos Library                |cosmoslibrary                 |10.5.1.0            |COMMON_SET|Manifest: NOSIGNATURE         FarmersDelight-1.20.1-1.2.4.jar                   |Farmer's Delight              |farmersdelight                |1.20.1-1.2.4        |COMMON_SET|Manifest: NOSIGNATURE         ender_dragon_loot_-1.6.2.jar                      |Ender Dragon Loot 1.18.2      |ender_dragon_loot_            |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         MekanismAdditions-1.20.1-10.4.6.20.jar            |Mekanism: Additions           |mekanismadditions             |10.4.6              |COMMON_SET|Manifest: NOSIGNATURE         mcw-fences-1.1.1-mc1.20.1forge.jar                |Macaw's Fences and Walls      |mcwfences                     |1.1.1               |COMMON_SET|Manifest: NOSIGNATURE         mcwfencesbop-1.20-1.0.jar                         |Macaw's Fences - BOP          |mcwfencesbop                  |1.20-1.0            |COMMON_SET|Manifest: NOSIGNATURE         mining-dimension-forge-1.20.1-1.1.0.jar           |Advanced Mining Dimension     |mining_dimension              |1.20.1-1.1.0        |COMMON_SET|Manifest: NOSIGNATURE         colorfulhearts-forge-1.20.1-4.0.4.jar             |Colorful Hearts               |colorfulhearts                |4.0.4               |COMMON_SET|Manifest: NOSIGNATURE         wirelesschargers-1.0.9a-forge-mc1.20.jar          |Wireless Chargers             |wirelesschargers              |1.0.9a              |COMMON_SET|Manifest: NOSIGNATURE         reach-entity-attributes-2.4.0.jar                 |Reach Entity Attributes       |reach_entity_attributes       |2.4.0               |COMMON_SET|Manifest: NOSIGNATURE         Patchouli-1.20.1-84-FORGE.jar                     |Patchouli                     |patchouli                     |1.20.1-84-FORGE     |COMMON_SET|Manifest: NOSIGNATURE         ars_trinkets-1.20.1-3.0.1.jar                     |Ars Nouveau Trinkets          |ars_trinkets                  |1.20.1-3.0.1        |COMMON_SET|Manifest: NOSIGNATURE         ars_additions-1.20.1-1.3.4.jar                    |Ars Additions                 |ars_additions                 |1.20.1-1.3.4        |COMMON_SET|Manifest: NOSIGNATURE         lucky_blocks_ultimate_2_0.5_1.20.1.jar            |Lucky Blocks Ultimate 2       |lucky_blocks_ultimate_2       |2.0.0               |COMMON_SET|Manifest: NOSIGNATURE         collective-1.20.1-7.56.jar                        |Collective                    |collective                    |7.56                |COMMON_SET|Manifest: NOSIGNATURE         thermal_expansion-1.20.1-11.0.0.27.jar            |Thermal Expansion             |thermal_expansion             |11.0.0              |COMMON_SET|Manifest: NOSIGNATURE         witherstormmod-1.20.1-4.0.1.1.jar                 |Cracker's Wither Storm Mod    |witherstormmod                |4.0.1.1             |COMMON_SET|Manifest: NOSIGNATURE         YungsBetterStrongholds-1.20-Forge-4.0.3.jar       |YUNG's Better Strongholds     |betterstrongholds             |1.20-Forge-4.0.3    |COMMON_SET|Manifest: NOSIGNATURE         resourcefullib-forge-1.20.1-2.1.24.jar            |Resourceful Lib               |resourcefullib                |2.1.24              |COMMON_SET|Manifest: NOSIGNATURE         MekanismTools-1.20.1-10.4.6.20.jar                |Mekanism: Tools               |mekanismtools                 |10.4.6              |COMMON_SET|Manifest: NOSIGNATURE         architectury-9.2.14-forge.jar                     |Architectury                  |architectury                  |9.2.14              |COMMON_SET|Manifest: NOSIGNATURE         ae2wtlib-15.2.3-forge.jar                         |AE2WTLib                      |ae2wtlib                      |15.2.3-forge        |COMMON_SET|Manifest: NOSIGNATURE         justhammers-forge-2.0.3+mc1.20.1.jar              |Just Hammers                  |justhammers                   |2.0.3+mc1.20.1      |COMMON_SET|Manifest: NOSIGNATURE         fabric-loot-api-v2-1.2.1+eb28f93e77.jar           |Fabric Loot API (v2)          |fabric_loot_api_v2            |1.2.1+eb28f93e77    |COMMON_SET|Manifest: NOSIGNATURE         ConnectorExtras-1.10.1+1.20.1.jar                 |Connector Extras              |connectorextras               |1.10.1+1.20.1       |COMMON_SET|Manifest: NOSIGNATURE         ExtremeReactors2-1.20.1-2.0.77.jar                |Extreme Reactors              |bigreactors                   |1.20.1-2.0.77       |COMMON_SET|Manifest: NOSIGNATURE         trashcans-1.0.18b-forge-mc1.20.jar                |Trash Cans                    |trashcans                     |1.0.18b             |COMMON_SET|Manifest: NOSIGNATURE         fabric-networking-api-v1-1.3.11+503a202477.jar    |Fabric Networking API (v1)    |fabric_networking_api_v1      |1.3.11+503a202477   |COMMON_SET|Manifest: NOSIGNATURE         smallships-forge-1.20.1-2.0.0-b1.1.jar            |Small Ships                   |smallships                    |2.0.0-b1.1          |COMMON_SET|Manifest: NOSIGNATURE         Towns-and-Towers-1.12-Fabric+Forge.jar            |Towns and Towers              |t_and_t                       |0.0NONE             |COMMON_SET|Manifest: NOSIGNATURE         fabric-lifecycle-events-v1-2.2.22+afab492177.jar  |Fabric Lifecycle Events (v1)  |fabric_lifecycle_events_v1    |2.2.22+afab492177   |COMMON_SET|Manifest: NOSIGNATURE         Silence's Turrets.jar                             |Silence's Turrets             |silence_s_defense_tower       |2.3.4               |COMMON_SET|Manifest: NOSIGNATURE         ExtraArmor-1.20.1-1.17.4.jar                      |Extra Armor                   |extraarmor                    |1.17.3              |COMMON_SET|Manifest: NOSIGNATURE         create_haven-0.0.7-1.20.1.jar                     |Create Haven Qualities        |createhaven                   |0.0.7               |COMMON_SET|Manifest: NOSIGNATURE         Cucumber-1.20.1-7.0.8.jar                         |Cucumber Library              |cucumber                      |7.0.8               |COMMON_SET|Manifest: NOSIGNATURE         matc-1.6.0.jar                                    |Mystical Agriculture Tiered Cr|matc                          |1.6.0               |COMMON_SET|Manifest: NOSIGNATURE         riskofrain_mobs-1.20.1-1.1.2.jar                  |Risk of Rain Mobs             |riskofrain_mobs               |1.1.2               |COMMON_SET|Manifest: NOSIGNATURE         awesomedungeonend-forge-1.20.1-3.1.1.jar          |Awesome dungeon the end       |awesomedungeonend             |3.1.1               |COMMON_SET|Manifest: NOSIGNATURE         sophisticatedstorage-1.20.1-0.10.21.793.jar       |Sophisticated Storage         |sophisticatedstorage          |0.10.21.793         |COMMON_SET|Manifest: NOSIGNATURE         item-filters-forge-2001.1.0-build.59.jar          |Item Filters                  |itemfilters                   |2001.1.0-build.59   |COMMON_SET|Manifest: NOSIGNATURE         CuriosQuarkOBP-1.20.1-1.2.5.jar                   |Curios Quark Oddities Backpack|curiosquarkobp                |1.2.5               |COMMON_SET|Manifest: NOSIGNATURE         create-1.20.1-0.5.1.f.jar                         |Create                        |create                        |0.5.1.f             |COMMON_SET|Manifest: NOSIGNATURE         occultcreate-1.20.1-1.0.1.jar                     |Occult Creations              |occultcreate                  |1.0.1               |COMMON_SET|Manifest: NOSIGNATURE         waystones-forge-1.20-14.1.3.jar                   |Waystones                     |waystones                     |14.1.3              |COMMON_SET|Manifest: NOSIGNATURE         AgeOfWeapons-Reforged-1.20.x-(v.1.3.2).jar        |Age of Weapons - Reforged     |ageofweapons                  |1.3.2               |COMMON_SET|Manifest: NOSIGNATURE         weaponthrow-1.20.1-6.0-beta.1.jar                 |Weapon Throw                  |weaponthrow                   |1.20.1-6.0-beta.1   |COMMON_SET|Manifest: NOSIGNATURE         FastSuite-1.20.1-5.0.1.jar                        |Fast Suite                    |fastsuite                     |5.0.1               |COMMON_SET|Manifest: NOSIGNATURE         fabric-mining-level-api-v1-2.1.50+561530ec77.jar  |Fabric Mining Level API (v1)  |fabric_mining_level_api_v1    |2.1.50+561530ec77   |COMMON_SET|Manifest: NOSIGNATURE         Dungeon Crawl-1.20.1-2.3.14.jar                   |Dungeon Crawl                 |dungeoncrawl                  |2.3.14              |COMMON_SET|Manifest: NOSIGNATURE         roost_ultimate-curse-1.20.1-2.5.0.jar             |Roost Ultimate                |chicken_roost                 |2.5.0               |COMMON_SET|Manifest: NOSIGNATURE         mcjtylib-1.20-8.0.4.jar                           |McJtyLib                      |mcjtylib                      |1.20-8.0.4          |COMMON_SET|Manifest: NOSIGNATURE         rftoolsbase-1.20-5.0.3.jar                        |RFToolsBase                   |rftoolsbase                   |1.20-5.0.3          |COMMON_SET|Manifest: NOSIGNATURE         rftoolspower-1.20-6.0.2.jar                       |RFToolsPower                  |rftoolspower                  |1.20-6.0.2          |COMMON_SET|Manifest: NOSIGNATURE         rftoolsbuilder-1.20-6.0.5.jar                     |RFToolsBuilder                |rftoolsbuilder                |1.20-6.0.5          |COMMON_SET|Manifest: NOSIGNATURE         rftoolsdim-1.20-11.0.6.jar                        |RFToolsDimensions             |rftoolsdim                    |1.20-11.0.6         |COMMON_SET|Manifest: NOSIGNATURE         rftoolsstorage-1.20-5.0.3.jar                     |RFToolsStorage                |rftoolsstorage                |1.20-5.0.3          |COMMON_SET|Manifest: NOSIGNATURE         rftoolscontrol-1.20-7.0.2.jar                     |RFToolsControl                |rftoolscontrol                |1.20-7.0.2          |COMMON_SET|Manifest: NOSIGNATURE         YungsBetterDesertTemples-1.20-Forge-3.0.3.jar     |YUNG's Better Desert Temples  |betterdeserttemples           |1.20-Forge-3.0.3    |COMMON_SET|Manifest: NOSIGNATURE         mahoutsukai-1.20.1-v1.34.62.jar                   |Mahou Tsukai                  |mahoutsukai                   |1.20.1-v1.34.62     |COMMON_SET|Manifest: NOSIGNATURE         DistantHorizons-2.0.1-a-1.20.1.jar                |Distant Horizons              |distanthorizons               |2.0.1-a             |COMMON_SET|Manifest: NOSIGNATURE         Terralith_1.20.4_v2.4.11.jar                      |Terralith                     |terralith                     |2.4.11              |COMMON_SET|Manifest: NOSIGNATURE         castle_dungeons-4.0.0-1.20-forge.jar              |Castle Dungeons               |castle_dungeons               |4.0.0               |COMMON_SET|Manifest: NOSIGNATURE         SimpleResourceGeneratorsJAR1.12.jar               |Simple Resource Generators    |simple_resource_generators    |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         fabric-transitive-access-wideners-v1-4.3.1+1880499|Fabric Transitive Access Widen|fabric_transitive_access_widen|4.3.1+1880499877    |COMMON_SET|Manifest: NOSIGNATURE         craziness_awakened-1.56.jar                       |Craziness Awakened            |craziness_awakened            |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         rftoolsutility-1.20-6.0.6.jar                     |RFToolsUtility                |rftoolsutility                |1.20-6.0.6          |COMMON_SET|Manifest: NOSIGNATURE         alexscaves-1.1.4.jar                              |Alex's Caves                  |alexscaves                    |1.1.4               |COMMON_SET|Manifest: NOSIGNATURE         moonlight-1.20-2.11.14-forge.jar                  |Moonlight Library             |moonlight                     |1.20-2.11.14        |COMMON_SET|Manifest: NOSIGNATURE         ToolBelt-1.20-1.20.0.jar                          |Tool Belt                     |toolbelt                      |1.20.0              |COMMON_SET|Manifest: NOSIGNATURE         titanium-1.20.1-3.8.27.jar                        |Titanium                      |titanium                      |3.8.27              |COMMON_SET|Manifest: NOSIGNATURE         RegionsUnexploredForge-0.5.5+1.20.1.jar           |Regions Unexplored            |regions_unexplored            |0.5.5               |COMMON_SET|Manifest: NOSIGNATURE         morebowsandarrows-merged-1.20.1-3.0.1.jar         |MoreBowsAndArrows             |morebowsandarrows             |3.0.1               |COMMON_SET|Manifest: NOSIGNATURE         silent-lib-1.20.1-8.0.0.jar                       |Silent Lib                    |silentlib                     |8.0.0               |COMMON_SET|Manifest: NOSIGNATURE         mixinsquared-forge-0.1.1.jar                      |MixinSquared                  |mixinsquared                  |0.1.1               |COMMON_SET|Manifest: NOSIGNATURE         snowyspirit-1.20-3.0.6.jar                        |Snowy Spirit                  |snowyspirit                   |1.20-3.0.6          |COMMON_SET|Manifest: NOSIGNATURE         weaponmaster-1.4.2-1.20.1.jar                     |Weapon Master                 |weaponmaster                  |1.4.2-1.19.2        |COMMON_SET|Manifest: NOSIGNATURE         car-forge-1.20.1-1.0.17.jar                       |Ultimate Car Mod              |car                           |1.20.1-1.0.17       |COMMON_SET|Manifest: NOSIGNATURE         plane-1.20.1-1.0.6.jar                            |Ultimate Plane Mod            |plane                         |1.20.1-1.0.6        |COMMON_SET|Manifest: NOSIGNATURE         extragolems-20.1.0.2.jar                          |Extra Golems                  |golems                        |20.1.0.2            |COMMON_SET|Manifest: NOSIGNATURE         Quark-4.0-441.jar                                 |Quark                         |quark                         |4.0-441             |COMMON_SET|Manifest: NOSIGNATURE         supplementaries-1.20-2.8.10.jar                   |Supplementaries               |supplementaries               |1.20-2.8.10         |COMMON_SET|Manifest: NOSIGNATURE         ascended_quark-1.20.1-1.0.2.jar                   |Ascended Quark                |ascended_quark                |1.0.2               |COMMON_SET|Manifest: NOSIGNATURE         extended_silence-3.4.jar                          |Extended Silence              |extended_silence              |3.4                 |COMMON_SET|Manifest: NOSIGNATURE         immersive_paintings-0.6.7+1.20.1-forge.jar        |Immersive Paintings           |immersive_paintings           |0.6.7+1.20.1        |COMMON_SET|Manifest: NOSIGNATURE         JustEnoughMekanismMultiblocks-1.20.1-4.2.jar      |Just Enough Mekanism Multibloc|jei_mekanism_multiblocks      |4.2                 |COMMON_SET|Manifest: NOSIGNATURE         Applied-Botanics-forge-1.5.0.jar                  |Applied Botanics              |appbot                        |1.5.0               |COMMON_SET|Manifest: NOSIGNATURE         modonomicon-1.20.1-forge-1.70.0.jar               |Modonomicon                   |modonomicon                   |1.70.0              |COMMON_SET|Manifest: NOSIGNATURE         coroutil-forge-1.20.1-1.3.7.jar                   |CoroUtil                      |coroutil                      |1.20.1-1.3.7        |COMMON_SET|Manifest: NOSIGNATURE         moredragoneggs-4.0.jar                            |More Dragon Eggs              |moredragoneggs                |4.0                 |COMMON_SET|Manifest: NOSIGNATURE         customoreveins-1.20-1.0.0-forge.jar               |Custom Ore Veins              |customoreveins                |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         regionaloreveins-1.20.1-1.0.0.jar                 |Regional Ore Veins            |regionaloreveins              |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         refinedstorageaddons-0.10.0.jar                   |Refined Storage Addons        |refinedstorageaddons          |0.10.0              |COMMON_SET|Manifest: NOSIGNATURE         Applied-Mekanistics-1.4.2.jar                     |Applied Mekanistics           |appmek                        |1.4.2               |COMMON_SET|Manifest: NOSIGNATURE         expandability-9.0.4.jar                           |ExpandAbility                 |expandability                 |9.0.4               |COMMON_SET|Manifest: NOSIGNATURE         emi-bridge-1.10.1+1.20.1.jar                      |Connector Extras EMI Bridge   |connectorextras_emi_bridge    |1.10.1+1.20.1       |COMMON_SET|Manifest: NOSIGNATURE         fabric-data-generation-api-v1-12.3.4+369cb3a477.ja|Fabric Data Generation API (v1|fabric_data_generation_api_v1 |12.3.4+369cb3a477   |COMMON_SET|Manifest: NOSIGNATURE         fabric-events-interaction-v0-0.6.2+0d0bd5a777.jar |Fabric Events Interaction (v0)|fabric_events_interaction_v0  |0.6.2+0d0bd5a777    |COMMON_SET|Manifest: NOSIGNATURE     Flywheel Backend: Uninitialized     Crash Report UUID: 736b811a-9424-41c0-9d51-64dc53c5f6d8     FML: 47.2     Forge: net.minecraftforge:47.2.0
    • An exit code, which is a number that indicates why a game crashed, is frequently generated when a game crashes. Depending on the game and the particulars of the accident, these exit codes may change.
  • Topics

×
×
  • Create New...

Important Information

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