Jump to content

[1.7.10] [SOLVED] Custom model is invisible


Recommended Posts

I literally have no idea what I did wrong... It does error with the texture though.

 

The Error:

20:49:40] [server thread/ERROR] [FML]: A TileEntity type com.fire.testmod.TileEntity.TileEntityTestCustomModel has throw an exception trying to write state. It will not persist. Report this to the mod author
java.lang.RuntimeException: class com.fire.testmod.TileEntity.TileEntityTestCustomModel is missing a mapping! This is a bug!
at net.minecraft.tileentity.TileEntity.writeToNBT(TileEntity.java:96) ~[TileEntity.class:?]
at net.minecraft.world.chunk.storage.AnvilChunkLoader.writeChunkToNBT(AnvilChunkLoader.java:395) [AnvilChunkLoader.class:?]
at net.minecraft.world.chunk.storage.AnvilChunkLoader.saveChunk(AnvilChunkLoader.java:204) [AnvilChunkLoader.class:?]
at net.minecraft.world.gen.ChunkProviderServer.safeSaveChunk(ChunkProviderServer.java:287) [ChunkProviderServer.class:?]
at net.minecraft.world.gen.ChunkProviderServer.saveChunks(ChunkProviderServer.java:340) [ChunkProviderServer.class:?]
at net.minecraft.world.WorldServer.saveAllChunks(WorldServer.java:863) [WorldServer.class:?]
at net.minecraft.server.MinecraftServer.saveAllWorlds(MinecraftServer.java:370) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:405) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.stopServer(IntegratedServer.java:266) [integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:538) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) [MinecraftServer$2.class:?]

 

I am on my journey of making a remake of matmos, as explained here.

Link to comment
Share on other sites

I literally have no idea what I did wrong... It does error with the texture though.

 

The Error:

20:49:40] [server thread/ERROR] [FML]: A TileEntity type com.fire.testmod.TileEntity.TileEntityTestCustomModel has throw an exception trying to write state. It will not persist. Report this to the mod author
java.lang.RuntimeException: class com.fire.testmod.TileEntity.TileEntityTestCustomModel is missing a mapping! This is a bug!
at net.minecraft.tileentity.TileEntity.writeToNBT(TileEntity.java:96) ~[TileEntity.class:?]
at net.minecraft.world.chunk.storage.AnvilChunkLoader.writeChunkToNBT(AnvilChunkLoader.java:395) [AnvilChunkLoader.class:?]
at net.minecraft.world.chunk.storage.AnvilChunkLoader.saveChunk(AnvilChunkLoader.java:204) [AnvilChunkLoader.class:?]
at net.minecraft.world.gen.ChunkProviderServer.safeSaveChunk(ChunkProviderServer.java:287) [ChunkProviderServer.class:?]
at net.minecraft.world.gen.ChunkProviderServer.saveChunks(ChunkProviderServer.java:340) [ChunkProviderServer.class:?]
at net.minecraft.world.WorldServer.saveAllChunks(WorldServer.java:863) [WorldServer.class:?]
at net.minecraft.server.MinecraftServer.saveAllWorlds(MinecraftServer.java:370) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:405) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.stopServer(IntegratedServer.java:266) [integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:538) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) [MinecraftServer$2.class:?]

 

I am on my journey of making a remake of matmos, as explained here.

Link to comment
Share on other sites

These are all of my other things:

 

MainRegistry.java

package com.fire.testmod;

import com.fire.testmod.Blocks.TestCustomModel;
import com.fire.testmod.Blocks.TestMultisidedBlock;
import com.fire.testmod.Blocks.TestOre;
import com.fire.testmod.Items.TestIngot;
import com.fire.testmod.Items.TestItem;
import com.fire.testmod.Proxy.CommonProxy;
import com.fire.testmod.TileEntity.TileEntityTestCustomModel;

import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
import cpw.mods.fml.common.Mod.Instance;
import cpw.mods.fml.common.SidedProxy;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import cpw.mods.fml.common.registry.GameRegistry;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;

