Jump to content

Recommended Posts

Posted

Hello, I need help with my texturing, when test run it just shows the untextured texture.

 

 

Here is my main file's code:

 

package k3.moreMetals;

import net.minecraft.block.Block;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.init.Items;
import net.minecraft.item.Item;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import cpw.mods.fml.common.registry.GameRegistry;


@Mod(modid = moreMetalsMod.MODID, version = moreMetalsMod.VERSION)
public class moreMetalsMod {

public static final String MODID = "moreMetals";
public static final String VERSION = "1.0";

public static Block orePlatinum;
public static Item chunkPlatinum;

public static CreativeTabs moreMetalsTab = new CreativeTabs("moreMetalsStuff"){

@Override
	public Item getTabIconItem() {
		return Items.emerald;
	} 
};

@EventHandler
public void preInit(FMLPreInitializationEvent preevent){

	chunkPlatinum = new Item().setUnlocalizedName("chunkPlatinum").setCreativeTab(moreMetalsTab).setTextureName(MODID + ":" + "chunkPlatinum");
	GameRegistry.registerItem(chunkPlatinum, "chunkPlatinum");

	orePlatinum = new BlockPlatOre().setBlockName("orePlatinum").setCreativeTab(moreMetalsTab).setBlockTextureName(MODID + ":" + "orePlatinum");
	GameRegistry.registerBlock(orePlatinum, "orePlatinum");
}

@EventHandler
public void init(FMLInitializationEvent event){

}
}

 

 

here's the BlockPlatOre code:

 

package k3.moreMetals;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;

public class BlockPlatOre extends Block {

public BlockPlatOre() {
	super(Material.iron);

}

}

 

 

 

 

the orePlatinum texture is  in assets.moreMetals.textures.blocks and the chunkPlatinum is in assets.moreMetals.textures.items. Also, the images are png files.

Currently developing the More Metals Mod.

Posted

Try setting the texutre name under the 'super' constructor, and not in the preInit. It would also be nice to do the same thing with your creative tab... Your block class should look like this:

 

 

 

package k3.moreMetals;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;

public class BlockPlatOre extends Block {

public BlockPlatOre() {
	super(Material.iron);
                this.setBlockTextureName(MODID + ":" + "orePlatinum");
                this.setCreativeTab(moreMetalsTab);

}

}

 

If i helped you, please click the "thank you" button :)

Posted

Try setting the texutre name under the 'super' constructor, and not in the preInit. It would also be nice to do the same thing with your creative tab... Your block class should look like this:

 

 

 

package k3.moreMetals;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;

public class BlockPlatOre extends Block {

public BlockPlatOre() {
	super(Material.iron);
                this.setBlockTextureName(MODID + ":" + "orePlatinum");
                this.setCreativeTab(moreMetalsTab);

}

}

 

 

 

Okay, now it's giving me the errors "MODID cannot be resolved to a variable" and "moreMetalsTab cannot be resolved to a variable" Do you know how to fix that?

Currently developing the More Metals Mod.

Posted

You need to import the class moreMetalsMod! Then you do this:

 

package k3.moreMetals;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import blablabla.moreMetalsMod; //Please do ask why blablabla.moreMetalsMod doens't work!

public class BlockPlatOre extends Block {

public BlockPlatOre() {
	super(Material.iron);
                this.setBlockTextureName(moreMetalsMod.MODID + ":" + "orePlatinum");

}

}

 

And leave the Creative tab in the preInit...

Thanks :)

João Fernandes

Posted

You need to import the class moreMetalsMod! Then you do this:

 

package k3.moreMetals;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import blablabla.moreMetalsMod; //Please do ask why blablabla.moreMetalsMod doens't work!

public class BlockPlatOre extends Block {

public BlockPlatOre() {
	super(Material.iron);
                this.setBlockTextureName(moreMetalsMod.MODID + ":" + "orePlatinum");

}

}

 

And leave the Creative tab in the preInit...

 

Well now the block isn't showing up in the creative tab when I test it, do you know why?

Currently developing the More Metals Mod.

Posted

By MODID i meant your actual mod id, which i think is moremetals, idk... but, if can also do as jtmnf said, to prevent typing erros...

As for the creative tab, thats because you have to take it off of the preInit and put it in the 'super' constructor, as i said...

 

If i helped you, please click the "thank you" button :)

Posted

Rokuw, do you mean:

 

(...)
	orePlatinum = new BlockPlatOre().setBlockName("orePlatinum").setBlockTextureName(MODID + ":" + "orePlatinum");
	GameRegistry.registerBlock(orePlatinum, "orePlatinum");
(...)

 

and

 

public class BlockPlatOre extends Block {

public BlockPlatOre() {
	super(Material.iron);
                this.setBlockTextureName(moreMetalsMod.MODID + ":" + "orePlatinum");
                this.setCreativeTab(moreMetalsMod.moreMetalsTab);
}	
}

 

This?

Thanks :)

João Fernandes

Posted

The second one is right, but the first one is supposed to be like this:

 

(...)
	orePlatinum = new BlockPlatOre().setBlockName("orePlatinum");
	GameRegistry.registerBlock(orePlatinum, "orePlatinum");
(...)

(no set block texture name)

 

I hope it works this way :)

If i helped you, please click the "thank you" button :)

Posted

Rsrsrs, thats fine, i always make something like that too :P

 

So anyways, Kennybenny, your block class should look like this:

 

 

package k3.moreMetals;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;

public class BlockPlatOre extends Block {

public BlockPlatOre() {
	super(Material.iron);
                this.setBlockTextureName(moreMetalsMod.MODID + ":" + "orePlatinum");
                this.setCreativeTab(moreMetalsMod.moreMetalsTab);

}

}

 

 

And your main class should look like this:

 

 

package k3.moreMetals;

import net.minecraft.block.Block;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.init.Items;
import net.minecraft.item.Item;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import cpw.mods.fml.common.registry.GameRegistry;


@Mod(modid = moreMetalsMod.MODID, version = moreMetalsMod.VERSION)
public class moreMetalsMod {

public static final String MODID = "moreMetals";
public static final String VERSION = "1.0";

public static Block orePlatinum;
public static Item chunkPlatinum;

public static CreativeTabs moreMetalsTab = new CreativeTabs("moreMetalsStuff"){

@Override
	public Item getTabIconItem() {
		return Items.emerald;
	} 
};

@EventHandler
public void preInit(FMLPreInitializationEvent preevent){

	chunkPlatinum = new Item().setUnlocalizedName("chunkPlatinum")
	GameRegistry.registerItem(chunkPlatinum, "chunkPlatinum");

	orePlatinum = new BlockPlatOre().setBlockName("orePlatinum");
	GameRegistry.registerBlock(orePlatinum, "orePlatinum");
}

@EventHandler
public void init(FMLInitializationEvent event){

}
}

