Jump to content

Recommended Posts

Posted

I am using Forge for my mod, and I need to use infinite terrain indicies. I have a 256x256 image, png format, with my two existing ores in the upper left. I assume indicies go:

0-1-2 ... 15

16 etc...

Here's my mod_BetterWiring:

 

 

package net.minecraft.src;

 

import java.util.Random;

 

import net.minecraft.src.BetterWiring.Blocks.*;

//import net.minecraft.src.BetterWiring.Items.ItemVanadiumOxide;

import net.minecraft.src.forge.*;

 

public class mod_BetterWiring extends BaseMod {

public static final Block oreLead = new BlockLeadOre(205,0).setHardness(3F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreLead");

public static final Block oreSulfur = new BlockSulfurOre(206, 1).setHardness(3F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreLead");

//public static final Block oreVanadium = new BlockVanadiumOre(205, 0).setHardness(4F).setResistance(8F).setStepSound(Block.soundStoneFootstep).setBlockName("oreVanadium");

//public static final Item VO2 = (new ItemVanadiumOxide(127)).setIconIndex(0).setItemName("vanadiumOxide");

@Override

public String getVersion() {

return "Private Test for 1.2.5";

}

public mod_BetterWiring(){

}

 

@Override

public void load() {

    MinecraftForgeClient.preloadTexture("/BetterWiring/Blocks/terrain.png");

//MinecraftForgeClient.preloadTexture("/BetterWiring/Items/items.png");

ModLoader.registerBlock(oreLead);

ModLoader.addName(oreLead,"Lead Ore");

ModLoader.registerBlock(oreSulfur);

ModLoader.addName(oreSulfur, "Sulfur Ore");

//Test recipes

ModLoader.addRecipe(new ItemStack(oreLead, 1), new Object[] {"XX", Character.valueOf('X'), Item.stick});

ModLoader.addRecipe(new ItemStack(oreSulfur, 1), new Object[] {"X X", Character.valueOf('X'), Item.stick});

System.out.println("Loaded");

}

    public void generateSurface(World world, Random rand, int chunkX, int chunkZ){ 

    for(int l = 0; l < 9; l++){                               

    int i1 = chunkX + rand.nextInt(16);                               

    int j1 = 15+rand.nextInt(27);                               

    int k1 = chunkZ + rand.nextInt(16);

    new WorldGenMinable(oreLead.blockID, 3).generate(world, rand, i1, j1, k1);

    }

    //for(int l = 0; l < 9; l++){                               

    // int i1 = chunkX + rand.nextInt(16);                               

    // int j1 = 25+rand.nextInt(30);                               

    // int k1 = chunkZ + rand.nextInt(16);

    // new WorldGenMinable(oreSulfur.blockID, 4).generate(world, rand, i1, j1, k1);

    //}

   

    }

 

}

 

 

 

and my BlockLeadOre:

 

package net.minecraft.src.BetterWiring.Blocks;

 

import java.util.Random;

 

import net.minecraft.src.Block;

import net.minecraft.src.Material;

import net.minecraft.src.forge.*;

 

 

public class BlockLeadOre extends Block implements ITextureProvider{

public BlockLeadOre(int i, int j){             

super(i, j, Material.rock);       

}

    public int quantityDropped(Random random){               

    return 1;       

    }

    public String getTextureFile(){

    return "/BetterWiring/Blocks/terrain.png";

    }

}

 

I am really, really lost with this, the textures are just white with black dots.

 

So, what would happen if I did push that shiny red button over there? ... Really? ... Can I try it? ... Damn.

Posted

Do I have to make the folders in the jar?

So, what would happen if I did push that shiny red button over there? ... Really? ... Can I try it? ... Damn.

Posted

You can use the free software www.7zip.org to open the jar and drag all your textures into the jar. It's better to create a folder inside the jar so it's easier to find your textures among thousands of other files inside, but it doesn't really matter. Just make sure the path is correct.

 

For example, my mod's name is ICBM. So I have a folder called "ICBM" in the jar which contains all my textures. In my case the path of the texture will be "/ICBM/XXX.png".

 

There shouldn't be a problem after doing it correctly.

Posted

You can use the free software www.7zip.org to open the jar and drag all your textures into the jar. It's better to create a folder inside the jar so it's easier to find your textures among thousands of other files inside, but it doesn't really matter. Just make sure the path is correct.

 

For example, my mod's name is ICBM. So I have a folder called "ICBM" in the jar which contains all my textures. In my case the path of the texture will be "/ICBM/XXX.png".

 

There shouldn't be a problem after doing it correctly.

 

What he said, but make sure you give your mod's folder a non-generic name or you'll end up like me, with probably at least 200 lines that have to be changed to rename the freaking folder.  :-\

I accidentally the everything then NullPointerException.

Posted

You can use the free software www.7zip.org to open the jar and drag all your textures into the jar. It's better to create a folder inside the jar so it's easier to find your textures among thousands of other files inside, but it doesn't really matter. Just make sure the path is correct.

 

For example, my mod's name is ICBM. So I have a folder called "ICBM" in the jar which contains all my textures. In my case the path of the texture will be "/ICBM/XXX.png".

 

There shouldn't be a problem after doing it correctly.

 

What he said, but make sure you give your mod's folder a non-generic name or you'll end up like me, with probably at least 200 lines that have to be changed to rename the freaking folder.  :-\

 

In my mod I created a static variable in my BaseMod that gives the texture directories to all items and blocks. I could just change the variable and all the texture paths will change. You should try doing that next time. :P

Posted

You can use the free software www.7zip.org to open the jar and drag all your textures into the jar. It's better to create a folder inside the jar so it's easier to find your textures among thousands of other files inside, but it doesn't really matter. Just make sure the path is correct.

 

For example, my mod's name is ICBM. So I have a folder called "ICBM" in the jar which contains all my textures. In my case the path of the texture will be "/ICBM/XXX.png".

 

There shouldn't be a problem after doing it correctly.

 

What he said, but make sure you give your mod's folder a non-generic name or you'll end up like me, with probably at least 200 lines that have to be changed to rename the freaking folder.  :-\

 

In my mod I created a static variable in my BaseMod that gives the texture directories to all items and blocks. I could just change the variable and all the texture paths will change. You should try doing that next time. :P

 

Yeah my problem is I just started learning from the beginning with a random idea that I've slowly built into what I have now. I had no clue what I was doing that far back, lol. Even after a few sessions of cleaning things up, I can still look back at some earlier stuff and see the learning progression...

 

Really, if I need to, I could just make a new item that does absolutely nothing different from the classless items except loads textures from a forge spritesheet, but I've been both lazy and busy...

I accidentally the everything then NullPointerException.

Posted

You can use the free software www.7zip.org to open the jar and drag all your textures into the jar. It's better to create a folder inside the jar so it's easier to find your textures among thousands of other files inside, but it doesn't really matter. Just make sure the path is correct.

 

For example, my mod's name is ICBM. So I have a folder called "ICBM" in the jar which contains all my textures. In my case the path of the texture will be "/ICBM/XXX.png".

 

There shouldn't be a problem after doing it correctly.

 

What he said, but make sure you give your mod's folder a non-generic name or you'll end up like me, with probably at least 200 lines that have to be changed to rename the freaking folder.  :-\

 

In my mod I created a static variable in my BaseMod that gives the texture directories to all items and blocks. I could just change the variable and all the texture paths will change. You should try doing that next time. :P

 

Yeah my problem is I just started learning from the beginning with a random idea that I've slowly built into what I have now. I had no clue what I was doing that far back, lol. Even after a few sessions of cleaning things up, I can still look back at some earlier stuff and see the learning progression...

 

Really, if I need to, I could just make a new item that does absolutely nothing different from the classless items except loads textures from a forge spritesheet, but I've been both lazy and busy...

 

Hmm where is your mod? I didn't see it yet. Give me a link to a forum post or something. I would like to check it out.

Posted

So if the texture files were in the net.minecraft.src.BetterWiring.Blocks package, I would have to make (in the client jar) /BetterWiring/Blocks/terrain.png

So, what would happen if I did push that shiny red button over there? ... Really? ... Can I try it? ... Damn.

Posted

YAY! It works!

But now I have a new problem... The lead ore is called sulfur ore, even though I used the ModLoader.addName(leadOre, "Lead Ore");

Help!

So, what would happen if I did push that shiny red button over there? ... Really? ... Can I try it? ... Damn.

Posted

YAY! It works!

But now I have a new problem... The lead ore is called sulfur ore, even though I used the ModLoader.addName(leadOre, "Lead Ore");

Help!

Sounds like it is being redefined later.  Cannot help without seeing source code.

Posted

How do I do that? I also need to make a block with a tile entity so that it can hold my electronic components.

So, what would happen if I did push that shiny red button over there? ... Really? ... Can I try it? ... Damn.

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

×
×
  • Create New...

Important Information

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