@Mod(modid = Strings.MODID, name = Strings.NAME, version = Strings.VERSION)
public class MainRegistry {

// Proxy
@SidedProxy(clientSide="com.fire.testmod.Proxy.ClientProxy", serverSide="com.fire.testmod.Proxy.CommonProxy")
public static CommonProxy proxy;

// Instance
@Instance(Strings.MODID)
public static MainRegistry instance = new MainRegistry();

//////////////////// -- Names -- ////////////////////
// Items
public static Item TestItem;
public static Item TestIngot;

// Tools

// Armour

// Blocks
public static Block TestOre;
public static Block TestMultisidedBlock;
public static Block TestCustomModel;

// Other

@EventHandler
public void PreLoad(FMLPreInitializationEvent event){
	//////////////////// -- Creation -- ////////////////////
	// Items
	TestItem = new TestItem().setUnlocalizedName("TestItem").setTextureName(Strings.MODID + ":TestItem").setCreativeTab(CreativeTabs.tabMaterials);
	TestIngot = new TestIngot().setUnlocalizedName("TestIngot").setTextureName(Strings.MODID + ":TestIngot").setCreativeTab(CreativeTabs.tabMaterials);

	// Tools

	// Armour

	// Blocks
	TestOre = new TestOre(Material.rock).setBlockName("TestOre").setBlockTextureName(Strings.MODID + ":TestOre").setCreativeTab(CreativeTabs.tabBlock);
	TestMultisidedBlock = new TestMultisidedBlock(Material.gourd).setBlockName("TestMultisidedBlock").setBlockTextureName(Strings.MODID + ":TestMultisidedBlock").setCreativeTab(CreativeTabs.tabBlock);
	TestCustomModel = new TestCustomModel(Material.rock).setBlockName("TestCustomModel").setBlockTextureName(Strings.MODID + ":textures/models/TestCustomModel.png").setCreativeTab(CreativeTabs.tabBlock);

	// Other

	//////////////////// -- Registering -- ////////////////////
	// Items
	GameRegistry.registerItem(TestItem, TestItem.getUnlocalizedName());
	GameRegistry.registerItem(TestIngot, TestIngot.getUnlocalizedName());

	// Tools

	// Armour

	// Blocks
	GameRegistry.registerBlock(TestOre, TestOre.getUnlocalizedName());
	GameRegistry.registerBlock(TestMultisidedBlock, TestMultisidedBlock.getUnlocalizedName());
	GameRegistry.registerBlock(TestCustomModel, TestCustomModel.getUnlocalizedName());
	//GameRegistry.registerTileEntity(TileEntityTestCustomModel.class, "Test Custom Model");

	// Other

}

@EventHandler
public void Load(FMLInitializationEvent event){
	//////////////////// -- Crafting -- ////////////////////
	// Items
	GameRegistry.addRecipe(new ItemStack(TestItem, 4), new Object[]{"T", "T", 'T', TestIngot});

	// Tools

	// Armour

	// Blocks

	// Other

	//////////////////// -- Smelting -- ////////////////////
	// Items
	GameRegistry.addSmelting(TestOre, new ItemStack(TestIngot), 0.7F);

	// Tools

	// Armour

	// Blocks

	// Other
}

@EventHandler
public void PostLoad(FMLPostInitializationEvent event){

}
}

 

TileEntityTestCustomModel.java

package com.fire.testmod.TileEntity;

import net.minecraft.tileentity.TileEntity;

public class TileEntityTestCustomModel extends TileEntity {

}

 

RenderTestCustomModel.java

package com.fire.testmod.Renderers;

import org.lwjgl.opengl.GL11;

import com.fire.testmod.Strings;
import com.fire.testmod.Models.ModelTestCustomModel;

import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraft.entity.Entity;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.ResourceLocation;