Also, as you're not using fml init, you can just delete it, but that's up to you, since it makes no difference...

 

I also noticed that you have an item called 'chunkPlatinum' and i bet that its texture isn't working aswell (i think you mentioned it, i don't remember)... I already fixed it in the preInit, just don't forget to set the texture name and creative tab in the 'super' method....

If i helped you, please click the "thank you" button :)

Posted

The second one is right, but the first one is supposed to be like this:

 

(...)
	orePlatinum = new BlockPlatOre().setBlockName("orePlatinum");
	GameRegistry.registerBlock(orePlatinum, "orePlatinum");
(...)

(no set block texture name)

 

I hope it works this way :)

 

Nope, still not working, just a checkered purple and black block, the images are 16x16, just saying, it might help.

Currently developing the More Metals Mod.

Posted

Did you set the texture name in your block class as it is in my spoiler tag?

(if you don't know, just click the 'hidden' button and you'll see the code that works)

If i helped you, please click the "thank you" button :)

Posted

Did you set the texture name in your block class as it is in my spoiler tag?

(if you don't know, just click the 'hidden' button and you'll see the code that works)

 

Yeah, I copy-pasted it all. I'll take some screenshots and if somebody can tell me how to use the insert image thing on the forum (I'm a big noob on the forum) then I can post them.

Currently developing the More Metals Mod.

Posted

I could post my code, but i use internal classes, and you're using public ones, and that would confuse you, i think.... If you want so, just say...

 

As for your problem, could you post your "new" classes, please?

If i helped you, please click the "thank you" button :)

Posted

I'm not tracking the error there :\ Tomorrow I'll see with other eyes if the error wasn't founded yet!

I'll check during the day what kind of problems might cause that... For now I'm not really seeing what's wrong :\

Thanks :)

João Fernandes

Posted

