Jump to content

[SOLVED][1.8] With built JAR, it crashes with NoClassDefFoundError


jabelar

Recommended Posts

My mod runs great in Eclipse, but if I gradlew build and then use the resulting JAR in the actual Minecraft install it crashes.

 

Using the new launcher, I can play vanilla 1.8 okay, and I can play Forge 1.8 okay (suing profile for fml-1.8-8.0.20.1023) okay.  But if I put my JAR in the mods folder it crashes with the following exception.  I don't find the console messages that helpful, as it just mentions a NoClassDefFoundError for a class that works fine when running from Eclipse and then gives trace to fairly general classloader methods.

 

 

java.lang.NoClassDefFoundError: com/blogspot/jabelarminecraft/magicbeans/items/ItemMagicBeans

at java.lang.Class.forName0(Native Method)

at java.lang.Class.forName(Class.java:344)

at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:422)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at java.lang.reflect.Method.invoke(Method.java:483)

at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)

at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)

at com.google.common.eventbus.EventBus.post(EventBus.java:275)

at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:208)

at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:187)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at java.lang.reflect.Method.invoke(Method.java:483)

at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)

at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)

at com.google.common.eventbus.EventBus.post(EventBus.java:275)

at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:118)

at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:493)

at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:208)

at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:414)

at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:326)

at net.minecraft.client.main.Main.main(SourceFile:120)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at java.lang.reflect.Method.invoke(Method.java:483)

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

Caused by: java.lang.ClassNotFoundException: com.blogspot.jabelarminecraft.magicbeans.items.ItemMagicBeans

at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191)

at java.lang.ClassLoader.loadClass(ClassLoader.java:424)

at java.lang.ClassLoader.loadClass(ClassLoader.java:357)

... 35 more

Caused by: java.lang.NoClassDefFoundError: com/blogspot/jabelarminecraft/magicbeans/items/ItemSeedFoodMagicBeans

at java.lang.ClassLoader.defineClass1(Native Method)

at java.lang.ClassLoader.defineClass(ClassLoader.java:760)

at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)

at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182)

... 37 more

Caused by: java.lang.ClassNotFoundException: com.blogspot.jabelarminecraft.magicbeans.items.ItemSeedFoodMagicBeans

at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:101)

at java.lang.ClassLoader.loadClass(ClassLoader.java:424)

at java.lang.ClassLoader.loadClass(ClassLoader.java:357)

... 41 more

 

 

A detailed walkthrough of the error, its code path and all known details is as follows:

---------------------------------------------------------------------------------------

 

-- Head --

Stacktrace:

at java.lang.Class.forName0(Native Method)

at java.lang.Class.forName(Class.java:344)

at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:422)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at java.lang.reflect.Method.invoke(Method.java:483)

at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)

at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)

at com.google.common.eventbus.EventBus.post(EventBus.java:275)

at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:208)

at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:187)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at java.lang.reflect.Method.invoke(Method.java:483)

at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)

at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)

at com.google.common.eventbus.EventBus.post(EventBus.java:275)

at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:118)

at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:493)

at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:208)

at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:414)

 

-- Initialization --

Details:

Stacktrace:

at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:326)

at net.minecraft.client.main.Main.main(SourceFile:120)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at java.lang.reflect.Method.invoke(Method.java:483)

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

 

-- System Details --

Details:

Minecraft Version: 1.8

Operating System: Windows 8.1 (amd64) version 6.3

Java Version: 1.8.0_25, Oracle Corporation

Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

Memory: 369586352 bytes (352 MB) / 609746944 bytes (581 MB) up to 3817865216 bytes (3641 MB)

JVM Flags: 2 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx4G

IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0

FML: MCP v9.10 FML v8.0.20.1023 3 mods loaded, 3 mods active

mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed

FML{8.0.20.1023} [Forge Mod Loader] (fml-1.8-8.0.20.1023-1.8.jar) Unloaded->Constructed

magicbeans{1.0.0} [Magic Beans] (magicbeans-1.8-1.0.0.jar) Unloaded

Launched Version: 1.8-FML8.0.20.1023-1.8

LWJGL: 2.9.1

OpenGL: GeForce GTX 760/PCIe/SSE2 GL version 4.5.0 NVIDIA 347.52, NVIDIA Corporation

GL Caps: Using GL 1.3 multitexturing.

Using GL 1.3 texture combiners.

Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.

Shaders are available because OpenGL 2.1 is supported.

VBOs are available because OpenGL 1.5 is supported.

 

Using VBOs: No

Is Modded: Definitely; Client brand changed to 'fml'

Type: Client (map_client.txt)

Resource Packs: []

Current Language: English (US)

Profiler Position: N/A (disabled)

 

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

Question:

 

Why are you accessing that class with reflection and not wrapping it in a try...catch?

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

Ok, show your main mod file, as some aspect of your @mod annotation is fucked up

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

main mod file:

 

/**

    Copyright © 2014 by jabelar

*/

 

package com.blogspot.jabelarminecraft.magicbeans;

 

import java.io.File;

 

import net.minecraft.block.Block;

import net.minecraft.block.material.Material;

import net.minecraft.item.Item;

import net.minecraft.item.ItemArmor;

import net.minecraft.item.ItemArmor.ArmorMaterial;

import net.minecraft.util.EnumChatFormatting;

import net.minecraftforge.common.config.Configuration;

import net.minecraftforge.common.util.EnumHelper;

import net.minecraftforge.fml.common.Mod;

import net.minecraftforge.fml.common.Mod.EventHandler;

import net.minecraftforge.fml.common.Mod.Instance;

import net.minecraftforge.fml.common.SidedProxy;

import net.minecraftforge.fml.common.event.FMLInitializationEvent;

import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;

import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;

import net.minecraftforge.fml.common.event.FMLServerAboutToStartEvent;

import net.minecraftforge.fml.common.event.FMLServerStartedEvent;

import net.minecraftforge.fml.common.event.FMLServerStartingEvent;

import net.minecraftforge.fml.common.event.FMLServerStoppedEvent;

import net.minecraftforge.fml.common.event.FMLServerStoppingEvent;

import net.minecraftforge.fml.common.network.FMLEventChannel;

import net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper;

 

import com.blogspot.jabelarminecraft.magicbeans.armor.ItemArmorSafeFalling;

import com.blogspot.jabelarminecraft.magicbeans.blocks.BlockCloud;

import com.blogspot.jabelarminecraft.magicbeans.blocks.BlockMagicBeanStalk;

import com.blogspot.jabelarminecraft.magicbeans.blocks.BlockSimple;

import com.blogspot.jabelarminecraft.magicbeans.items.ItemGoldenEgg;

import com.blogspot.jabelarminecraft.magicbeans.items.ItemGoldenGooseMeat;

import com.blogspot.jabelarminecraft.magicbeans.items.ItemMagicBeans;

import com.blogspot.jabelarminecraft.magicbeans.items.MagicBeansMonsterPlacer;

import com.blogspot.jabelarminecraft.magicbeans.materials.MaterialCloud;

import com.blogspot.jabelarminecraft.magicbeans.proxy.CommonProxy;

import com.blogspot.jabelarminecraft.magicbeans.structures.StructureCastleTalia;

 

@Mod(modid =

      MagicBeans.MODID,

      name = MagicBeans.MODNAME,

      version = MagicBeans.MODVERSION,

      guiFactory = "com.blogspot.jabelarminecraft."+MagicBeans.MODID+".gui.GuiFactoryMagicBeans")

public class MagicBeans

{

    public static final String MODID = "magicbeans";

    public static final String MODNAME = "Magic Beans";

    public static final String MODVERSION = "1.0.0";

    public static final String MODDESCRIPTION = "Start the adventure by feeding a golden carrot to a grown-up cow.";

    public static final String MODAUTHOR = "jabelar";

    public static final String MODCREDITS = "Taliaailat, Jnaejnae";

    public static final String MODURL = "www.jabelarminecraft.blogspot.com";

    public static final String MODLOGO = "jackandbeanstalk.png";

 

    // this is tag used for sub-compound in extended properties and packet syncing

public final static String EXT_PROPS_NAME = "extendedPropertiesMagicBeans";

 

// use a named channel to identify packets related to this mod

    public static final String NETWORK_CHANNEL_NAME = "MagicBeans";

public static FMLEventChannel channel;

// networking

public static SimpleNetworkWrapper network;

 

    // set up configuration properties (will be read from config file in preInit)

    public static File configFile;

    public static Configuration config;

    public static Boolean configGiantIsHostile = true;

    public static int configGoldForBeans = 100;

    public static int configGiantHealth = 10;

public static boolean configGiantCanRegen = true;

    public static int configGiantAttackDamage = 4;

    public static double configChanceCowIsMagic = 0.1D;

public static int configMaxStalkHeight = 136;

public static int configTicksPerGrowStage = 20;

public static int configTimeUntilNextEgg = 900;

   

    // instantiate materials

    public final static Material materialCloud = new MaterialCloud();

    // see custom armor tutorial at: http://bedrockminer.jimdo.com/modding-tutorials/basic-modding/custom-armor/

    public final static ArmorMaterial SAFEFALLINGLEATHER = EnumHelper.addArmorMaterial("SAFEFALLINGLEATHER", "safe_falling", 5, new int[]{2, 6, 5, 2}, 15);

   

    // instantiate blocks

    // need to instantiate beanstalk block before item as the item constructor associates with block