public class RenderTestCustomModel extends TileEntitySpecialRenderer {

ResourceLocation texture = new ResourceLocation(Strings.MODID + ":textures/models/TestCustomModel.png");

private ModelTestCustomModel model;

public RenderTestCustomModel(){
	this.model = new ModelTestCustomModel();
}

@Override
public void renderTileEntityAt(TileEntity entity, double x, double y, double z, float f) {
	GL11.glPushMatrix();
		GL11.glTranslated(x + 0.5, y + 1.5, z + 0.5);
		GL11.glRotated(180, 0, 0, 1);

		this.bindTexture(texture);

		GL11.glPushMatrix();
			this.model.render((Entity)null, 0, -0.1F, 0, 0, 0, 0.0625F);
		GL11.glPopMatrix();
	GL11.glPopMatrix();
}

}

 

ModelTestCustomModel.java

package com.fire.testmod.Models;

import net.minecraft.client.model.ModelBase;
import net.minecraft.client.model.ModelRenderer;
import net.minecraft.entity.Entity;

public class ModelTestCustomModel extends ModelBase
{
  //fields
    ModelRenderer Shape2;
  
  public ModelTestCustomModel()
  {
    textureWidth = 32;
    textureHeight = 32;
    
      Shape2 = new ModelRenderer(this, 0, 0);
      Shape2.addBox(0F, 0F, 0F, 1, 16, 16);
      Shape2.setRotationPoint(0F, 8F, -8F);
      Shape2.setTextureSize(32, 32);
      Shape2.mirror = true;
      setRotation(Shape2, 0F, 0F, 0F);
  }
  
  public void render(Entity entity, float f, float f1, float f2, float f3, float f4, float f5)
  {
    super.render(entity, f, f1, f2, f3, f4, f5);
    setRotationAngles(entity, f, f1, f2, f3, f4, f5);
    Shape2.render(f5);
  }
  
  private void setRotation(ModelRenderer model, float x, float y, float z)
  {
    model.rotateAngleX = x;
    model.rotateAngleY = y;
    model.rotateAngleZ = z;
  }
  
  public void setRotationAngles(Entity entity, float f, float f1, float f2, float f3, float f4, float f5)
  {
    super.setRotationAngles(f, f1, f2, f3, f4, f5, entity);
  }

}

 

TestCustomModel.java

package com.fire.testmod.Blocks;

import com.fire.testmod.TileEntity.TileEntityTestCustomModel;

import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;

public class TestCustomModel extends BlockContainer {

public TestCustomModel(Material material) {
	super(material);
	this.setHardness(5.0F);
	this.setResistance(0.5F);
}

public int getRenderType(){
	return -1;
}

public boolean isOpaqueCube(){
	return false;
}

public boolean renderAsNormalBlock(){
	return false;
}

@Override
public TileEntity createNewTileEntity(World p_149915_1_, int p_149915_2_) {
	return new TileEntityTestCustomModel();
}

}

 

Client Proxy

package com.fire.testmod.Proxy;

import com.fire.testmod.Renderers.RenderTestCustomModel;
import com.fire.testmod.TileEntity.TileEntityTestCustomModel;

import cpw.mods.fml.client.registry.ClientRegistry;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;

public class ClientProxy extends CommonProxy {
public void registerRenderInfo(){
	TileEntitySpecialRenderer render0 = new RenderTestCustomModel();
	ClientRegistry.bindTileEntitySpecialRenderer(TileEntityTestCustomModel.class, render0);
}
}

I am on my journey of making a remake of matmos, as explained here.

Link to comment
Share on other sites

These are all of my other things:

 

MainRegistry.java

package com.fire.testmod;

import com.fire.testmod.Blocks.TestCustomModel;
import com.fire.testmod.Blocks.TestMultisidedBlock;
import com.fire.testmod.Blocks.TestOre;
import com.fire.testmod.Items.TestIngot;
import com.fire.testmod.Items.TestItem;
import com.fire.testmod.Proxy.CommonProxy;
import com.fire.testmod.TileEntity.TileEntityTestCustomModel;

import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
import cpw.mods.fml.common.Mod.Instance;
import cpw.mods.fml.common.SidedProxy;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import cpw.mods.fml.common.registry.GameRegistry;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;