This is my code (I'll only paste the important ones):

 

MainClass

 

public class MainClass
{
    public static final String MODID = "techmodcraft";
    public static final String VERSION = "1.0";

    public static CreativeTabs testTab = new CreativeTabs("techmodcraft") {
        @Override
public Item getTabIconItem() {
	return Items.diamond;
}
    };

    public static Block blockTest;
    
    @EventHandler
    public void preInit(FMLPreInitializationEvent event){
    	blockTest = new BlockTech().setBlockName("blockTest").setCreativeTab(testTab);
    	GameRegistry.registerBlock(blockTest, "blockTest");
    }

 

BlockTech

 

public class BlockTech extends Block{

public BlockTech() {
	super(Material.rock);
	this.setBlockTextureName(MainClass.MODID + ":" + "blockTest");
}
}

 

In the Package Explorer I have:

- Forge > src/TechModCraft:

    > assets.techmodcraft.textures.blocks > (this has the images of blocks)

    > net.techmodcraft.mod.block > (this has the .java classes)

 

If you don't find any error by comparing with my setup, try to re-create the project... That might help!

 

I'll continue to see this...

Thanks :)

João Fernandes

Posted

This is my code (I'll only paste the important ones):

 

MainClass

 

public class MainClass
{
    public static final String MODID = "techmodcraft";
    public static final String VERSION = "1.0";

    public static CreativeTabs testTab = new CreativeTabs("techmodcraft") {
        @Override
public Item getTabIconItem() {
	return Items.diamond;
}
    };

    public static Block blockTest;
    
    @EventHandler
    public void preInit(FMLPreInitializationEvent event){
    	blockTest = new BlockTech().setBlockName("blockTest").setCreativeTab(testTab);
    	GameRegistry.registerBlock(blockTest, "blockTest");
    }

 

BlockTech

 

public class BlockTech extends Block{

public BlockTech() {
	super(Material.rock);
	this.setBlockTextureName(MainClass.MODID + ":" + "blockTest");
}
}

 

In the Package Explorer I have:

- Forge > src/TechModCraft:

    > assets.techmodcraft.textures.blocks > (this has the images of blocks)

    > net.techmodcraft.mod.block > (this has the .java classes)

 

If you don't find any error by comparing with my setup, try to re-create the project... That might help!

 

I'll continue to see this...

 

 

It's still not working, do you have any tutorials that are any different from what I was already doing?

 

Currently developing the More Metals Mod.

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

    • Add crash-reports with sites like https://mclo.gs/   Remove niftyShipsBiomesOPlenty-FORGE
    • im trying to install 1.21.4 for Minecraft and for some reason it wont install it. I installed the latest version of java and when i try to open to intsall forge it says that java wont work or that it's not installed. if anyone can help that would be great bc all i want is to play minecraft with mods 
    • [18:39:41] [main/INFO]:Fabric mod metadata not found in jar org.groovymc.gml, ignoring [18:39:41] [main/INFO]:Fabric mod metadata not found in jar thedarkcolour.kotlinforforge, ignoring [18:39:42] [main/INFO]:Dependency resolution found 1 candidates to load [18:39:43] [main/INFO]:Found mod file dark-waters-connector-1.20.1-0.0.22_mapped_srg_1.20.1.jar of type MOD with provider org.sinytra.connector.locator.ConnectorLocator@6c8f4bc7 [18:39:43] [main/INFO]:Starting runtime mappings setup... [18:39:43] [main/INFO]:Injecting ScriptModLocator candidates... [18:39:43] [main/INFO]:Injected Jimfs file system [18:39:43] [main/INFO]:Skipped loading script mods from directory C:\Users\wwwSc\curseforge\minecraft\Instances\L SMP (1)\mods\scripts as it did not exist. [18:39:43] [main/INFO]:Injected ScriptModLocator mod candidates. Found 0 valid mod candidates and 0 broken mod files. [18:39:44] [main/INFO]:Successfully made module authlib transformable [18:39:45] [GML Mappings Thread/INFO]:Loaded runtime mappings in 1616ms [18:39:45] [GML Mappings Thread/INFO]:Finished runtime mappings setup. then it crashes
    • Here is the crash report ---- Minecraft Crash Report ---- // My bad. Time: 2024-12-21 17:05:21 Description: Rendering overlay java.lang.RuntimeException: null     at net.minecraftforge.fml.DeferredWorkQueue.runTasks(DeferredWorkQueue.java:58) ~[fmlcore-1.20.1-47.3.0.jar%23533!/:?] {}     at net.minecraftforge.fml.core.ParallelTransition.lambda$finalActivityGenerator$2(ParallelTransition.java:35) ~[forge-1.20.1-47.3.0-universal.jar%23537!/:?] {re:classloading}     at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:646) ~[?:?] {}     at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {}     at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:classloading}     at net.minecraft.util.thread.BlockableEventLoop.m_6367_(BlockableEventLoop.java:156) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {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) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,re:computing_frames,re:classloading}     at net.minecraft.util.thread.BlockableEventLoop.m_7245_(BlockableEventLoop.java:130) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.util.thread.BlockableEventLoop.m_18699_(BlockableEventLoop.java:115) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1106) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:deltaboxlib.mixins.json:event.MinecraftMixin,pl:mixin:APP:glitchcore.mixins.json:client.MixinMinecraft,pl:mixin:APP:supplementaries-common.mixins.json:MinecraftMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:deltaboxlib.mixins.json:event.MinecraftMixin,pl:mixin:APP:glitchcore.mixins.json:client.MixinMinecraft,pl:mixin:APP:supplementaries-common.mixins.json:MinecraftMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:classloading,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.3.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:?] {}     Suppressed: java.lang.NoSuchFieldError: DEAD_PLANKS         at com.alekiponi.alekishipsbop.BOPWood.lambda$static$0(BOPWood.java:23) ~[niftyShipsBiomesOPlenty-FORGE-1.20.1-1.0.4.jar%23481!/:1.0.4] {re:classloading}         at com.alekiponi.alekishipsbop.BOPWood.registerFrames(BOPWood.java:48) ~[niftyShipsBiomesOPlenty-FORGE-1.20.1-1.0.4.jar%23481!/:1.0.4] {re:classloading}         at com.alekiponi.alekishipsbop.AlekiShipsBOP.lambda$setup$0(AlekiShipsBOP.java:42) ~[niftyShipsBiomesOPlenty-FORGE-1.20.1-1.0.4.jar%23481!/:1.0.4] {re:classloading}         at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {}         at net.minecraftforge.fml.DeferredWorkQueue.lambda$makeRunnable$2(DeferredWorkQueue.java:81) ~[fmlcore-1.20.1-47.3.0.jar%23533!/:?] {}         at net.minecraftforge.fml.DeferredWorkQueue.makeRunnable(DeferredWorkQueue.java:76) ~[fmlcore-1.20.1-47.3.0.jar%23533!/:?] {}         at net.minecraftforge.fml.DeferredWorkQueue.lambda$runTasks$0(DeferredWorkQueue.java:60) ~[fmlcore-1.20.1-47.3.0.jar%23533!/:?] {}         at java.util.concurrent.ConcurrentLinkedDeque.forEach(ConcurrentLinkedDeque.java:1650) ~[?:?] {}         at net.minecraftforge.fml.DeferredWorkQueue.runTasks(DeferredWorkQueue.java:60) ~[fmlcore-1.20.1-47.3.0.jar%23533!/:?] {}         at net.minecraftforge.fml.core.ParallelTransition.lambda$finalActivityGenerator$2(ParallelTransition.java:35) ~[forge-1.20.1-47.3.0-universal.jar%23537!/:?] {re:classloading}         at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:646) ~[?:?] {}         at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {}         at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:classloading}         at net.minecraft.util.thread.BlockableEventLoop.m_6367_(BlockableEventLoop.java:156) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {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) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,re:computing_frames,re:classloading}         at net.minecraft.util.thread.BlockableEventLoop.m_7245_(BlockableEventLoop.java:130) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}         at net.minecraft.util.thread.BlockableEventLoop.m_18699_(BlockableEventLoop.java:115) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}         at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1106) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:deltaboxlib.mixins.json:event.MinecraftMixin,pl:mixin:APP:glitchcore.mixins.json:client.MixinMinecraft,pl:mixin:APP:supplementaries-common.mixins.json:MinecraftMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}         at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:deltaboxlib.mixins.json:event.MinecraftMixin,pl:mixin:APP:glitchcore.mixins.json:client.MixinMinecraft,pl:mixin:APP:supplementaries-common.mixins.json:MinecraftMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}         at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:classloading,pl:runtimedistcleaner:A}         at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}         at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}         at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}         at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}         at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.0.jar:?] {}         at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.3.0.jar:?] {}         at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.3.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:?] {} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Suspected Mods: NONE Stacktrace:     at net.minecraftforge.fml.DeferredWorkQueue.runTasks(DeferredWorkQueue.java:58) ~[fmlcore-1.20.1-47.3.0.jar%23533!/:?] {}     at net.minecraftforge.fml.core.ParallelTransition.lambda$finalActivityGenerator$2(ParallelTransition.java:35) ~[forge-1.20.1-47.3.0-universal.jar%23537!/:?] {re:classloading}     at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:646) ~[?:?] {}     at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {}     at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:classloading}     at net.minecraft.util.thread.BlockableEventLoop.m_6367_(BlockableEventLoop.java:156) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {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) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,re:computing_frames,re:classloading}     at net.minecraft.util.thread.BlockableEventLoop.m_7245_(BlockableEventLoop.java:130) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B} -- 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%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:deltaboxlib.mixins.json:event.MinecraftMixin,pl:mixin:APP:glitchcore.mixins.json:client.MixinMinecraft,pl:mixin:APP:supplementaries-common.mixins.json:MinecraftMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:deltaboxlib.mixins.json:event.MinecraftMixin,pl:mixin:APP:glitchcore.mixins.json:client.MixinMinecraft,pl:mixin:APP:supplementaries-common.mixins.json:MinecraftMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:classloading,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.3.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: vanilla, mod_resources, Moonlight Mods Dynamic Assets -- 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: 2721807184 bytes (2595 MiB) / 5402263552 bytes (5152 MiB) up to 13019119616 bytes (12416 MiB)     CPUs: 16     Processor Vendor: GenuineIntel     Processor Name: 11th Gen Intel(R) Core(TM) i7-11800H @ 2.30GHz     Identifier: Intel64 Family 6 Model 141 Stepping 1     Microarchitecture: unknown     Frequency (GHz): 2.30     Number of physical packages: 1     Number of physical CPUs: 8     Number of logical CPUs: 16     Graphics card #0 name: NVIDIA GeForce RTX 3050 Ti Laptop GPU     Graphics card #0 vendor: NVIDIA (0x10de)     Graphics card #0 VRAM (MB): 4095.00     Graphics card #0 deviceId: 0x25a0     Graphics card #0 versionInfo: DriverVersion=31.0.15.4601     Graphics card #1 name: Intel(R) UHD Graphics     Graphics card #1 vendor: Intel Corporation (0x8086)     Graphics card #1 VRAM (MB): 1024.00     Graphics card #1 deviceId: 0x9a60     Graphics card #1 versionInfo: DriverVersion=30.0.100.9864     Memory slot #0 capacity (MB): 8192.00     Memory slot #0 clockSpeed (GHz): 3.20     Memory slot #0 type: DDR4     Memory slot #1 capacity (MB): 8192.00     Memory slot #1 clockSpeed (GHz): 3.20     Memory slot #1 type: DDR4     Virtual memory max (MB): 37651.30     Virtual memory used (MB): 31003.50     Swap memory total (MB): 21504.00     Swap memory used (MB): 2837.69     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx12416m -Xms256m     Launched Version: forge-47.3.0     Backend library: LWJGL version 3.3.1 build 7     Backend API: NVIDIA GeForce RTX 3050 Ti Laptop GPU/PCIe/SSE2 GL version 4.6.0 NVIDIA 546.01, 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: fancy     Resource Packs:      Current Language: en_us     CPU: 16x 11th Gen Intel(R) Core(TM) i7-11800H @ 2.30GHz     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.3.0.jar slf4jfixer PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar object_holder_definalize PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar runtime_enum_extender PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar capability_token_subclass PLUGINSERVICE          accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar runtimedistcleaner PLUGINSERVICE          modlauncher-10.0.9.jar mixin TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar fml TRANSFORMATIONSERVICE      FML Language Providers:          [email protected]         [email protected]         javafml@null         lowcodefml@null     Mod List:          decorativecovers 1.20.1 - v1.2 - Forge.jar        |Decorative covers             |decorativecovers              |1.20.1              |SIDED_SETU|Manifest: NOSIGNATURE         berries_and_cherries-1.0.9-hotfix.jar             |Berries And Cherries          |berries_and_cherries          |1.0.9               |SIDED_SETU|Manifest: NOSIGNATURE         scena-forge-1.0.103.jar                           |Scena                         |scena                         |1.0.103             |SIDED_SETU|Manifest: NOSIGNATURE         braziliandelight-1.1.0-all.jar                    |Brazilian Delight             |braziliandelight              |1.1.0               |SIDED_SETU|Manifest: NOSIGNATURE         mcw-windows-2.3.0-mc1.20.1forge.jar               |Macaw's Windows               |mcwwindows                    |2.3.0               |SIDED_SETU|Manifest: NOSIGNATURE         aquaculture_delight_1.0.0_forge_1.20.1.jar        |Aquaculture Delight           |aquaculturedelight            |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         ForgeEndertech-1.20.1-11.1.5.0-build.0890.jar     |ForgeEndertech                |forgeendertech                |11.1.5.0            |SIDED_SETU|Manifest: NOSIGNATURE         YungsApi-1.20-Forge-4.0.6.jar                     |YUNG's API                    |yungsapi                      |1.20-Forge-4.0.6    |SIDED_SETU|Manifest: NOSIGNATURE         mcw-stairs-1.0.0-1.20.1forge.jar                  |Macaw's Stairs and Balconies  |mcwstairs                     |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         brazildelight-1.0.1-1.20.1.jar                    |Brazil Delight                |brazildelight                 |1.0.1-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         honeydelight-1.0.2.1-1.20.1.jar                   |Honey Delight                 |honeydelight                  |1.0.2.1-1.20.1      |SIDED_SETU|Manifest: NOSIGNATURE         Compat_FarmersDelight.jar                         |Farmer's Delight Compat       |farmersdelightcompat          |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         decorative_bottles-0.1.3.jar                      |Decorative Bottles            |decorativebottles             |1.20.1 - 0.1.3      |SIDED_SETU|Manifest: NOSIGNATURE         vminus-3.1.1.jar                                  |V-Minus                       |vminus                        |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         athena-forge-1.20.1-3.1.2.jar                     |Athena                        |athena                        |3.1.2               |SIDED_SETU|Manifest: NOSIGNATURE         lmft-1.0.4+1.20.1-forge.jar                       |Load My F***ing Tags          |lmft                          |1.0.4+1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         vintagedelight-0.1.6.jar                          |Vintage Delight               |vintagedelight                |0.1.6               |SIDED_SETU|Manifest: NOSIGNATURE         handcrafted-forge-1.20.1-3.0.6.jar                |Handcrafted                   |handcrafted                   |3.0.6               |SIDED_SETU|Manifest: NOSIGNATURE         alekiNiftyShips-FORGE-1.20.1-1.0.13.jar           |aleki's Nifty Ships           |alekiships                    |1.0.13              |SIDED_SETU|Manifest: NOSIGNATURE         copperandtuffbackport-1.2.jar                     |Copper & Tuff Backport        |copperandtuffbackport         |1.2                 |SIDED_SETU|Manifest: NOSIGNATURE         pizzadelight-1.20.1-1.0.0.jar                     |Pizza Delight                 |pizzadelight                  |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         mcw-trapdoors-1.1.4-mc1.20.1forge.jar             |Macaw's Trapdoors             |mcwtrpdoors                   |1.1.4               |SIDED_SETU|Manifest: NOSIGNATURE         ManyIdeasCore-1.20.1-1.4.2.jar                    |ManyIdeas Core                |manyideas_core                |1.4.2               |SIDED_SETU|Manifest: NOSIGNATURE         workers-1.20.1-1.7.8.jar                          |Workers Mod                   |workers                       |1.7.8               |SIDED_SETU|Manifest: NOSIGNATURE         extlights-5.1-for-1.20.1.jar                      |Extended Lights               |extlights                     |5.1-for-1.20.1      |SIDED_SETU|Manifest: NOSIGNATURE         ModernxlSurvival_1.3.2_v1.20.1.jar                |Modernxl_II                   |modernxl_ii                   |1.3.2               |SIDED_SETU|Manifest: NOSIGNATURE         MushroomQuest-1.20.1-v4.1.2.jar                   |Mushroom Quest                |mushroomquest                 |4.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         Butchersdelight Foods beta 1.20.1 1.0.3.jar       |ButchersDelightfoods          |butchersdelightfoods          |1.20.11.0.3         |SIDED_SETU|Manifest: NOSIGNATURE         mcw-roofs-2.3.1-mc1.20.1forge.jar                 |Macaw's Roofs                 |mcwroofs                      |2.3.1               |SIDED_SETU|Manifest: NOSIGNATURE         Chimes-v2.0.1-1.20.1.jar                          |Chimes                        |chimes                        |2.0.1               |SIDED_SETU|Manifest: NOSIGNATURE         AdChimneys-1.20.1-10.1.15.0-build.0828.jar        |Advanced Chimneys             |adchimneys                    |10.1.15.0           |SIDED_SETU|Manifest: NOSIGNATURE         JadeAddons-1.20.1-Forge-5.3.1.jar                 |Jade Addons                   |jadeaddons                    |5.3.1+forge         |SIDED_SETU|Manifest: NOSIGNATURE         l2library-2.4.25-slim.jar                         |L2 Library                    |l2library                     |2.4.25              |SIDED_SETU|Manifest: NOSIGNATURE         exoticbirds-1.20.1-1.0.0.jar                      |Exotic Birds                  |exoticbirds                   |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         tradedelight-1.0.2.1-1.20.1.jar                   |Trade Delight                 |tradedelight                  |1.0.2.1-1.20.1      |SIDED_SETU|Manifest: NOSIGNATURE         recruits-1.20.1-1.12.3.jar                        |Recruits Mod                  |recruits                      |1.12.3              |SIDED_SETU|Manifest: NOSIGNATURE         mcw-lights-1.1.0-mc1.20.1forge.jar                |Macaw's Lights and Lamps      |mcwlights                     |1.1.0               |SIDED_SETU|Manifest: NOSIGNATURE         Better_Dogs_X_Doggy_Talents_Next_v1.2.2 [Forge] - |Better Dogs For DTN           |betterdogs_dtn                |1.2.2               |SIDED_SETU|Manifest: NOSIGNATURE         spanishdelight-1.0.1-1.20.1.jar                   |Spanish Delight               |spanishdelight                |1.0.0-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         jei-1.20.1-forge-15.20.0.105.jar                  |Just Enough Items             |jei                           |15.20.0.105         |SIDED_SETU|Manifest: NOSIGNATURE         deltaboxlib-1.1.2.jar                             |Deltabox Lib                  |deltaboxlib                   |1.1.2               |SIDED_SETU|Manifest: NOSIGNATURE         archbows-1.1.9-1.20.1.jar                         |Arch Bows                     |archbows                      |1.1.9-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         sunflowerdelight-1.20.1-1.0.4.jar                 |Sunflower Delight             |sunflowerdelight              |1.0.4               |SIDED_SETU|Manifest: NOSIGNATURE         justawrench-1.20.1-2.0.0.jar                      |Just a Wrench                 |justawrench                   |2.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         EpheroLib-1.20.1-FORGE-1.2.0.jar                  |BOZOID                        |epherolib                     |0.1.2               |SIDED_SETU|Manifest: NOSIGNATURE         untamedwilds-1.20.1-4.0.4.jar                     |Untamed Wilds                 |untamedwilds                  |4.0.4               |SIDED_SETU|Manifest: NOSIGNATURE         just_bees-0.4 BETA.jar                            |Just Bees                     |just_bees                     |0.4                 |SIDED_SETU|Manifest: NOSIGNATURE         GlitchCore-forge-1.20.1-0.0.1.1.jar               |GlitchCore                    |glitchcore                    |0.0.1.1             |SIDED_SETU|Manifest: NOSIGNATURE         SereneSeasons-forge-1.20.1-9.1.0.0.jar            |Serene Seasons                |sereneseasons                 |9.1.0.0             |SIDED_SETU|Manifest: NOSIGNATURE         cratedelight-24.11.29-1.20-forge.jar              |Crate Delight                 |cratedelight                  |24.11.29-1.20-forge |SIDED_SETU|Manifest: NOSIGNATURE         forge-1.20.1-47.3.0-universal.jar                 |Forge                         |forge                         |47.3.0              |SIDED_SETU|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         mcw-paths-1.0.5-1.20.1forge.jar                   |Macaw's Paths and Pavings     |mcwpaths                      |1.0.5               |SIDED_SETU|Manifest: NOSIGNATURE         DistractingTrims-Forge-1.20.1-2.0.4.jar           |DistractingTrims              |distractingtrims              |2.0.4               |SIDED_SETU|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         client-1.20.1-20230612.114412-srg.jar             |Minecraft                     |minecraft                     |1.20.1              |SIDED_SETU|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         reevesfurniture-1.3012-forge-1.20.1.jar           |Reeves Furniture              |reevesfurniture               |1.3012              |SIDED_SETU|Manifest: NOSIGNATURE         castlearchitecture-1.0.1-forge-1.20.1.jar         |Castle Architecture           |castlearchitecture            |1.0.1               |SIDED_SETU|Manifest: NOSIGNATURE         soldiers_delight-1.1.0.jar                        |Soldier's Delight             |chaseisntasoldier             |1.1.0               |SIDED_SETU|Manifest: NOSIGNATURE         mexicans_delight-1.1.1-forge-1.20.1.jar           |Mexicans' Delight             |mexicans_delight              |1.1.0               |SIDED_SETU|Manifest: NOSIGNATURE         decorativewoodenlattices 1.20.1 - v1.6 - Forge.jar|Decorative wooden lattices    |decorativewoodenlattices      |1.20                |SIDED_SETU|Manifest: NOSIGNATURE         TerraBlender-forge-1.20.1-3.0.1.7.jar             |TerraBlender                  |terrablender                  |3.0.1.7             |SIDED_SETU|Manifest: NOSIGNATURE         BiomesOPlenty-forge-1.20.1-19.0.0.91.jar          |Biomes O' Plenty              |biomesoplenty                 |19.0.0.91           |SIDED_SETU|Manifest: NOSIGNATURE         GuardRibbits-1.20.1-Forge-1.0.6.jar               |Guard Ribbits                 |guardribbits                  |1.20.1-Forge-1.0.6  |SIDED_SETU|Manifest: NOSIGNATURE         commonality-1.20.1-7.0.0.jar                      |Commonality                   |commonality                   |7.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         delightfulburgers-1.20.1.jar                      |Delightful Burgers            |delightfulburgers             |1.20.1              |SIDED_SETU|Manifest: NOSIGNATURE         animal_armor_trims-merged-1.20.1-1.0.0.jar        |Animal Armor Trims: Horses    |animal_armor_trims            |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         (1.20.1) copperworks-beta-1.5.1.jar               |Copperworks                   |copperworks                   |1.5.1               |SIDED_SETU|Manifest: NOSIGNATURE         kffmod-4.11.0.jar                                 |Kotlin For Forge              |kotlinforforge                |4.11.0              |SIDED_SETU|Manifest: NOSIGNATURE         farmersrespite-1.20.1-2.1.2.jar                   |Farmer's Respite              |farmersrespite                |1.20.1-2.1          |SIDED_SETU|Manifest: NOSIGNATURE         decoration-delight-1.20.1.jar                     |Decoration Delight            |decoration_delight            |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         Croptopia-1.20.1-FORGE-3.0.4.jar                  |Croptopia                     |croptopia                     |3.0.4               |SIDED_SETU|Manifest: NOSIGNATURE         ManyIdeasDoors-1.20.1-1.2.3.jar                   |ManyIdeas Doors               |manyideas_doors               |1.2.3               |SIDED_SETU|Manifest: NOSIGNATURE         Argentina's delight 1.20.1 (3.0 beta).jar         |Argentina's Delight           |argentinas_delight            |1.3                 |SIDED_SETU|Manifest: NOSIGNATURE         SlavicDelight-1.20.1-0.2.1-beta.jar               |Slavic Delight                |slavic_delight                |0.2                 |SIDED_SETU|Manifest: NOSIGNATURE         Aquaculture-1.20.1-2.5.3.jar                      |Aquaculture 2                 |aquaculture                   |2.5.3               |SIDED_SETU|Manifest: NOSIGNATURE         SimplyGate.jar                                    |SimplyGates                   |simplygates                   |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         ukrainedelight-1.0.1-1.20.1.jar                   |Ukraine Delight               |ukrainedelight                |1.0.1-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         solar_surfer-1.0.0-forge-1.20.1.jar               |Solar Surfer                  |solar_surfer                  |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         frycooks_delight-1.20.1-1.0.1.jar                 |Frycook's Delight             |frycooks_delight              |1.20.1-1.0.1        |SIDED_SETU|Manifest: NOSIGNATURE         fruitsdelight-1.0.14.jar                          |Fruits Delight                |fruitsdelight                 |1.0.14              |SIDED_SETU|Manifest: NOSIGNATURE         chaseisration-1.3.5.1-forge-1.20.1.jar            |Rationcraft                   |chaseisration                 |1.3.5.1             |SIDED_SETU|Manifest: NOSIGNATURE         geckolib-forge-1.20.1-4.4.9.jar                   |GeckoLib 4                    |geckolib                      |4.4.9               |SIDED_SETU|Manifest: NOSIGNATURE         Skarts-Decorations-0.3.1-(1.20.1).jar             |Skart's Decorations           |skd                           |0.3.1               |SIDED_SETU|Manifest: NOSIGNATURE         decorativerailings 1.20.1 - v1.1 - Forge.jar      |Decorative Railings           |decorativerailings            |1.20.1              |SIDED_SETU|Manifest: NOSIGNATURE         ingredientsdelight-1.0.3-1.20.1.jar               |Ingredients Delight           |ingredientsdelight            |1.0.3-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         naturalist-forge-4.0.3-1.20.1.jar                 |Naturalist                    |naturalist                    |4.0.3               |SIDED_SETU|Manifest: NOSIGNATURE         DoggyTalentsNext-1.20.1-1.18.38.jar               |Doggy Talents Next            |doggytalents                  |1.18.38             |SIDED_SETU|Manifest: NOSIGNATURE         Compat_AlexsMobs-Naturalist.jar                   |Alex's Mobs - Naturalist Compa|alexsmobsnaturalistcompat     |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         biomesoplentydelight-1.1.0-1.20.1.jar             |Biomes O'Plenty Delight       |biomesoplentydelight          |1.1.0-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         sophisticatedcore-1.20.1-1.0.1.809.jar            |Sophisticated Core            |sophisticatedcore             |1.0.1.809           |SIDED_SETU|Manifest: NOSIGNATURE         EggDelight-v1.2-1.20.1.jar                        |Egg Delight                   |eggdelight                    |1.2                 |SIDED_SETU|Manifest: NOSIGNATURE         japandelight-1.0.1-1.20.1.jar                     |Japan Delight                 |japandelight                  |1.0.1-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         citadel-2.6.1-1.20.1.jar                          |Citadel                       |citadel                       |2.6.1               |SIDED_SETU|Manifest: NOSIGNATURE         alexsmobs-1.22.9.jar                              |Alex's Mobs                   |alexsmobs                     |1.22.9              |SIDED_SETU|Manifest: NOSIGNATURE         chinadelight-1.0.1-1.20.1.jar                     |China Delight                 |chinadelight                  |1.0.1-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         decorativelattices 1.20.1 - 1.8 Forge.jar         |Decorative Lattices           |decorativelattices            |1.20.1              |SIDED_SETU|Manifest: NOSIGNATURE         mixinextras-forge-0.2.0.jar                       |MixinExtras                   |mixinextras                   |0.2.0               |SIDED_SETU|Manifest: NOSIGNATURE         copper_spikes-2.0.0.jar                           |Copper Spikes                 |copper_spikes                 |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         alexstrade-1.0.0-1.20.1.jar                       |Alex's Trade                  |alexstrade                    |1.0.0-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         storagedelight-24.12.15-1.20-forge.jar            |Storage Delight               |storagedelight                |24.12.15-1.20-forge |SIDED_SETU|Manifest: NOSIGNATURE         sophisticatedbackpacks-1.20.1-3.20.17.1150.jar    |Sophisticated Backpacks       |sophisticatedbackpacks        |3.20.17.1150        |SIDED_SETU|Manifest: NOSIGNATURE         Skay's Flowery 1.0.jar                            |Skay's Flowery                |skaysflowery                  |1.0                 |SIDED_SETU|Manifest: NOSIGNATURE         mcw-doors-1.1.1forge-mc1.20.1.jar                 |Macaw's Doors                 |mcwdoors                      |1.1.1               |SIDED_SETU|Manifest: NOSIGNATURE         DragNs_Livestock_Overhaul-1.20.1-1.7.jar          |DragN's Livestock Overhaul!   |dragnlivestock                |1.7                 |SIDED_SETU|Manifest: NOSIGNATURE         firearrows-1.20.1-12-forge.jar                    |FireArrows                    |firearrows                    |1.20.1-12-forge     |SIDED_SETU|Manifest: NOSIGNATURE         italydelight-1.0.3-1.20.1.jar                     |Italy Delight                 |italydelight                  |1.0.3-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         farmersplus-1.0.3.jar                             |Farmer's Plus                 |farmersplus                   |1.0.3               |SIDED_SETU|Manifest: NOSIGNATURE         chipped-forge-1.20.1-3.0.7.jar                    |Chipped                       |chipped                       |3.0.7               |SIDED_SETU|Manifest: NOSIGNATURE         paldelight-1.20.1-1.1.0.jar                       |Palestinian Delight           |paldelight                    |1.20.1-1.1.0        |SIDED_SETU|Manifest: NOSIGNATURE         mcw-bridges-3.0.0-mc1.20.1forge.jar               |Macaw's Bridges               |mcwbridges                    |3.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         FarmersDelight-1.20.1-1.2.6.jar                   |Farmer's Delight              |farmersdelight                |1.20.1-1.2.6        |SIDED_SETU|Manifest: NOSIGNATURE         casualness_delight-1.20.1-0.4n.jar                |Casualness Delight            |casualness_delight            |1.20.1-0.4n         |SIDED_SETU|Manifest: NOSIGNATURE         supplementaries-1.20-3.1.11.jar                   |Supplementaries               |supplementaries               |1.20-3.1.11         |SIDED_SETU|Manifest: NOSIGNATURE         rusticdelight-forge-1.20.1-1.3.0.jar              |Rustic Delight                |rusticdelight                 |1.3.0               |SIDED_SETU|Manifest: NOSIGNATURE         cuisinedelight-1.1.16.jar                         |Cuisine Delight               |cuisinedelight                |1.1.16              |SIDED_SETU|Manifest: NOSIGNATURE         culturaldelights-0.16.1.jar                       |Cultural Delights             |culturaldelights              |0.16.1              |SIDED_SETU|Manifest: NOSIGNATURE         dumplings_delight-1.2.1.jar                       |DumplingsDelight              |dumplings_delight             |1.2.1               |SIDED_SETU|Manifest: NOSIGNATURE         SeedDelight-NeoorForge-1.20.1-1.0.1.jar           |Seed Delight                  |seeddelight                   |1.20.1-0.1          |SIDED_SETU|Manifest: NOSIGNATURE         FarmersStructures-1.0.3-1.20.jar                  |FarmersStructures             |farmers_structures            |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         largemeals-1.20.1-1.3.0.jar                       |Large Meals                   |largemeals                    |1.20.1-1.3.0        |SIDED_SETU|Manifest: NOSIGNATURE         DustrialDecor-1.3.5-1.20.jar                      |'Dustrial Decor               |dustrial_decor                |1.3.2               |SIDED_SETU|Manifest: NOSIGNATURE         mcw-fences-1.1.2-mc1.20.1forge.jar                |Macaw's Fences and Walls      |mcwfences                     |1.1.2               |SIDED_SETU|Manifest: NOSIGNATURE         farmers_delight_christmas_edition-V.0.96.8-forge-1|Farmers Delight Christmas edit|farmers_delight_christmas_edit|1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         untameddelight-1.20.1-1.1.0.jar                   |Untamed Delight               |untameddelight                |1.20.1-1.0.0        |SIDED_SETU|Manifest: NOSIGNATURE         suppsquared-1.20-1.1.18.jar                       |Supplementaries Squared       |suppsquared                   |1.20-1.1.18         |SIDED_SETU|Manifest: NOSIGNATURE         growthcraft-deco-1.20.1-9.0.3.jar                 |Growthcraft Decorations       |growthcraft_deco              |9.0.3               |SIDED_SETU|Manifest: NOSIGNATURE         collective-1.20.1-7.87.jar                        |Collective                    |collective                    |7.87                |SIDED_SETU|Manifest: NOSIGNATURE         usadelight-1.0.2-1.20.1.jar                       |USA Delight                   |usadelight                    |1.0.2-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         DramaticDoors-QuiFabrge-1.20.1-3.2.8.jar          |Dramatic Doors                |dramaticdoors                 |1.20.1-3.2.8        |SIDED_SETU|Manifest: NOSIGNATURE         material_decorations-forge-1.20.-1.20.2-2.0.9.jar |Material Decorations          |material_decorations          |2.0.9               |SIDED_SETU|Manifest: NOSIGNATURE         resourcefullib-forge-1.20.1-2.1.29.jar            |Resourceful Lib               |resourcefullib                |2.1.29              |SIDED_SETU|Manifest: NOSIGNATURE         architectury-9.2.14-forge.jar                     |Architectury                  |architectury                  |9.2.14              |SIDED_SETU|Manifest: NOSIGNATURE         allthetrims-3.4.3-forge+1.20.1.jar                |AllTheTrims                   |allthetrims                   |3.4.3               |SIDED_SETU|Manifest: NOSIGNATURE         furnish-26-forge.jar                              |Furnish                       |furnish                       |26                  |SIDED_SETU|Manifest: NOSIGNATURE         ls_furniture-1.0.3-SNAPSHOT-1.20.1-Forge.jar      |LYIVX's Furniture Mod         |ls_furniture                  |1.0.3-SNAPSHOT      |SIDED_SETU|Manifest: NOSIGNATURE         bamboodelight-1.0.5.1-1.20.1.jar                  |Bamboo Delight                |bamboodelight                 |1.0.5.1-1.20.1      |SIDED_SETU|Manifest: NOSIGNATURE         monolib-forge-1.20.1-1.4.1.jar                    |MonoLib                       |monolib                       |1.4.1               |SIDED_SETU|Manifest: NOSIGNATURE         pint_deco_1.0.jar                                 |pint_decorations              |pint_decorations              |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         smallships-forge-1.20.1-2.0.0-b1.4.jar            |Small Ships                   |smallships                    |2.0.0-b1.4          |SIDED_SETU|Manifest: NOSIGNATURE         perrys_decorations-1.0.1-forge-1.20.1.jar         |Perrys Decorations            |perrys_decorations            |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         wings-2.1.4-all.jar                               |Wings                         |wings                         |2.1.4               |SIDED_SETU|Manifest: NOSIGNATURE         lemoned-1.0.1-1.20.jar                            |Lemoned                       |lemoned                       |1.0.1-1.20          |SIDED_SETU|Manifest: NOSIGNATURE         Festive_Delight_1.3_Forge_1.20.1.jar              |Festive Delight               |festive_delight               |1.3.0               |SIDED_SETU|Manifest: NOSIGNATURE         chaseisframework-1.0.0-forge-1.20.1.jar           |Voidless Framework            |chaseisframework              |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         amendments-1.20-1.2.12.jar                        |Amendments                    |amendments                    |1.20-1.2.12         |SIDED_SETU|Manifest: NOSIGNATURE         veggiesdelight-1.4.2.jar                          |Veggies Delight               |veggiesdelight                |1.4.2               |SIDED_SETU|Manifest: NOSIGNATURE         abyssal_decor_1.20.1_0.1.8.jar                    |Abyssal Decor                 |abyssal_decor                 |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         sereneseasonsdelight-1.0.2-1.20.1.jar             |Serene Seasons Delight        |sereneseasonsdelight          |1.0.2-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         bakeddelight-0.1.2.jar                            |Baked Delight                 |bakeddelight                  |0.1.2               |SIDED_SETU|Manifest: NOSIGNATURE         polishdelight-1.0.0-forge-1.20.1.jar              |Polish Delight                |polishdelight                 |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         journeymap-1.20.1-5.10.3-forge.jar                |Journeymap                    |journeymap                    |5.10.3              |SIDED_SETU|Manifest: NOSIGNATURE         decorative_blocks-forge-1.20.1-4.1.3.jar          |Decorative Blocks             |decorative_blocks             |4.1.3               |SIDED_SETU|Manifest: NOSIGNATURE         Furniture-Beetle-1.20.1-0.7.0.jar                 |Furniture Beetle              |beetle_f                      |0.7.0               |SIDED_SETU|Manifest: NOSIGNATURE         nuts_delight-2.3.0.jar                            |Nuts Delight                  |nuts_delight                  |2.3.0               |SIDED_SETU|Manifest: NOSIGNATURE         meatdelight-1.0.2-1.20.1.jar                      |Meat Delight                  |meatdelight                   |1.0.2-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         CoffeeDelight-Forge-1.20.1-1.4-Fix.jar            |Coffee Delight                |coffee_delight                |1.4                 |SIDED_SETU|Manifest: NOSIGNATURE         moredelight-24.11.06-1.20-forge.jar               |More Delight                  |moredelight                   |24.11.06-1.20-forge |SIDED_SETU|Manifest: NOSIGNATURE         supplementariesdelight-1.1.0-1.20.1.jar           |Supplementaries Delight       |supplementariesdelight        |1.1.0-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         delightfulsandwich-1.20.1.jar                     |Delightful Sandwiches         |delightfulsandwich            |1.20.1              |SIDED_SETU|Manifest: NOSIGNATURE         more_useful_copper-merged-1.20.1-1.2.0.jar        |More Useful Copper            |more_useful_copper            |1.2.0               |SIDED_SETU|Manifest: NOSIGNATURE         moonlight-1.20-2.13.41-forge.jar                  |Moonlight Library             |moonlight                     |1.20-2.13.41        |SIDED_SETU|Manifest: NOSIGNATURE         mysterious_mountain_lib-1.5.17-1.20.1.jar         |Mysterious Mountain Lib       |mysterious_mountain_lib       |1.5.17-1.20.1       |SIDED_SETU|Manifest: NOSIGNATURE         corn_delight-1.1.6-1.20.1.jar                     |Corn Delight                  |corn_delight                  |1.1.6-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         verdant-1.20.1-0.1.0-forge.jar                    |Verdant                       |verdant                       |1.20.1-0.1.0        |SIDED_SETU|Manifest: NOSIGNATURE         mixinsquared-forge-0.1.1.jar                      |MixinSquared                  |mixinsquared                  |0.1.1               |SIDED_SETU|Manifest: NOSIGNATURE         Jade-1.20.1-Forge-11.12.2.jar                     |Jade                          |jade                          |11.12.2+forge       |SIDED_SETU|Manifest: NOSIGNATURE         l2harvester-0.0.4.jar                             |L2Harvester                   |l2harvester                   |0.0.4               |SIDED_SETU|Manifest: NOSIGNATURE         sweetdelight-1.0.4-1.20.1.jar                     |Sweet Delight                 |sweetdelight                  |1.0.4-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         displaydelight-1.2.0.jar                          |Display Delight               |displaydelight                |1.2.0               |SIDED_SETU|Manifest: NOSIGNATURE         packedup-0.5.3-beta.jar                           |Packed Up                     |packedup                      |0.5.3-beta          |SIDED_SETU|Manifest: NOSIGNATURE         material_decorations_levers-forge-1.20-1.20.2-2.0.|Material Decorations Levers   |material_decorations_levers   |2.0.8               |SIDED_SETU|Manifest: NOSIGNATURE         NaturalDecorMod_1.20.1_V1.5.jar                   |Natural Decor Mod             |naturaldecormod               |1.5                 |SIDED_SETU|Manifest: NOSIGNATURE         RecipesLibrary-1.20.1-2.0.1.jar                   |Recipes Library               |recipes_lib                   |2.0.1               |SIDED_SETU|Manifest: NOSIGNATURE         ShippingBin-forge-1.20.1-4.jar                    |ShippingBin                   |shippingbin                   |4                   |SIDED_SETU|Manifest: NOSIGNATURE         naturalistdelight-1.0.3-1.20.1.jar                |Naturalist Delight            |naturalistdelight             |1.0.3-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         Ribbits-1.20.1-Forge-3.0.2.jar                    |Ribbits                       |ribbits                       |1.20.1-Forge-3.0.2  |SIDED_SETU|Manifest: NOSIGNATURE         woodworkers_delight-0.1.0-alpha.jar               |Woodworker's Delight          |woodworkers_delight           |0.1.0               |SIDED_SETU|Manifest: NOSIGNATURE         CroptopiaDelight-1.20.1_1.2.2-forge.jar           |Croptopia Delight             |croptopia_delight             |1.0                 |SIDED_SETU|Manifest: NOSIGNATURE         barbequesdelight-1.0.5.jar                        |Barbeque's Delight            |barbequesdelight              |1.0.5               |SIDED_SETU|Manifest: NOSIGNATURE         hotdog_delight-0.3.jar                            |Hotdog Delight                |hotdog_delight                |1.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         decorative_storage-2.1212-forge-1.20.1.jar        |Decorative Storage            |decorative_storage            |2.1212              |SIDED_SETU|Manifest: NOSIGNATURE         surfacemushrooms-1.20.1-3.5.jar                   |Surface Mushrooms             |surfacemushrooms              |3.5                 |SIDED_SETU|Manifest: NOSIGNATURE         miners_delight-1.20.1-1.2.3.jar                   |Miner's Delight               |miners_delight                |1.20.1-1.2.3        |SIDED_SETU|Manifest: NOSIGNATURE         Delightful-1.20.1-3.6.1.jar                       |Delightful                    |delightful                    |3.6.1               |SIDED_SETU|Manifest: NOSIGNATURE         farmers_croptopia-1.20.1-2.0.0.jar                |Farmer's Croptopia            |farmers_croptopia             |2.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         alexsdelight-1.5.jar                              |Alex's Delight                |alexsdelight                  |1.5                 |SIDED_SETU|Manifest: NOSIGNATURE         FastFoodDelightUnofficial-1.20.1-1.0.4.jar        |FastFood Delight Unofficial   |fastfooddelight               |1.20.1-1.0.4        |SIDED_SETU|Manifest: NOSIGNATURE         apexcore-1.20.1-10.0.0.jar                        |ApexCore                      |apexcore                      |10.0.0              |SIDED_SETU|Manifest: NOSIGNATURE         fantasyfurniture-1.20.1-9.0.0.jar                 |Fantasy's Furniture           |fantasyfurniture              |9.0.0               |SIDED_SETU|Manifest: NOSIGNATURE         FlowerSeeds2-1.20.1-1.1.2.jar                     |Flower Seeds 2                |flowerseeds                   |1.1.2               |SIDED_SETU|Manifest: NOSIGNATURE         FlowerSeeds2BiomesOPlenty-1.20.1-1.1.2.jar        |Flower Seeds 2 Biomes O Plenty|flowerseedsbop                |1.1.2               |SIDED_SETU|Manifest: NOSIGNATURE         niftyShipsBiomesOPlenty-FORGE-1.20.1-1.0.4.jar    |aleki's Nifty Ships (Biomes O'|alekishipsbop                 |1.0.4               |SIDED_SETU|Manifest: NOSIGNATURE         bushierflowers-0.0.3-1.20.1.jar                   |Bushier Flowers               |bushierflowers                |0.0.3-1.20.1        |SIDED_SETU|Manifest: NOSIGNATURE         CrabbersDelight-1.20.1-1.1.7d.jar                 |Crabber's Delight             |crabbersdelight               |1.1.7d              |SIDED_SETU|Manifest: NOSIGNATURE         chisels-and-bits-forge-1.4.148.jar                |chisels-and-bits              |chiselsandbits                |1.4.148             |SIDED_SETU|Manifest: NOSIGNATURE         trimmable_tools-forge-2.0.5.jar                   |Trimmable Tools               |trimmable_tools               |2.0.5               |SIDED_SETU|Manifest: NOSIGNATURE     Crash Report UUID: bd833d80-7dd2-4ae6-b2b9-bbc8191e88ca     FML: 47.3     Forge: net.minecraftforge:47.3.0
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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