    public final static Block blockMagicBeanStalk = new BlockMagicBeanStalk();

public final static Block blockCloud = new BlockCloud();

    public final static Block blockSimple = new BlockSimple().setUnlocalizedName("mbe01_block_simple");

 

    // instantiate items

// important to do this after blocks where item is associate with custom block

    public final static ItemGoldenEgg itemGoldenEgg = new ItemGoldenEgg();

    public final static Item magicBeans = new ItemMagicBeans();

    public final static ItemArmor bootsOfSafeFalling = new ItemArmorSafeFalling("boots_safe_falling", SAFEFALLINGLEATHER, 3);

    public final static ItemGoldenGooseMeat goldenGooseMeat = new ItemGoldenGooseMeat(4, 1.2F, false);

   

    public final static MagicBeansMonsterPlacer spawnFamilyCow = new MagicBeansMonsterPlacer("family_cow",  0x4EF56D, 0xFCFC03);

    public final static MagicBeansMonsterPlacer spawnGiant = new MagicBeansMonsterPlacer("giant", 0xDB9112, 0x0AC798);

    public final static MagicBeansMonsterPlacer spawnMysteriousStranger = new MagicBeansMonsterPlacer("mysterious_stranger", 0x8C6620, 0xA100B3);

 

    // instantiate structures

    // important to do this after blocks in case structure uses custom block

    public final static StructureCastleTalia structureCastleTalia = new StructureCastleTalia();

   

    // instantiate the mod

    @Instance(MODID)

   

    public static MagicBeans instance;

   

    // create custom creativetab for mod items

    //public static CreativeTabs tabMagicBeansPlus = new MagicBeansCreativeTab("MagicBeans");

   

    // instantiate blocks

    //public final static Block blockTomato = new BlockTomato();

 

    // instantiate items

    //public final static Item tomato = new ItemTomato();

   

    // Says where the client and server 'proxy' code is loaded.

    @SidedProxy(clientSide="com.blogspot.jabelarminecraft.magicbeans.proxy.ClientProxy", serverSide="com.blogspot.jabelarminecraft.magicbeans.proxy.CommonProxy")

    public static CommonProxy proxy;

   

    // Version checking instance

public static VersionChecker versionChecker;

public static boolean haveWarnedVersionOutOfDate = false;

           

    @EventHandler

    // preInit "Run before anything else. Read your config, create blocks, items, etc, and register them with the GameRegistry."

    public void fmlLifeCycleEvent(FMLPreInitializationEvent event)

    { 

        // DEBUG

        System.out.println("preInit()"+event.getModMetadata().name);

               

        // hard-code mod information so don't need mcmod.info file

        event.getModMetadata().autogenerated = false ; // stops it from complaining about missing mcmod.info

        event.getModMetadata().credits = EnumChatFormatting.BLUE+MODCREDITS;

        event.getModMetadata().authorList.add(EnumChatFormatting.RED+MODAUTHOR);

        event.getModMetadata().description = EnumChatFormatting.YELLOW+MODDESCRIPTION;

        event.getModMetadata().url = MODURL;

        event.getModMetadata().logoFile = MODLOGO;

       

        proxy.fmlLifeCycleEvent(event);

    }

 

@EventHandler

    // Do your mod setup. Build whatever data structures you care about. Register recipes."

    // Register network handlers

    public void fmlLifeCycleEvent(FMLInitializationEvent event)

    {

   

        // DEBUG

        System.out.println("init()");

       

        proxy.fmlLifeCycleEvent(event);

    }

 

@EventHandler

    // postInit "Handle interaction with other mods, complete your setup based on this."

    public void fmlLifeCycle(FMLPostInitializationEvent event)

{

        // DEBUG

        System.out.println("postInit()");

       

        proxy.fmlLifeCycleEvent(event);

    }

 

@EventHandler

public void fmlLifeCycle(FMLServerAboutToStartEvent event)

{

        // DEBUG

        System.out.println("Server about to start");

       

proxy.fmlLifeCycleEvent(event);

}

 

@EventHandler

// register server commands

// refer to tutorial at http://www.minecraftforge.net/wiki/Server_Command#Mod_Implementation

public void fmlLifeCycle(FMLServerStartingEvent event)

{

        // DEBUG

        System.out.println("Server starting");

       

proxy.fmlLifeCycleEvent(event);

}

 

@EventHandler

public void fmlLifeCycle(FMLServerStartedEvent event)

{

        // DEBUG

        System.out.println("Server started");

       

proxy.fmlLifeCycleEvent(event);

}

 

@EventHandler

public void fmlLifeCycle(FMLServerStoppingEvent event)

{

        // DEBUG

        System.out.println("Server stopping");

       

proxy.fmlLifeCycleEvent(event);

}

 

@EventHandler

public void fmlLifeCycle(FMLServerStoppedEvent event)

{

        // DEBUG

        System.out.println("Server stopped");

       

proxy.fmlLifeCycleEvent(event);

}

 

}

 

 

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

Show the ItemMagicBeans 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

Show the ItemMagicBeans class

 

You're welcome to look at the whole codebase here: https://github.com/jabelar/MagicBeans-1.8fixed

 

Here is the ItemMagicBeans class.  Nothing special:

package com.blogspot.jabelarminecraft.magicbeans.items;

import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.ItemStack;
import net.minecraft.util.StatCollector;

import com.blogspot.jabelarminecraft.magicbeans.MagicBeans;
import com.blogspot.jabelarminecraft.magicbeans.utilities.MagicBeansUtilities;

public class ItemMagicBeans extends ItemSeedFoodMagicBeans 
{
    private static final ItemStack p_77653_1_ = null;

public ItemMagicBeans() 
    {
        super(1, 0.3F, MagicBeans.blockMagicBeanStalk);
        setUnlocalizedName("magicbeans");
        setCreativeTab(CreativeTabs.tabMaterials);
    }
    
    @Override
    public String getItemStackDisplayName(ItemStack parItemStack) 
    {
        return (MagicBeansUtilities.stringToRainbow(StatCollector.translateToLocal(getUnlocalizedNameInefficiently(p_77653_1_) + ".name")).trim());
    }
}

 

Also note that this mod works when running from Eclipse.  I think the NoClassDef error can be related to class path problems, but I don't really know what exactly would be wrong.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

Question:

What the hell is p_77653_1_, why does it have an obfuscated name, and why the hell are you using it to store a string, and why the hell is it always null?

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

Question:

What the hell is p_77653_1_, why does it have an obfuscated name, and why the hell are you using it to store a string, and why the hell is it always null?

 

I'm in process of updating my game to 1.8, so there is still some cleanup to do.  That field was just the unlocalized name really, but I was doing some conditional stuff on it (wouldn't always just be name of the item) so didn't want to mess with actual unlocalized name.  Anyway, I removed that and the NoClassDef problem remains.  (Note I really don't think a problem with some string field could be cause of NoClassDef problem for loader, but I appreciate you pointing this field out.)

 

Class now looks like:

 

package com.blogspot.jabelarminecraft.magicbeans.items;

 

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.item.ItemStack;

import net.minecraft.util.StatCollector;

 

import com.blogspot.jabelarminecraft.magicbeans.MagicBeans;

import com.blogspot.jabelarminecraft.magicbeans.utilities.MagicBeansUtilities;

 

public class ItemMagicBeans extends ItemSeedFoodMagicBeans

{

public ItemMagicBeans()

    {

        super(1, 0.3F, MagicBeans.blockMagicBeanStalk);

        setUnlocalizedName("magicbeans");

        setCreativeTab(CreativeTabs.tabMaterials);

    }

   

    @Override

    public String getItemStackDisplayName(ItemStack parItemStack)

    {

        return (MagicBeansUtilities.stringToRainbow(StatCollector.translateToLocal(getUnlocalizedNameInefficiently(new ItemStack(this)) + ".name")).trim());

    }

}

 

 

Note I was also suspicious of the StatCollector class, so I tried the ItemMagicBeans with a simple return ("Magic Beans") and it also fails with NoClassDef error.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

Okay, I think I solved it.  At least I got it working on a different computer just fine.  I think I used the same installer, but some reason on the original computer, the launcher profile references fml-1.8-8.0.20.1023 but with the working computer I just tried the profile references 1.8-Forge11.14.1.1333.

 

Anyway, that explains it -- mismatch with the profile.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

Why aren't you using the provided item stack and instead creating a new one?

 

    @Override

    public String getItemStackDisplayName(ItemStack parItemStack)

    {

        return (MagicBeansUtilities.stringToRainbow(StatCollector.translateToLocal(getUnlocalizedNameInefficiently(new ItemStack(this)) + ".name")).trim());

    }

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

  • 2 years later...

To anyone, who has got the same problem, NoClassDef when running minecraft with exported jar (in environment everything works), I did an inspection in Intellij and found the SideOnly missing from GuiHandler and Keyhandler. You might have different "hidden" problems, just use the inspection.

Link to comment
Share on other sites

Most modders who raise NoClassDefFoundError when going from Eclipse to jar have made a different (and simple) mistake:  They used Eclipse's export command to build their jars (Jabelar is an experienced modder who did use gradlew build, so that wasn't the problem this time).

 

Without gradle, a mod that works in Eclipse will turn into a jar that fails in a mod folder. This is because Eclipse's export does not reobfuscate class names (or not correctly). The pretty class names we use in the editor will not be found in production-released Minecraft, hence the NoClassDefFoundError <-- EDIT: Oops, method not found errors, my bad.

 