@Mod(modid = Strings.MODID, name = Strings.NAME, version = Strings.VERSION)
public class MainRegistry {

// Proxy
@SidedProxy(clientSide="com.fire.testmod.Proxy.ClientProxy", serverSide="com.fire.testmod.Proxy.CommonProxy")
public static CommonProxy proxy;

// Instance
@Instance(Strings.MODID)
public static MainRegistry instance = new MainRegistry();

//////////////////// -- Names -- ////////////////////
// Items
public static Item TestItem;
public static Item TestIngot;

// Tools

// Armour

// Blocks
public static Block TestOre;
public static Block TestMultisidedBlock;
public static Block TestCustomModel;

// Other

@EventHandler
public void PreLoad(FMLPreInitializationEvent event){
	//////////////////// -- Creation -- ////////////////////
	// Items
	TestItem = new TestItem().setUnlocalizedName("TestItem").setTextureName(Strings.MODID + ":TestItem").setCreativeTab(CreativeTabs.tabMaterials);
	TestIngot = new TestIngot().setUnlocalizedName("TestIngot").setTextureName(Strings.MODID + ":TestIngot").setCreativeTab(CreativeTabs.tabMaterials);

	// Tools

	// Armour

	// Blocks
	TestOre = new TestOre(Material.rock).setBlockName("TestOre").setBlockTextureName(Strings.MODID + ":TestOre").setCreativeTab(CreativeTabs.tabBlock);
	TestMultisidedBlock = new TestMultisidedBlock(Material.gourd).setBlockName("TestMultisidedBlock").setBlockTextureName(Strings.MODID + ":TestMultisidedBlock").setCreativeTab(CreativeTabs.tabBlock);
	TestCustomModel = new TestCustomModel(Material.rock).setBlockName("TestCustomModel").setBlockTextureName(Strings.MODID + ":textures/models/TestCustomModel.png").setCreativeTab(CreativeTabs.tabBlock);

	// Other

	//////////////////// -- Registering -- ////////////////////
	// Items
	GameRegistry.registerItem(TestItem, TestItem.getUnlocalizedName());
	GameRegistry.registerItem(TestIngot, TestIngot.getUnlocalizedName());

	// Tools

	// Armour

	// Blocks
	GameRegistry.registerBlock(TestOre, TestOre.getUnlocalizedName());
	GameRegistry.registerBlock(TestMultisidedBlock, TestMultisidedBlock.getUnlocalizedName());
	GameRegistry.registerBlock(TestCustomModel, TestCustomModel.getUnlocalizedName());
	//GameRegistry.registerTileEntity(TileEntityTestCustomModel.class, "Test Custom Model");

	// Other

}

@EventHandler
public void Load(FMLInitializationEvent event){
	//////////////////// -- Crafting -- ////////////////////
	// Items
	GameRegistry.addRecipe(new ItemStack(TestItem, 4), new Object[]{"T", "T", 'T', TestIngot});

	// Tools

	// Armour

	// Blocks

	// Other

	//////////////////// -- Smelting -- ////////////////////
	// Items
	GameRegistry.addSmelting(TestOre, new ItemStack(TestIngot), 0.7F);

	// Tools

	// Armour

	// Blocks

	// Other
}

@EventHandler
public void PostLoad(FMLPostInitializationEvent event){

}
}

 

TileEntityTestCustomModel.java

package com.fire.testmod.TileEntity;

import net.minecraft.tileentity.TileEntity;

public class TileEntityTestCustomModel extends TileEntity {

}

 

RenderTestCustomModel.java

package com.fire.testmod.Renderers;

import org.lwjgl.opengl.GL11;

import com.fire.testmod.Strings;
import com.fire.testmod.Models.ModelTestCustomModel;

import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraft.entity.Entity;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.ResourceLocation;

public class RenderTestCustomModel extends TileEntitySpecialRenderer {

ResourceLocation texture = new ResourceLocation(Strings.MODID + ":textures/models/TestCustomModel.png");

private ModelTestCustomModel model;

public RenderTestCustomModel(){
	this.model = new ModelTestCustomModel();
}

@Override
public void renderTileEntityAt(TileEntity entity, double x, double y, double z, float f) {
	GL11.glPushMatrix();
		GL11.glTranslated(x + 0.5, y + 1.5, z + 0.5);
		GL11.glRotated(180, 0, 0, 1);

		this.bindTexture(texture);

		GL11.glPushMatrix();
			this.model.render((Entity)null, 0, -0.1F, 0, 0, 0, 0.0625F);
		GL11.glPopMatrix();
	GL11.glPopMatrix();
}

}

 

ModelTestCustomModel.java

package com.fire.testmod.Models;

import net.minecraft.client.model.ModelBase;
import net.minecraft.client.model.ModelRenderer;
import net.minecraft.entity.Entity;

public class ModelTestCustomModel extends ModelBase
{
  //fields
    ModelRenderer Shape2;
  
  public ModelTestCustomModel()
  {
    textureWidth = 32;
    textureHeight = 32;
    
      Shape2 = new ModelRenderer(this, 0, 0);
      Shape2.addBox(0F, 0F, 0F, 1, 16, 16);
      Shape2.setRotationPoint(0F, 8F, -8F);
      Shape2.setTextureSize(32, 32);
      Shape2.mirror = true;
      setRotation(Shape2, 0F, 0F, 0F);
  }
  
  public void render(Entity entity, float f, float f1, float f2, float f3, float f4, float f5)
  {
    super.render(entity, f, f1, f2, f3, f4, f5);
    setRotationAngles(entity, f, f1, f2, f3, f4, f5);
    Shape2.render(f5);
  }
  
  private void setRotation(ModelRenderer model, float x, float y, float z)
  {
    model.rotateAngleX = x;
    model.rotateAngleY = y;
    model.rotateAngleZ = z;
  }
  
  public void setRotationAngles(Entity entity, float f, float f1, float f2, float f3, float f4, float f5)
  {
    super.setRotationAngles(f, f1, f2, f3, f4, f5, entity);
  }

}

 

TestCustomModel.java

package com.fire.testmod.Blocks;

import com.fire.testmod.TileEntity.TileEntityTestCustomModel;

import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;

public class TestCustomModel extends BlockContainer {

public TestCustomModel(Material material) {
	super(material);
	this.setHardness(5.0F);
	this.setResistance(0.5F);
}

public int getRenderType(){
	return -1;
}

public boolean isOpaqueCube(){
	return false;
}

public boolean renderAsNormalBlock(){
	return false;
}

@Override
public TileEntity createNewTileEntity(World p_149915_1_, int p_149915_2_) {
	return new TileEntityTestCustomModel();
}

}

 

Client Proxy

package com.fire.testmod.Proxy;

import com.fire.testmod.Renderers.RenderTestCustomModel;
import com.fire.testmod.TileEntity.TileEntityTestCustomModel;

import cpw.mods.fml.client.registry.ClientRegistry;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;

public class ClientProxy extends CommonProxy {
public void registerRenderInfo(){
	TileEntitySpecialRenderer render0 = new RenderTestCustomModel();
	ClientRegistry.bindTileEntitySpecialRenderer(TileEntityTestCustomModel.class, render0);
}
}

I am on my journey of making a remake of matmos, as explained here.

Link to comment
Share on other sites

Show your main mod class and your proxy classes.

 

That said, this:

	public static void init(FMLInitializationEvent event){
	GameRegistry.registerTileEntity(TileEntityTestCustomModel.class, "TestCustomModel");
}

Belongs nowhere in the TileEntityTestCustom class.  It belongs in your main class along side all your other registration code.

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

 

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

 

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

Link to comment
Share on other sites

Show your main mod class and your proxy classes.

 

That said, this:

	public static void init(FMLInitializationEvent event){
	GameRegistry.registerTileEntity(TileEntityTestCustomModel.class, "TestCustomModel");
}