Therefore, most modders finding this thread need to learn this:

Modders must use gradle to make their jars so that the reobfuscation is done correctly.

 

Edited by jeffryfisher
Oops, corrected

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Link to comment
Share on other sites

The MCP to SRG obfuscation performed by the build Gradle task only changes field and method names, class names are always the same between MCP and SRG.

 

This means that NoClassDefFoundError can't be caused by lack of reobfuscation.

 

Usually it's caused by accessing a client-only class from code that runs on the dedicated server. 

  • Like 1

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

Thanks for the clarification; I hadn't paid attention to different kinds of names being treated differently.

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

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

    • When I try to open Forge 1.20.2 48.1.0 it pops up that the game crashed with exit code 1. I haven't got any mods in the mods folder, I've tried reinstalling Java and even the Minecraft Launcher but it still won't work. Could someone help me with this, please?  
    • There is an issue with ldlib-forge - try other builds or remove it and the mods requiring it
    • Try other builds of TwilightForest
    • The game crashed whilst unexpected error Error: java.lang.ClassCastException: class twilightforest.entity.boss.NagaSegment cannot be cast to class net.minecraft.world.entity.Mob (twilightforest.entity.boss.NagaSegment is in module [email protected] of loader 'TRANSFORMER' @68f1b89; net.minecraft.world.entity.Mob is in module [email protected] of loader 'TRANSFORMER' @68f1b89)
    • ---- Minecraft Crash Report ---- // I let you down. Sorry Time: 2024-05-10 22:27:32 Description: Exception in server tick loop java.lang.NoSuchFieldError: INSTANCE     at com.lowdragmc.lowdraglib.gui.widget.custom.PlayerInventoryWidget.initWidget(PlayerInventoryWidget.java:63) ~[ldlib-forge-1.20.1-1.0.24.b.jar%23597!/:?] {re:classloading}     at com.lowdragmc.lowdraglib.gui.widget.WidgetGroup.initWidget(WidgetGroup.java:329) ~[ldlib-forge-1.20.1-1.0.24.b.jar%23597!/:?] {re:classloading,pl:runtimedistcleaner:A}     at com.gregtechceu.gtceu.api.gui.fancy.FancyMachineUIWidget.initWidget(FancyMachineUIWidget.java:82) ~[gtceu-1.20.1-1.1.4.a.jar%23431!/:?] {re:classloading}     at com.lowdragmc.lowdraglib.gui.widget.WidgetGroup.initWidget(WidgetGroup.java:329) ~[ldlib-forge-1.20.1-1.0.24.b.jar%23597!/:?] {re:classloading,pl:runtimedistcleaner:A}     at com.lowdragmc.lowdraglib.gui.modular.ModularUI.initWidgets(ModularUI.java:205) ~[ldlib-forge-1.20.1-1.0.24.b.jar%23597!/:?] {re:classloading,pl:runtimedistcleaner:A}     at com.lowdragmc.lowdraglib.gui.factory.UIFactory.openUI(UIFactory.java:41) ~[ldlib-forge-1.20.1-1.0.24.b.jar%23597!/:?] {re:classloading,pl:runtimedistcleaner:A}     at com.gregtechceu.gtceu.api.machine.feature.IUIMachine.tryToOpenUI(IUIMachine.java:26) ~[gtceu-1.20.1-1.1.4.a.jar%23431!/:?] {re:classloading}     at com.gregtechceu.gtceu.api.block.MetaMachineBlock.m_6227_(MetaMachineBlock.java:271) ~[gtceu-1.20.1-1.1.4.a.jar%23431!/:?] {re:mixin,re:classloading}     at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.m_60664_(BlockBehaviour.java:778) ~[server-1.20.1-20230612.114412-srg.jar%23545!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:bugfix.chunk_deadlock.BlockStateBaseMixin,pl:mixin:APP:kubejs-common.mixins.json:BlockStateBaseMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.reduce_blockstate_cache_rebuilds.BlockStateBaseMixin,pl:mixin:APP:framedblocks.mixin.json:MixinBlockStateBase,pl:mixin:APP:crafttweaker.mixins.json:common.access.block.AccessBlockStateBase,pl:mixin:APP:ferritecore.blockstatecache.mixin.json:BlockStateBaseMixin,pl:mixin:A}     at net.minecraft.server.level.ServerPlayerGameMode.m_7179_(ServerPlayerGameMode.java:343) ~[server-1.20.1-20230612.114412-srg.jar%23545!/:?] {re:computing_frames,pl:accesstransformer:B,xf:fml:libx:interact,re:classloading,pl:accesstransformer:B,xf:fml:libx:interact}     at net.minecraft.server.network.ServerGamePacketListenerImpl.m_6371_(ServerGamePacketListenerImpl.java:1057) ~[server-1.20.1-20230612.114412-srg.jar%23545!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-forge.mixins.json:bugfix.forge_vehicle_packets.ServerGamePacketListenerImplMixin,pl:mixin:APP:forgivingvoid.mixins.json:ServerGamePacketListenerImplAccessor,pl:mixin:APP:badpackets.mixins.json:MixinServerGamePacketListenerImpl,pl:mixin:APP:littletiles.mixins.json:server.network.ServerGamePacketListenerImplAccessor,pl:mixin:APP:littletiles.mixins.json:server.network.ServerGamePacketListenerImplMixin,pl:mixin:A}     at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.m_5797_(ServerboundUseItemOnPacket.java:34) ~[server-1.20.1-20230612.114412-srg.jar%23545!/:?] {re:classloading}     at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.m_5797_(ServerboundUseItemOnPacket.java:8) ~[server-1.20.1-20230612.114412-srg.jar%23545!/:?] {re:classloading}     at net.minecraft.network.protocol.PacketUtils.m_263899_(PacketUtils.java:22) ~[server-1.20.1-20230612.114412-srg.jar%23545!/:?] {re:classloading}     at net.minecraft.server.TickTask.run(TickTask.java:18) ~[server-1.20.1-20230612.114412-srg.jar%23545!/:?] {re:classloading}     at net.minecraft.util.thread.BlockableEventLoop.m_6367_(BlockableEventLoop.java:156) ~[server-1.20.1-20230612.114412-srg.jar%23545!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.util.thread.ReentrantBlockableEventLoop.m_6367_(ReentrantBlockableEventLoop.java:23) ~[server-1.20.1-20230612.114412-srg.jar%23545!/:?] {re:mixin,re:computing_frames,re:classloading}     at net.minecraft.server.MinecraftServer.m_6367_(MinecraftServer.java:770) ~[server-1.20.1-20230612.114412-srg.jar%23545!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_6367_(MinecraftServer.java:161) ~[server-1.20.1-20230612.114412-srg.jar%23545!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at net.minecraft.util.thread.BlockableEventLoop.m_7245_(BlockableEventLoop.java:130) ~[server-1.20.1-20230612.114412-srg.jar%23545!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.server.MinecraftServer.m_129961_(MinecraftServer.java:753) ~[server-1.20.1-20230612.114412-srg.jar%23545!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_7245_(MinecraftServer.java:747) ~[server-1.20.1-20230612.114412-srg.jar%23545!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at net.minecraft.util.thread.BlockableEventLoop.m_18699_(BlockableEventLoop.java:115) ~[server-1.20.1-20230612.114412-srg.jar%23545!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.server.MinecraftServer.m_130012_(MinecraftServer.java:732) ~[server-1.20.1-20230612.114412-srg.jar%23545!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:665) ~[server-1.20.1-20230612.114412-srg.jar%23545!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_206580_(MinecraftServer.java:251) ~[server-1.20.1-20230612.114412-srg.jar%23545!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}     at java.lang.Thread.run(Thread.java:842) ~[?:?] {re:mixin} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details:     Minecraft Version: 1.20.1     Minecraft Version ID: 1.20.1     Operating System: Windows Server 2012 R2 (amd64) version 6.3     Java Version: 17.0.11, Oracle Corporation     Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode, sharing), Oracle Corporation     Memory: 2241454856 bytes (2137 MiB) / 4081057792 bytes (3892 MiB) up to 5368709120 bytes (5120 MiB)     CPUs: 4     Processor Vendor: AuthenticAMD     Processor Name: AMD Ryzen 9 7950X 16-Core Processor                 Identifier: AuthenticAMD Family 25 Model 97 Stepping 2     Microarchitecture: Zen 3     Frequency (GHz): 4.50     Number of physical packages: 1     Number of physical CPUs: 4     Number of logical CPUs: 4     Graphics card #0 name: Microsoft 基本显示适配器     Graphics card #0 vendor: (标准显示卡类型) (0x1234)     Graphics card #0 VRAM (MB): 0.00     Graphics card #0 deviceId: 0x1111     Graphics card #0 versionInfo: DriverVersion=6.3.9600.16384     Memory slot #0 capacity (MB): 8192.00     Memory slot #0 clockSpeed (GHz): 0.00     Memory slot #0 type: RAM     Virtual memory max (MB): 13567.47     Virtual memory used (MB): 5472.03     Swap memory total (MB): 5376.00     Swap memory used (MB): 0.00     JVM Flags: 2 total; -Xmx5G -Xms3G     Server Running: true     Player Count: 1 / 20; [ServerPlayer['NYDIXIA'/27, l='ServerLevel[新的世界]', x=2.95, y=65.00, z=9.10]]     Data Packs: vanilla, mod:ftbessentials (incompatible), mod:supermartijn642configlib (incompatible), mod:simplemagnets, mod:nerb (incompatible), mod:modnametooltip (incompatible), mod:cardboardboxes, mod:neat, mod:laserio (incompatible), mod:modernfix (incompatible), mod:maxhealthfix (incompatible), mod:wstweaks (incompatible), mod:shrink (incompatible), mod:forgivingvoid, mod:darkutils (incompatible), mod:apotheosis (incompatible), mod:ldlib (incompatible), mod:unbreakable_netherite, mod:balm, mod:travelboots, mod:jeresources, mod:cloth_config (incompatible), mod:shetiphiancore, mod:emojiful (incompatible), mod:embeddium, mod:easy_piglins, mod:corpse, mod:glodium (incompatible), mod:ex_hammers, mod:torchmaster, mod:bettertags, mod:botanytrees (incompatible), mod:supermartijn642corelib, mod:resourcefulconfig (incompatible), mod:spark (incompatible), mod:curios (incompatible), mod:searchables (incompatible), mod:advgenerators, mod:measurements, mod:framedblocks, mod:attributeslib (incompatible), mod:angelring, mod:angelblockrenewed (incompatible), mod:constructionwand, mod:laboratoryblocks (incompatible), mod:itemphysic, mod:jadeaddons (incompatible), mod:lava_source, mod:infiniverse (incompatible), mod:cobblefordays (incompatible), mod:fastleafdecay, mod:antiblocksrechiseled, mod:infinite_blocks, mod:kiwi (incompatible), mod:clienttweaks, mod:stylisheffects, mod:nomowanderer (incompatible), mod:doubledoors, mod:watersources, mod:rechiseled (incompatible), mod:attributefix (incompatible), mod:tesseract, mod:bdlib, mod:naturescompass, mod:badpackets (incompatible), mod:libx, mod:botanypots (incompatible), mod:farmingforblockheads, mod:simplefluidgenerators, mod:fusion, mod:rfd (incompatible), mod:crafttweaker (incompatible), mod:edivadlib, mod:puzzlesaccessapi, mod:forge, mod:extractinator (incompatible), mod:capable_composters, mod:emi (incompatible), mod:flopper, mod:theoneprobe, mod:mousetweaks, mod:commonality, mod:justenoughbreeding (incompatible), mod:spectrelib (incompatible), mod:skyblockbuilder, mod:ding (incompatible), mod:domum_ornamentum, mod:kotlinforforge (incompatible), mod:jeiintegration (incompatible), mod:pipez, mod:notenoughanimations, mod:itemcollectors (incompatible), mod:polymorph (incompatible), mod:justenoughprofessions, mod:entityculling, mod:appleskin (incompatible), mod:connectedglass, mod:architectschisel, mod:rainshield, mod:puzzleslib, mod:hyperbox (incompatible), mod:textrues_embeddium_options (incompatible), mod:extremesoundmuffler, mod:cosmeticarmorreworked, mod:bedrockbreakers, mod:cyclopscore, mod:netherportalfix, mod:kleeslabs, mod:glassential (incompatible), mod:controlling (incompatible), mod:placebo (incompatible), mod:emi_loot (incompatible), mod:dankstorage (incompatible), mod:lootintegrations (incompatible), mod:mixinextras (incompatible), mod:emitrades (incompatible), mod:bookshelf, mod:buildguide, mod:lightingwand (incompatible), mod:jeed (incompatible), mod:clearvoid (incompatible), mod:mob_grinding_utils (incompatible), mod:farmersdelight, mod:dustrial_decor, mod:entangled, mod:endertanks, mod:saturatingitem, mod:wirelesschargers (incompatible), mod:exocraft, mod:simplylight (incompatible), mod:modelfix (incompatible), mod:easypaxellite (incompatible), mod:collective, mod:drawerstooltip (incompatible), mod:elevatorid, mod:ftbultimine (incompatible), mod:runelic, mod:resourcefullib (incompatible), mod:starterkit, mod:embeddiumextras (incompatible), mod:inventoryprofilesnext (incompatible), mod:architectury (incompatible), mod:doapi (incompatible), mod:vinery (incompatible), mod:ftblibrary (incompatible), mod:jecalculation, mod:jei, mod:bakery (incompatible), mod:squatgrow (incompatible), mod:ftbteams (incompatible), mod:brewery (incompatible), mod:aiimprovements, mod:cupboard (incompatible), mod:lightoverlay (incompatible), mod:trashcans (incompatible), mod:polylib, mod:observable (incompatible), mod:yeetusexperimentus (incompatible), mod:darkmodeeverywhere (incompatible), mod:betteradvancements (incompatible), mod:rhino (incompatible), mod:kubejs (incompatible), mod:trashslot, mod:craftingstation (incompatible), mod:quickstack (incompatible), mod:itemfilters (incompatible), mod:ftbquests (incompatible), mod:travelanchors, mod:waystones, mod:fastsuite (incompatible), mod:clumps (incompatible), mod:journeymap (incompatible), mod:comforts (incompatible), mod:framedcompactdrawers, mod:davebuildingmod, mod:dimstorage, mod:charginggadgets (incompatible), mod:gtceu, mod:mcjtylib, mod:rftoolsbase, mod:xnet, mod:signtastic, mod:explorerscompass, mod:waveycapes, mod:toastcontrol (incompatible), mod:ftbchunks (incompatible), mod:ftbxmodcompat (incompatible), mod:simple_resource_generators, mod:craftingtweaks, mod:rftoolsutility, mod:libipn (incompatible), mod:enchdesc (incompatible), mod:sebastrnlib, mod:appliedcooking, mod:cookingforblockheads, mod:patchouli (incompatible), mod:moonlight (incompatible), mod:labels (incompatible), mod:configuration, mod:toolbelt (incompatible), mod:titanium (incompatible), mod:jade (incompatible), mod:ae2 (incompatible), mod:merequester (incompatible), mod:ae2wtlib (incompatible), mod:megacells (incompatible), mod:expatternprovider (incompatible), mod:ae2things (incompatible), mod:creativecore, mod:packedup (incompatible), mod:enderio, mod:defaultworldtype, mod:easy_villagers, mod:dimpaintings, mod:polyeng (incompatible), mod:pigpen (incompatible), mod:storagedrawers (incompatible), mod:enderchests, mod:buildinggadgets2 (incompatible), mod:capable_cauldrons, mod:ferritecore (incompatible), mod:functionalstorage, mod:apexcore, mod:fantasyfurniture, mod:modularrouters (incompatible), mod:betterf3, mod:overloadedarmorbar (incompatible), mod:xtonesreworked (incompatible), mod:littletiles, bushy_leaves, gtceu:dynamic_data     Enabled Feature Flags: minecraft:vanilla     World Generation: Experimental     Is Modded: Definitely; Server brand changed to 'forge'     Type: Dedicated Server (map_server.txt)     ModLauncher: 10.0.9+10.0.9+main.dcd20f30     ModLauncher launch target: forgeserver     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      FML Language Providers:          [email protected]         javafml@null         [email protected]         lowcodefml@null         [email protected]     Mod List:          ftb-essentials-forge-2001.2.2.jar                 |FTB Essentials                |ftbessentials                 |2001.2.2            |DONE      |Manifest: NOSIGNATURE         supermartijn642configlib-1.1.8-forge-mc1.20.jar   |SuperMartijn642's Config Libra|supermartijn642configlib      |1.1.8               |DONE      |Manifest: NOSIGNATURE         simplemagnets-1.1.10-forge-mc1.20.jar             |Simple Magnets                |simplemagnets                 |1.1.10              |DONE      |Manifest: NOSIGNATURE         nerb-1.20.1-0.3-FORGE.jar                         |Not Enough Recipe Book        |nerb                          |0.3                 |DONE      |Manifest: NOSIGNATURE         modnametooltip-1.20.1-1.20.0.jar                  |Mod Name Tooltip              |modnametooltip                |1.20.0              |DONE      |Manifest: NOSIGNATURE         cardboardboxes-1.20-0.1.0.jar                     |[SBM] Cardboard Boxes         |cardboardboxes                |1.20-0.1.0          |DONE      |Manifest: NOSIGNATURE         Neat-1.20-35-FORGE.jar                            |Neat                          |neat                          |1.20-35-FORGE       |DONE      |Manifest: NOSIGNATURE         laserio-1.6.8.jar                                 |LaserIO                       |laserio                       |1.6.8               |DONE      |Manifest: NOSIGNATURE         modernfix-forge-5.15.0+mc1.20.1.jar               |ModernFix                     |modernfix                     |5.15.0+mc1.20.1     |DONE      |Manifest: NOSIGNATURE         MaxHealthFix-Forge-1.20.1-12.0.2.jar              |MaxHealthFix                  |maxhealthfix                  |12.0.2              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         WitherSkeletonTweaks-1.20.1-9.1.0.jar             |Wither Skeleton Tweaks        |wstweaks                      |9.1.0               |DONE      |Manifest: NOSIGNATURE         Shrink-1.20.1-1.4.5.jar                           |Shrink                        |shrink                        |1.4.5               |DONE      |Manifest: NOSIGNATURE         forgivingvoid-forge-1.20-10.0.0.jar               |Forgiving Void                |forgivingvoid                 |10.0.0              |DONE      |Manifest: NOSIGNATURE         DarkUtilities-Forge-1.20.1-17.0.3.jar             |DarkUtilities                 |darkutils                     |17.0.3              |DONE      |Manifest: NOSIGNATURE         Apotheosis-1.20.1-7.3.4.jar                       |Apotheosis                    |apotheosis                    |7.3.4               |DONE      |Manifest: NOSIGNATURE         ldlib-forge-1.20.1-1.0.24.b.jar                   |LowDragLib                    |ldlib                         |1.0.24.b            |DONE      |Manifest: NOSIGNATURE         UnbreakableNetheriteJAR.jar                       |Unbreakable Netherite         |unbreakable_netherite         |1.0.0               |DONE      |Manifest: NOSIGNATURE         balm-forge-1.20.1-7.2.2.jar                       |Balm                          |balm                          |7.2.2               |DONE      |Manifest: NOSIGNATURE         TravelBootsJAR1.02.jar                            |Travel Boots                  |travelboots                   |1.0.0               |DONE      |Manifest: NOSIGNATURE         JustEnoughResources-1.20.1-1.4.0.247.jar          |Just Enough Resources         |jeresources                   |1.4.0.247           |DONE      |Manifest: NOSIGNATURE         cloth-config-11.1.118-forge.jar                   |Cloth Config v10 API          |cloth_config                  |11.1.118            |DONE      |Manifest: NOSIGNATURE         shetiphiancore-forge-1.20.1-1.2.jar               |ShetiPhian-Core               |shetiphiancore                |1.20.1-1.2          |DONE      |Manifest: NOSIGNATURE         Emojiful-Forge-1.20.1-4.2.0.jar                   |Emojiful                      |emojiful                      |4.2.0               |DONE      |Manifest: NOSIGNATURE         embeddium-0.3.11+mc1.20.1.jar                     |Embeddium                     |embeddium                     |0.3.11+mc1.20.1     |DONE      |Manifest: NOSIGNATURE         easy_piglins-1.20.1-1.0.1.jar                     |Easy Piglins                  |easy_piglins                  |1.20.1-1.0.1        |DONE      |Manifest: NOSIGNATURE         corpse-forge-1.20.1-1.0.12.jar                    |Corpse                        |corpse                        |1.20.1-1.0.12       |DONE      |Manifest: NOSIGNATURE         Glodium-1.20-1.4-forge.jar                        |Glodium                       |glodium                       |1.20-1.4-forge      |DONE      |Manifest: NOSIGNATURE         ExHammersJAR1.04.jar                              |Ex Hammers                    |ex_hammers                    |1.0.0               |DONE      |Manifest: NOSIGNATURE         torchmaster-20.1.5.jar                            |Torchmaster                   |torchmaster                   |20.1.5              |DONE      |Manifest: NOSIGNATURE         BetterTags-1.20.1-1.1.jar                         |Better Tags                   |bettertags                    |1.20.1-1.1          |DONE      |Manifest: NOSIGNATURE         BotanyTrees-Forge-1.20.1-9.0.11.jar               |BotanyTrees                   |botanytrees                   |9.0.11              |DONE      |Manifest: NOSIGNATURE         supermartijn642corelib-1.1.17-forge-mc1.20.1.jar  |SuperMartijn642's Core Lib    |supermartijn642corelib        |1.1.17              |DONE      |Manifest: NOSIGNATURE         resourcefulconfig-forge-1.20.1-2.1.2.jar          |Resourcefulconfig             |resourcefulconfig             |2.1.2               |DONE      |Manifest: NOSIGNATURE         spark-1.10.53-forge.jar                           |spark                         |spark                         |1.10.53             |DONE      |Manifest: NOSIGNATURE         curios-forge-5.7.2+1.20.1.jar                     |Curios API                    |curios                        |5.7.2+1.20.1        |DONE      |Manifest: NOSIGNATURE         Searchables-forge-1.20.1-1.0.2.jar                |Searchables                   |searchables                   |1.0.2               |DONE      |Manifest: NOSIGNATURE         advgenerators-1.6.0.6-mc1.20.1.jar                |Advanced Generators           |advgenerators                 |1.6.0.6             |DONE      |Manifest: NOSIGNATURE         Measurements-forge-1.20.1-2.0.0.jar               |Measurements                  |measurements                  |2.0.0               |DONE      |Manifest: NOSIGNATURE         FramedBlocks-9.2.1.jar                            |FramedBlocks                  |framedblocks                  |9.2.1               |DONE      |Manifest: NOSIGNATURE         ApothicAttributes-1.20.1-1.3.4.jar                |Apothic Attributes            |attributeslib                 |1.3.4               |DONE      |Manifest: NOSIGNATURE         AngelRing2-1.20.1-2.2.2.jar                       |Angel Ring 2                  |angelring                     |2.2.1               |DONE      |Manifest: NOSIGNATURE         angelblockrenewed-forge-1.3-1.20.jar              |Angel Block Renewed           |angelblockrenewed             |1.3                 |DONE      |Manifest: NOSIGNATURE         constructionwand-1.20.1-2.11.jar                  |Construction Wand             |constructionwand              |1.20.1-2.11         |DONE      |Manifest: NOSIGNATURE         laboratoryblocks-1.20.1-0.4.0.1r-fusion.jar       |Artemis' Laboratory Blocks    |laboratoryblocks              |1.20.1-0.4.0.1r-fusi|DONE      |Manifest: NOSIGNATURE         ItemPhysic_FORGE_v1.7.0_mc1.20.1.jar              |ItemPhysic                    |itemphysic                    |1.7.0               |DONE      |Manifest: NOSIGNATURE         JadeAddons-1.20.1-forge-5.2.2.jar                 |Jade Addons                   |jadeaddons                    |5.2.2               |DONE      |Manifest: NOSIGNATURE         lava_sources_1.20.1_1.0.0.jar                     |LavaSource                    |lava_source                   |1.0.0               |DONE      |Manifest: NOSIGNATURE         infiniverse-1.20.1-1.0.0.5.jar                    |Infiniverse                   |infiniverse                   |1.0.0.5             |DONE      |Manifest: NOSIGNATURE         CobbleForDays-1.8.0.jar                           |Cobble For Days               |cobblefordays                 |1.8.0               |DONE      |Manifest: NOSIGNATURE         FastLeafDecay-31.jar                              |Fast Leaf Decay               |fastleafdecay                 |31                  |DONE      |Manifest: NOSIGNATURE         antiblocksrechiseled-0.4.2.jar                    |AntiBlocksReChiseled          |antiblocksrechiseled          |0.4.2               |DONE      |Manifest: NOSIGNATURE         InfiniteBlocksJAR1.01.jar                         |Infinite Blocks               |infinite_blocks               |1.0.0               |DONE      |Manifest: NOSIGNATURE         Kiwi-1.20.1-forge-11.6.0.jar                      |Kiwi Library                  |kiwi                          |11.6.0              |DONE      |Manifest: NOSIGNATURE         clienttweaks-forge-1.20-11.1.0.jar                |Client Tweaks                 |clienttweaks                  |11.1.0              |DONE      |Manifest: NOSIGNATURE         StylishEffects-v8.0.2-1.20.1-Forge.jar            |Stylish Effects               |stylisheffects                |8.0.2               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         nomowanderer-1.20.1_1.6.4.jar                     |NoMoWanderer                  |nomowanderer                  |1.20.1_1.6.4        |DONE      |Manifest: NOSIGNATURE         doubledoors-1.20.1-5.4.jar                        |Double Doors                  |doubledoors                   |5.4                 |DONE      |Manifest: NOSIGNATURE         water_sources_1.20.1_1.0.0.jar                    |WaterSources                  |watersources                  |1.0.0               |DONE      |Manifest: NOSIGNATURE         rechiseled-1.1.5c-forge-mc1.20.jar                |Rechiseled                    |rechiseled                    |1.1.5c              |DONE      |Manifest: NOSIGNATURE         AttributeFix-Forge-1.20.1-21.0.4.jar              |AttributeFix                  |attributefix                  |21.0.4              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         tesseract-1.0.35a-forge-mc1.20.1.jar              |Tesseract                     |tesseract                     |1.0.35a             |DONE      |Manifest: NOSIGNATURE         bdlib-1.27.0.8-mc1.20.1.jar                       |BdLib                         |bdlib                         |1.27.0.8            |DONE      |Manifest: NOSIGNATURE         NaturesCompass-1.20.1-1.11.2-forge.jar            |Nature's Compass              |naturescompass                |1.20.1-1.11.2-forge |DONE      |Manifest: NOSIGNATURE         badpackets-forge-0.4.3.jar                        |Bad Packets                   |badpackets                    |0.4.3               |DONE      |Manifest: NOSIGNATURE         LibX-1.20.1-5.0.12.jar                            |LibX                          |libx                          |1.20.1-5.0.12       |DONE      |Manifest: NOSIGNATURE         BotanyPots-Forge-1.20.1-13.0.26.jar               |BotanyPots                    |botanypots                    |13.0.26             |DONE      |Manifest: NOSIGNATURE         farmingforblockheads-forge-1.20.1-14.0.2.jar      |Farming for Blockheads        |farmingforblockheads          |14.0.2              |DONE      |Manifest: NOSIGNATURE         SimpleFluidGeneratorsJAR1.06.jar                  |Simple Fluid Generators       |simplefluidgenerators         |1.0.0               |DONE      |Manifest: NOSIGNATURE         fusion-1.1.1-forge-mc1.20.1.jar                   |Fusion                        |fusion                        |1.1.1               |DONE      |Manifest: NOSIGNATURE         rfd-2.0.0.jar                                     |ResourcesForDays              |rfd                           |2.0.0               |DONE      |Manifest: NOSIGNATURE         CraftTweaker-forge-1.20.1-14.0.38.jar             |CraftTweaker                  |crafttweaker                  |14.0.38             |DONE      |Manifest: NOSIGNATURE         EdivadLib-1.20.1-2.0.1.jar                        |EdivadLib                     |edivadlib                     |2.0.1               |DONE      |Manifest: NOSIGNATURE         puzzlesaccessapi-forge-8.0.7.jar                  |Puzzles Access Api            |puzzlesaccessapi              |8.0.7               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         forge-1.20.1-47.2.0-universal.jar                 |Forge                         |forge                         |47.2.0              |DONE      |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90         extractinator-forge-1.20.1-2.3.0.jar              |Extractinator                 |extractinator                 |2.3.0               |DONE      |Manifest: NOSIGNATURE         server-1.20.1-20230612.114412-srg.jar             |Minecraft                     |minecraft                     |1.20.1              |DONE      |Manifest: NOSIGNATURE         capable_composters-1.20.1-1.2.0.3.jar             |Capable Composters            |capable_composters            |1.2.0               |DONE      |Manifest: NOSIGNATURE         emi-1.1.4+1.20.1+forge.jar                        |EMI                           |emi                           |1.1.4+1.20.1+forge  |DONE      |Manifest: NOSIGNATURE         Flopper-1.20.1-1.1.5.jar                          |Flopper                       |flopper                       |1.1.5               |DONE      |Manifest: NOSIGNATURE         theoneprobe-1.20.1-10.0.2.jar                     |The One Probe                 |theoneprobe                   |1.20.1-10.0.2       |DONE      |Manifest: NOSIGNATURE         MouseTweaks-forge-mc1.20-2.25.jar                 |Mouse Tweaks                  |mousetweaks                   |2.25                |DONE      |Manifest: NOSIGNATURE         commonality-1.20.1-7.0.0.jar                      |Commonality                   |commonality                   |7.0.0               |DONE      |Manifest: NOSIGNATURE         justenoughbreeding-forge-1.20.x-1.2.0.jar         |Just Enough Breeding          |justenoughbreeding            |1.2.0               |DONE      |Manifest: NOSIGNATURE         spectrelib-forge-0.13.15+1.20.1.jar               |SpectreLib                    |spectrelib                    |0.13.15+1.20.1      |DONE      |Manifest: NOSIGNATURE         SkyblockBuilder-1.20.1-5.0.16.jar                 |Skyblock Builder              |skyblockbuilder               |1.20.1-5.0.16       |DONE      |Manifest: NOSIGNATURE         Ding-1.20.1-Forge-1.4.1.jar                       |Ding                          |ding                          |1.4.1               |DONE      |Manifest: NOSIGNATURE         domum_ornamentum-1.20-1.0.110-RELEASE-universal.ja|Domum Ornamentum              |domum_ornamentum              |1.20-1.0.110-RELEASE|DONE      |Manifest: NOSIGNATURE         kffmod-4.10.0.jar                                 |Kotlin For Forge              |kotlinforforge                |4.10.0              |DONE      |Manifest: NOSIGNATURE         jeiintegration_1.20.1-10.0.0.jar                  |JEI Integration               |jeiintegration                |10.0.0              |DONE      |Manifest: NOSIGNATURE         pipez-1.20.1-1.2.5.jar                            |Pipez                         |pipez                         |1.20.1-1.2.5        |DONE      |Manifest: NOSIGNATURE         notenoughanimations-forge-1.7.1-mc1.20.1.jar      |NotEnoughAnimations           |notenoughanimations           |1.7.1               |DONE      |Manifest: NOSIGNATURE         itemcollectors-1.1.9-forge-mc1.20.jar             |Item Collectors               |itemcollectors                |1.1.9               |DONE      |Manifest: NOSIGNATURE         polymorph-forge-0.49.3+1.20.1.jar                 |Polymorph                     |polymorph                     |0.49.3+1.20.1       |DONE      |Manifest: NOSIGNATURE         JustEnoughProfessions-forge-1.20.1-3.0.1.jar      |Just Enough Professions (JEP) |justenoughprofessions         |3.0.1               |DONE      |Manifest: NOSIGNATURE         entityculling-forge-1.6.2-mc1.20.1.jar            |EntityCulling                 |entityculling                 |1.6.2               |DONE      |Manifest: NOSIGNATURE         appleskin-forge-mc1.20.1-2.5.1.jar                |AppleSkin                     |appleskin                     |2.5.1+mc1.20.1      |DONE      |Manifest: NOSIGNATURE         connectedglass-1.1.11-forge-mc1.20.1.jar          |Connected Glass               |connectedglass                |1.1.11              |DONE      |Manifest: NOSIGNATURE         ArchitectsChisel-1.20.1-1.0.0.jar                 |Architect's Chisel            |architectschisel              |1.0.0               |DONE      |Manifest: NOSIGNATURE         RainShield-1.20.1-1.1.3.jar                       |Rain Shield                   |rainshield                    |1.1.3               |DONE      |Manifest: NOSIGNATURE         PuzzlesLib-v8.1.18-1.20.1-Forge.jar               |Puzzles Lib                   |puzzleslib                    |8.1.18              |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         hyperbox-1.20.1-4.0.2.0.jar                       |Hyperbox                      |hyperbox                      |4.0.2.0             |DONE      |Manifest: NOSIGNATURE         textrues_embeddium_options-0.1.5+mc1.20.1.jar     |TexTrue's Embeddium Options   |textrues_embeddium_options    |0.1.5+mc1.20.1      |DONE      |Manifest: NOSIGNATURE         extremesoundmuffler-3.41-forge-1.20.jar           |Extreme Sound Muffler         |extremesoundmuffler           |3.41-forge-1.20     |DONE      |Manifest: NOSIGNATURE         cosmeticarmorreworked-1.20.1-v1a.jar              |CosmeticArmorReworked         |cosmeticarmorreworked         |1.20.1-v1a          |DONE      |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         bedrockbreakers-1.5.jar                           |Bedrock Breakers              |bedrockbreakers               |1.5                 |DONE      |Manifest: NOSIGNATURE         CyclopsCore-1.20.1-1.19.0.jar                     |Cyclops Core                  |cyclopscore                   |1.19.0              |DONE      |Manifest: NOSIGNATURE         netherportalfix-forge-1.20-13.0.1.jar             |NetherPortalFix               |netherportalfix               |13.0.1              |DONE      |Manifest: NOSIGNATURE         kleeslabs-forge-1.20-15.0.0.jar                   |KleeSlabs                     |kleeslabs                     |15.0.0              |DONE      |Manifest: NOSIGNATURE         glassential-renewed-forge-1.20.1-2.1.3.jar        |Glassential Renewed           |glassential                   |2.1.3               |DONE      |Manifest: NOSIGNATURE         Controlling-forge-1.20.1-12.0.2.jar               |Controlling                   |controlling                   |12.0.2              |DONE      |Manifest: NOSIGNATURE         Placebo-1.20.1-8.6.1.jar                          |Placebo                       |placebo                       |8.6.1               |DONE      |Manifest: NOSIGNATURE         emi_loot-0.6.5+1.20.1+forge.jar                   |EMI Loot                      |emi_loot                      |0.6.5+1.20.1+forge  |DONE      |Manifest: NOSIGNATURE         dankstorage-forge-1.20.1-8.jar                    |Dank Storage                  |dankstorage                   |8                   |DONE      |Manifest: NOSIGNATURE         lootintegrations-1.20.1-3.4.jar                   |Lootintegrations mod          |lootintegrations              |1.20.1-3.4          |DONE      |Manifest: NOSIGNATURE         mixinextras-forge-0.3.5.jar                       |MixinExtras                   |mixinextras                   |0.3.5               |DONE      |Manifest: NOSIGNATURE         emitrades-forge-1.2.1+mc1.20.1.jar                |EMI Trades                    |emitrades                     |1.2.1+mc1.20.1      |DONE      |Manifest: NOSIGNATURE         Bookshelf-Forge-1.20.1-20.1.9.jar                 |Bookshelf                     |bookshelf                     |20.1.9              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         BuildGuide-1.20-0.4.0.jar                         |Build Guide                   |buildguide                    |0.4.0               |DONE      |Manifest: NOSIGNATURE         LightingWand-1.20.1-forge-8.0.0.jar               |Lighting Wand                 |lightingwand                  |8.0.0               |DONE      |Manifest: NOSIGNATURE         jeed-1.20-2.1.12.jar                              |Just Enough Effects Descriptio|jeed                          |1.20-2.1.12         |DONE      |Manifest: NOSIGNATURE         clearvoid-forge-1.3.0.jar                         |Clear Void                    |clearvoid                     |1.3.0               |DONE      |Manifest: NOSIGNATURE         mob_grinding_utils-1.20.1-1.1.0.jar               |Mob Grinding Utils            |mob_grinding_utils            |1.20.1-1.1.0        |DONE      |Manifest: NOSIGNATURE         FarmersDelight-1.20.1-1.2.4.jar                   |Farmer's Delight              |farmersdelight                |1.20.1-1.2.4        |DONE      |Manifest: NOSIGNATURE         DustrialDecor-1.3.5-1.20.jar                      |'Dustrial Decor               |dustrial_decor                |1.3.2               |DONE      |Manifest: NOSIGNATURE         entangled-1.3.17-forge-mc1.20.jar                 |Entangled                     |entangled                     |1.3.17              |DONE      |Manifest: NOSIGNATURE         endertanks-forge-1.20.1-1.2.jar                   |EnderTanks                    |endertanks                    |1.20.1-1.2          |DONE      |Manifest: NOSIGNATURE         saturatingitem-1.0.01.jar                         |Saturating Item               |saturatingitem                |1.0.0               |DONE      |Manifest: NOSIGNATURE         wirelesschargers-1.0.9-forge-mc1.20.jar           |Wireless Chargers             |wirelesschargers              |1.0.9               |DONE      |Manifest: NOSIGNATURE         EXO-Craft-1.20.x-(v.2.3.5).jar                    |EXO-Craft                     |exocraft                      |2.3.5               |DONE      |Manifest: NOSIGNATURE         simplylight-1.20.1-1.4.6-build.50.jar             |Simply Light                  |simplylight                   |1.20.1-1.4.6-build.5|DONE      |Manifest: NOSIGNATURE         modelfix-1.15.jar                                 |Model Gap Fix                 |modelfix                      |1.15                |DONE      |Manifest: NOSIGNATURE         EasyPaxel1.20.1(Forge)vs1.0.3.jar                 |Easy Paxel Lite               |easypaxellite                 |1.20.1-1.0.3        |DONE      |Manifest: NOSIGNATURE         collective-1.20.1-7.40.jar                        |Collective                    |collective                    |7.40                |DONE      |Manifest: NOSIGNATURE         DrawersTooltip-1.20.1-forge-8.0.0.jar             |Drawers Tooltip               |drawerstooltip                |8.0.0               |DONE      |Manifest: NOSIGNATURE         elevatorid-1.20.1-lex-1.9.jar                     |Elevator Mod                  |elevatorid                    |1.20.1-lex-1.9      |DONE      |Manifest: NOSIGNATURE         ftb-ultimine-forge-2001.1.4.jar                   |FTB Ultimine                  |ftbultimine                   |2001.1.4            |DONE      |Manifest: NOSIGNATURE         Runelic-Forge-1.20.1-18.0.2.jar                   |Runelic                       |runelic                       |18.0.2              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         resourcefullib-forge-1.20.1-2.1.24.jar            |Resourceful Lib               |resourcefullib                |2.1.24              |DONE      |Manifest: NOSIGNATURE         starterkit-1.20.1-6.5.jar                         |Starter Kit                   |starterkit                    |6.5                 |DONE      |Manifest: NOSIGNATURE         embeddiumextras-1.20.1-v2.0.0.jar                 |Embeddium Extras              |embeddiumextras               |2.0.0               |DONE      |Manifest: NOSIGNATURE         InventoryProfilesNext-forge-1.20-1.10.10.jar      |Inventory Profiles Next       |inventoryprofilesnext         |1.10.10             |DONE      |Manifest: NOSIGNATURE         architectury-9.2.14-forge.jar                     |Architectury                  |architectury                  |9.2.14              |DONE      |Manifest: NOSIGNATURE         letsdo-API-forge-1.2.9-forge.jar                  |[Let's Do] API                |doapi                         |1.2.9               |DONE      |Manifest: NOSIGNATURE         letsdo-vinery-forge-1.4.14.jar                    |[Let's Do] Vinery             |vinery                        |1.4.14              |DONE      |Manifest: NOSIGNATURE         ftb-library-forge-2001.1.5.jar                    |FTB Library                   |ftblibrary                    |2001.1.5            |DONE      |Manifest: NOSIGNATURE         jecalculation-forge-1.20.1-4.0.4.jar              |Just Enough Calculation       |jecalculation                 |4.0.4               |DONE      |Manifest: NOSIGNATURE         jei-1.20.1-forge-15.3.0.4.jar                     |Just Enough Items             |jei                           |15.3.0.4            |DONE      |Manifest: NOSIGNATURE         letsdo-bakery-forge-1.1.8.jar                     |[Let's Do] Bakery             |bakery                        |1.1.8               |DONE      |Manifest: NOSIGNATURE         squatgrow-forge-5.3.0+mc1.20.1.jar                |Squat Grow                    |squatgrow                     |5.3.0+mc1.20.1      |DONE      |Manifest: NOSIGNATURE         ftb-teams-forge-2001.2.0.jar                      |FTB Teams                     |ftbteams                      |2001.2.0            |DONE      |Manifest: NOSIGNATURE         letsdo-brewery-forge-1.1.5.jar                    |[Let's Do] Brewery            |brewery                       |1.1.5               |DONE      |Manifest: NOSIGNATURE         AI-Improvements-1.20-0.5.2.jar                    |AI-Improvements               |aiimprovements                |0.5.2               |DONE      |Manifest: NOSIGNATURE         cupboard-1.20.1-2.6.jar                           |Cupboard utilities            |cupboard                      |1.20.1-2.6          |DONE      |Manifest: NOSIGNATURE         light-overlay-8.0.0-forge.jar                     |Light Overlay                 |lightoverlay                  |8.0.0               |DONE      |Manifest: NOSIGNATURE         trashcans-1.0.18b-forge-mc1.20.jar                |Trash Cans                    |trashcans                     |1.0.18b             |DONE      |Manifest: NOSIGNATURE         polylib-forge-2000.0.3-build.133.jar              |PolyLib                       |polylib                       |2000.0.3-build.133  |DONE      |Manifest: NOSIGNATURE         observable-4.4.1.jar                              |Observable                    |observable                    |4.4.1               |DONE      |Manifest: NOSIGNATURE         YeetusExperimentus-Forge-2.3.1-build.6+mc1.20.1.ja|Yeetus Experimentus           |yeetusexperimentus            |2.3.1-build.6+mc1.20|DONE      |Manifest: NOSIGNATURE         DarkModeEverywhere-1.20.1-1.2.2.jar               |DarkModeEverywhere            |darkmodeeverywhere            |1.20.1-1.2.2        |DONE      |Manifest: NOSIGNATURE         BetterAdvancements-1.20.1-0.3.2.161.jar           |Better Advancements           |betteradvancements            |0.3.2.161           |DONE      |Manifest: NOSIGNATURE         rhino-forge-2001.2.2-build.18.jar                 |Rhino                         |rhino                         |2001.2.2-build.18   |DONE      |Manifest: NOSIGNATURE         kubejs-forge-2001.6.4-build.138.jar               |KubeJS                        |kubejs                        |2001.6.4-build.138  |DONE      |Manifest: NOSIGNATURE         trashslot-forge-1.20-15.1.0.jar                   |TrashSlot                     |trashslot                     |15.1.0              |DONE      |Manifest: NOSIGNATURE         craftingstation-1.20.1-1.jar                      |Crafting Station              |craftingstation               |1.20.1-1            |DONE      |Manifest: NOSIGNATURE         quickstack-1.20.1-1.jar                           |QuickStack                    |quickstack                    |1.20.1-1            |DONE      |Manifest: NOSIGNATURE         item-filters-forge-2001.1.0-build.59.jar          |Item Filters                  |itemfilters                   |2001.1.0-build.59   |DONE      |Manifest: NOSIGNATURE         ftb-quests-forge-2001.3.5.jar                     |FTB Quests                    |ftbquests                     |2001.3.5            |DONE      |Manifest: NOSIGNATURE         TravelAnchors-1.20.1-5.0.1.jar                    |Travel Anchors                |travelanchors                 |1.20.1-5.0.1        |DONE      |Manifest: NOSIGNATURE         waystones-forge-1.20-14.1.3.jar                   |Waystones                     |waystones                     |14.1.3              |DONE      |Manifest: NOSIGNATURE         FastSuite-1.20.1-5.0.1.jar                        |Fast Suite                    |fastsuite                     |5.0.1               |DONE      |Manifest: NOSIGNATURE         Clumps-forge-1.20.1-12.0.0.3.jar                  |Clumps                        |clumps                        |12.0.0.3            |DONE      |Manifest: NOSIGNATURE         journeymap-1.20.1-5.9.20-forge.jar                |Journeymap                    |journeymap                    |5.9.20              |DONE      |Manifest: NOSIGNATURE         comforts-forge-6.3.5+1.20.1.jar                   |Comforts                      |comforts                      |6.3.5+1.20.1        |DONE      |Manifest: NOSIGNATURE         framedcompactdrawers-1.20-6.0.0.jar               |Framed Compacting Drawers     |framedcompactdrawers          |1.20-6.0.0          |DONE      |Manifest: NOSIGNATURE         [1.20.1]davesbuilds.jar                           |Dave's Building Extended      |davebuildingmod               |5.0                 |DONE      |Manifest: NOSIGNATURE         DimStorage-1.20.1-8.0.1.jar                       |DimStorage                    |dimstorage                    |8.0.1               |DONE      |Manifest: NOSIGNATURE         charginggadgets-1.11.0.jar                        |Charging Gadgets              |charginggadgets               |1.11.0              |DONE      |Manifest: NOSIGNATURE         gtceu-1.20.1-1.1.4.a.jar                          |GregTech                      |gtceu                         |1.1.4.a             |DONE      |Manifest: NOSIGNATURE         mcjtylib-1.20-8.0.3.jar                           |McJtyLib                      |mcjtylib                      |1.20-8.0.3          |DONE      |Manifest: NOSIGNATURE         rftoolsbase-1.20-5.0.2.jar                        |RFToolsBase                   |rftoolsbase                   |1.20-5.0.2          |DONE      |Manifest: NOSIGNATURE         xnet-1.20-6.0.2.jar                               |XNet                          |xnet                          |1.20-6.0.2          |DONE      |Manifest: NOSIGNATURE         signtastic-1.20-3.0.0.jar                         |SignTastic                    |signtastic                    |1.20-3.0.0          |DONE      |Manifest: NOSIGNATURE         ExplorersCompass-1.20.1-1.3.3-forge.jar           |Explorer's Compass            |explorerscompass              |1.20.1-1.3.3-forge  |DONE      |Manifest: NOSIGNATURE         waveycapes-forge-1.4.4-mc1.20.1.jar               |WaveyCapes                    |waveycapes                    |1.4.4               |DONE      |Manifest: NOSIGNATURE         ToastControl-1.20.1-8.0.3.jar                     |Toast Control                 |toastcontrol                  |8.0.3               |DONE      |Manifest: NOSIGNATURE         ftb-chunks-forge-2001.2.7.jar                     |FTB Chunks                    |ftbchunks                     |2001.2.7            |DONE      |Manifest: NOSIGNATURE         ftb-xmod-compat-forge-2.1.0.jar                   |FTB XMod Compat               |ftbxmodcompat                 |2.1.0               |DONE      |Manifest: NOSIGNATURE         SimpleResourceGeneratorsJAR1.12.jar               |Simple Resource Generators    |simple_resource_generators    |1.0.0               |DONE      |Manifest: NOSIGNATURE         craftingtweaks-forge-1.20.1-18.2.3.jar            |CraftingTweaks                |craftingtweaks                |18.2.3              |DONE      |Manifest: NOSIGNATURE         rftoolsutility-1.20-6.0.5.jar                     |RFToolsUtility                |rftoolsutility                |1.20-6.0.5          |DONE      |Manifest: NOSIGNATURE         libIPN-forge-1.20-4.0.2.jar                       |libIPN                        |libipn                        |4.0.2               |DONE      |Manifest: NOSIGNATURE         EnchantmentDescriptions-Forge-1.20.1-17.0.14.jar  |EnchantmentDescriptions       |enchdesc                      |17.0.14             |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         sebastrnlib-4.0.0.jar                             |Sebastrn Lib                  |sebastrnlib                   |4.0.0               |DONE      |Manifest: NOSIGNATURE         appliedcooking-4.0.0.jar                          |Applied Cooking               |appliedcooking                |4.0.0               |DONE      |Manifest: NOSIGNATURE         cookingforblockheads-forge-1.20.1-16.0.3.jar      |CookingForBlockheads          |cookingforblockheads          |16.0.3              |DONE      |Manifest: NOSIGNATURE         Patchouli-1.20.1-84-FORGE.jar                     |Patchouli                     |patchouli                     |1.20.1-84-FORGE     |DONE      |Manifest: NOSIGNATURE         moonlight-1.20-2.11.9-forge.jar                   |Moonlight Library             |moonlight                     |1.20-2.11.9         |DONE      |Manifest: NOSIGNATURE         labels-1.20-1.20.1.jar                            |Labels                        |labels                        |1.20-1.20.1         |DONE      |Manifest: NOSIGNATURE         configuration-forge-1.20.1-2.2.0.jar              |Configuration                 |configuration                 |2.2.0               |DONE      |Manifest: NOSIGNATURE         ToolBelt-1.20-1.20.0.jar                          |Tool Belt                     |toolbelt                      |1.20.0              |DONE      |Manifest: NOSIGNATURE         titanium-1.20.1-3.8.27.jar                        |Titanium                      |titanium                      |3.8.27              |DONE      |Manifest: NOSIGNATURE         Jade-1.20.1-forge-11.7.1.jar                      |Jade                          |jade                          |11.7.1              |DONE      |Manifest: NOSIGNATURE         appliedenergistics2-forge-15.0.23.jar             |Applied Energistics 2         |ae2                           |15.0.23             |DONE      |Manifest: NOSIGNATURE         merequester-forge-1.20.1-1.1.4.jar                |ME Requester                  |merequester                   |1.20.1-1.1.4        |DONE      |Manifest: NOSIGNATURE         ae2wtlib-15.2.3-forge.jar                         |AE2WTLib                      |ae2wtlib                      |15.2.3-forge        |DONE      |Manifest: NOSIGNATURE         megacells-forge-2.3.3-1.20.1.jar                  |MEGA Cells                    |megacells                     |2.3.3-1.20.1        |DONE      |Manifest: NOSIGNATURE         ExtendedAE-1.20-1.0.18-forge.jar                  |ExtendedAE                    |expatternprovider             |1.20-1.0.18-forge   |DONE      |Manifest: NOSIGNATURE         AE2-Things-1.2.1.jar                              |AE2 Things                    |ae2things                     |1.2.1               |DONE      |Manifest: NOSIGNATURE         CreativeCore_FORGE_v2.11.25_mc1.20.1.jar          |CreativeCore                  |creativecore                  |2.11.25             |DONE      |Manifest: NOSIGNATURE         packedup-1.0.30-forge-mc1.20.jar                  |Packed Up                     |packedup                      |1.0.30              |DONE      |Manifest: NOSIGNATURE         EnderIO-1.20.1-6.0.25-alpha.jar                   |Ender IO                      |enderio                       |6.0.25-alpha        |DONE      |Manifest: NOSIGNATURE         DefaultWorldType-1.20.1-4.0.4.jar                 |Default World Type            |defaultworldtype              |1.20.1-4.0.4        |DONE      |Manifest: NOSIGNATURE         easy_villagers-1.20.1-1.0.17.jar                  |Easy Villagers                |easy_villagers                |1.20.1-1.0.17       |DONE      |Manifest: NOSIGNATURE         Dimensional-Paintings-1.20.1-2.0.2.jar            |Dimensional Paintings         |dimpaintings                  |2.0.2               |DONE      |Manifest: NOSIGNATURE         polyeng-forge-0.1.0-1.20.1.jar                    |Polymorphic Energistics       |polyeng                       |0.1.0-1.20.1        |DONE      |Manifest: NOSIGNATURE         PigPen-Forge-1.20.1-15.0.2.jar                    |PigPen                        |pigpen                        |15.0.2              |DONE      |Manifest: NOSIGNATURE         storagedrawers-1.20.1-12.0.3.jar                  |Storage Drawers               |storagedrawers                |12.0.3              |DONE      |Manifest: NOSIGNATURE         enderchests-forge-1.20.1-1.2.jar                  |EnderChests                   |enderchests                   |1.20.1-1.2          |DONE      |Manifest: NOSIGNATURE         buildinggadgets2-1.0.7.jar                        |Building Gadgets 2            |buildinggadgets2              |1.0.7               |DONE      |Manifest: NOSIGNATURE         capable_cauldrons-1.20.1-1.2.0.5.jar              |Capable Cauldrons             |capable_cauldrons             |1.2.0               |DONE      |Manifest: NOSIGNATURE         ferritecore-6.0.1-forge.jar                       |Ferrite Core                  |ferritecore                   |6.0.1               |DONE      |Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a         functionalstorage-1.20.1-1.2.7.jar                |Functional Storage            |functionalstorage             |1.20.1-1.2.7        |DONE      |Manifest: NOSIGNATURE         apexcore-1.20.1-10.0.0.jar                        |ApexCore                      |apexcore                      |10.0.0              |DONE      |Manifest: NOSIGNATURE         fantasyfurniture-1.20.1-9.0.0.jar                 |Fantasy's Furniture           |fantasyfurniture              |9.0.0               |DONE      |Manifest: NOSIGNATURE         modular-routers-12.1.1+mc1.20.1.jar               |Modular Routers               |modularrouters                |12.1.1+mc1.20.1     |DONE      |Manifest: NOSIGNATURE         BetterF3-7.0.2-Forge-1.20.1.jar                   |BetterF3                      |betterf3                      |7.0.2               |DONE      |Manifest: NOSIGNATURE         overloadedarmorbar-1.20.1-1.jar                   |Overloaded Armor Bar          |overloadedarmorbar            |1.20.1-1            |DONE      |Manifest: NOSIGNATURE         xtonesreworked-1.0.1-F_1.20.1-47.2.0.jar          |XTones Reworked               |xtonesreworked                |1.0.1               |DONE      |Manifest: NOSIGNATURE         LittleTiles_BETA_v1.6.0-pre100_mc1.20.1.jar       |LittleTiles                   |littletiles                   |1.6.0-pre100        |DONE      |Manifest: NOSIGNATURE     Crash Report UUID: 68c93cde-f9be-4441-9b55-93d2fc79d2c1     FML: 47.2     Forge: net.minecraftforge:47.2.0     Kiwi Modules:          kiwi:contributors         kiwi:data         lightingwand:core
  • Topics

×
×
  • Create New...

Important Information

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