Belongs nowhere in the TileEntityTestCustom class.  It belongs in your main class along side all your other registration code.

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

 

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

 

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

Link to comment
Share on other sites

Show your main mod class and your proxy classes.

 

That said, this:

	public static void init(FMLInitializationEvent event){
	GameRegistry.registerTileEntity(TileEntityTestCustomModel.class, "TestCustomModel");
}

Belongs nowhere in the TileEntityTestCustom class.  It belongs in your main class along side all your other registration code.

 

I just edited it with the client proxy now as well for you

I am on my journey of making a remake of matmos, as explained here.

Link to comment
Share on other sites

Show your main mod class and your proxy classes.

 

That said, this:

	public static void init(FMLInitializationEvent event){
	GameRegistry.registerTileEntity(TileEntityTestCustomModel.class, "TestCustomModel");
}

Belongs nowhere in the TileEntityTestCustom class.  It belongs in your main class along side all your other registration code.

 

I just edited it with the client proxy now as well for you

I am on my journey of making a remake of matmos, as explained here.

Link to comment
Share on other sites

public static MainRegistry instance = new MainRegistry();

 

No, bad modder.  Do not instanciate your own main class.  That's what the @instance annotation is for, so Forge instantiates your class.

 

//GameRegistry.registerTileEntity(TileEntityTestCustomModel.class, "Test Custom Model");

 

Why is this line commented?

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

 

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

 

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

Link to comment
Share on other sites

public static MainRegistry instance = new MainRegistry();

 

No, bad modder.  Do not instanciate your own main class.  That's what the @instance annotation is for, so Forge instantiates your class.

 

//GameRegistry.registerTileEntity(TileEntityTestCustomModel.class, "Test Custom Model");

 

Why is this line commented?

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

 

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

 

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

Link to comment
Share on other sites

It's commented because I honestly have no idea what to do now. I was just testing it. Also, I do have @Instance. What should I do instead of what I am doing?

 

@Instance(Strings.MODID)
public static MainRegistry instance = new MainRegistry();

I am on my journey of making a remake of matmos, as explained here.

Link to comment
Share on other sites

It's commented because I honestly have no idea what to do now. I was just testing it. Also, I do have @Instance. What should I do instead of what I am doing?

 

@Instance(Strings.MODID)
public static MainRegistry instance = new MainRegistry();

I am on my journey of making a remake of matmos, as explained here.

Link to comment
Share on other sites

There are so many different tutorials about making Custom Models that I have no idea what to believe. Every single tutorial brings me to this same problem though: The block is invisible. I got it to work ONCE, and now It's not working again.

I am on my journey of making a remake of matmos, as explained here.

Link to comment
Share on other sites

There are so many different tutorials about making Custom Models that I have no idea what to believe. Every single tutorial brings me to this same problem though: The block is invisible. I got it to work ONCE, and now It's not working again.

I am on my journey of making a remake of matmos, as explained here.

Link to comment
Share on other sites

Also, I do have @Instance. What should I do instead of what I am doing?

 

@Instance(Strings.MODID)
public static MainRegistry instance = new MainRegistry();

 

Your code: WRONG

 

Correct code:

 

@Instance(Strings.MODID)
public static MainRegistry instance; //FORGE DOES IT FOR YOU

 

As for the TE registration, what you have is (essentially) correct.

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

 

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

 

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

Link to comment
Share on other sites

Also, I do have @Instance. What should I do instead of what I am doing?

 

@Instance(Strings.MODID)
public static MainRegistry instance = new MainRegistry();

 

Your code: WRONG

 

Correct code:

 

@Instance(Strings.MODID)
public static MainRegistry instance; //FORGE DOES IT FOR YOU

 

As for the TE registration, what you have is (essentially) correct.

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

 

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

 

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

Link to comment
Share on other sites

You never call

registerRenderInfo

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

 

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

 

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

Link to comment
Share on other sites

You never call

registerRenderInfo

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

 

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

 

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

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

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

×
×
  • Create New...

Important Information

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