Jump to content

[1.8] Block-Break particle


Bektor

Recommended Posts

Hello,

 

I created a block that is using the model from the chest, but now I have one question: How to set the texture for the particles that appears if you break a block to "planks_oak"?

I hope here someone can help me, because on minecraft.de they tried to help me, but nothing seems to work...

 

So this are my .json files:

blockstates:

{
    "variants": {
        "normal": { "model": "minecraft:chest" }
    }
}

 

models/block:

{
    "parent": "block/cube-all",
    "textures":
    {
    	"all": "minecraft:blocks/chest"
    }
}

 

models/item:

{
    "parent": "builtin/entity",
    "textures":
    {
    	"layer0": "minecraft:planks_oak"
    },
    "display":
    {
    	"thirdperson":
    	{
    		"rotation": [ 10, -45, 170 ],
    		"translation": [ 0, 1.5, -2.75 ],
    		"scale": [ 0.375, 0.375, 0.375 ]
    	}
    }
}

 

I never expected that I would ever have 3 problems at the same time at two different projects...  ;D (MC-Mod, my 2d game with a modding api)

 

 

Bektor

Developer of Primeval Forest.

Link to comment
Share on other sites

TGG has a working example here: https://github.com/TheGreyGhost/MinecraftByExample

 

The particular file you want to look at is this one: https://github.com/TheGreyGhost/MinecraftByExample/blob/master/src/main/resources/assets/minecraftbyexample/models/block/mbe01_block_simple_model.json

 

"particle": "blocks/lapis_block"

Link to comment
Share on other sites

It's because the block/cube_all model that you are using already has the particle texture defined.

block/cube_all:
{
    "parent": "block/cube",
    "textures": {
        "particle": "#all",
        "down": "#all",
        "up": "#all",
        "north": "#all",
        "east": "#all",
        "south": "#all",
        "west": "#all"
    }
}

 

Used block/cube instead and list all of the sides plus the particle texture, eg

{
    "parent": "block/cube",
    "textures": {
        "down": "minecraftbyexample:blocks/mbe01_block_simple_face0",
        "up": "minecraftbyexample:blocks/mbe01_block_simple_face1",
        "north": "minecraftbyexample:blocks/mbe01_block_simple_face2",
        "east": "minecraftbyexample:blocks/mbe01_block_simple_face5",
        "south": "minecraftbyexample:blocks/mbe01_block_simple_face3",
        "west": "minecraftbyexample:blocks/mbe01_block_simple_face4",
        "particle": "blocks/lapis_block"
    }
}

 

This link explains the background in a lot more detail:

http://greyminecraftcoder.blogspot.com.au/2014/12/block-models-18.html

and also

http://minecraft.gamepedia.com/Block_models

 

-TGG

Link to comment
Share on other sites

This will not work, too. :(

 

models/item:

{
    "parent": "builtin/entity",
    "textures":
    {
    	"layer0": "minecraft:planks_oak"
    },
    "display":
    {
    	"thirdperson":
    	{
    		"rotation": [ 10, -45, 170 ],
    		"translation": [ 0, 1.5, -2.75 ],
    		"scale": [ 0.375, 0.375, 0.375 ]
    	}
    }
}

 

models/block:

{
    "parent": "block/cube",
    "textures":
    {
        "down": "minecraft:blocks/chest",
        "up": "minecraft:blocks/chest",
        "north": "minecraft:blocks/chest",
        "east": "minecraft:blocks/chest",
        "south": "minecraft:blocks/chest",
        "west": "minecraft:blocks/chest",
        "particle": "blocks/planks_oak"
    }
}

 

blockstates:

{
    "variants": {
        "normal": { "model": "minecraft:chest" }
    }
}

Developer of Primeval Forest.

Link to comment
Share on other sites

Hi

 

Well that's odd, I don't see an obvious problem.  Are you sure it's not working?  i.e. if you change particle to lapis blue, is your break block particles blue?

 

If not, I suggest a couple of things to try

First try a breakpoint in EntityDiggingFX to find out what texture your block is actually using

    protected EntityDiggingFX(World worldIn, double p_i46280_2_, double p_i46280_4_, double p_i46280_6_, double p_i46280_8_, double p_i46280_10_, double p_i46280_12_, IBlockState p_i46280_14_)
    {
        super(worldIn, p_i46280_2_, p_i46280_4_, p_i46280_6_, p_i46280_8_, p_i46280_10_, p_i46280_12_);
        this.field_174847_a = p_i46280_14_;
        this.func_180435_a(Minecraft.getMinecraft().getBlockRendererDispatcher().getBlockModelShapes().getTexture(p_i46280_14_));   //<----  breakpoint here
        this.particleGravity = p_i46280_14_.getBlock().blockParticleGravity;
        this.particleRed = this.particleGreen = this.particleBlue = 0.6F;
        this.particleScale /= 2.0F;
    }

If the block model is right but the texture is wrong, you will need to dig deeper into the loading of your model.

ModelBakery.bakeModel is where it looks for your texture in the parsed list of textures at this line

   private IBakedModel bakeModel(ModelBlock modelBlockIn, ModelRotation modelRotationIn, boolean uvLocked)
    {
        TextureAtlasSprite textureatlassprite = (TextureAtlasSprite)this.sprites.get(new ResourceLocation(modelBlockIn.resolveTextureName("particle")));   // here
        SimpleBakedModel.Builder builder = (new SimpleBakedModel.Builder(modelBlockIn)).setTexture(textureatlassprite);

 

You will need to add a conditional breakpoint (eg modelBlockIn.name.contains("bektor") == true) because this method is used by the vanilla blocks too and there are hundreds.

 

-TGG

 

Link to comment
Share on other sites

blockstates:

{
    "variants": {
        "normal": { "model": "minecraft:chest" }
    }
}

 

Try changing your model name in your blockstate file. You are now referencing to minecraft's chest model, so "normal": { "model": "yourmodel_id_lowercased:block_model_file_name" }

 

Link to comment
Share on other sites

blockstates:

{
    "variants": {
        "normal": { "model": "minecraft:chest" }
    }
}

 

Try changing your model name in your blockstate file. You are now referencing to minecraft's chest model, so "normal": { "model": "yourmodel_id_lowercased:block_model_file_name" }

 

Well, but I want to use the chest model from minecraft, because I'm not interested in creating a new chest model.

 

Hi

 

Well that's odd, I don't see an obvious problem.  Are you sure it's not working?  i.e. if you change particle to lapis blue, is your break block particles blue?

 

If not, I suggest a couple of things to try

First try a breakpoint in EntityDiggingFX to find out what texture your block is actually using

    protected EntityDiggingFX(World worldIn, double p_i46280_2_, double p_i46280_4_, double p_i46280_6_, double p_i46280_8_, double p_i46280_10_, double p_i46280_12_, IBlockState p_i46280_14_)
    {
        super(worldIn, p_i46280_2_, p_i46280_4_, p_i46280_6_, p_i46280_8_, p_i46280_10_, p_i46280_12_);
        this.field_174847_a = p_i46280_14_;
        this.func_180435_a(Minecraft.getMinecraft().getBlockRendererDispatcher().getBlockModelShapes().getTexture(p_i46280_14_));   //<----  breakpoint here
        this.particleGravity = p_i46280_14_.getBlock().blockParticleGravity;
        this.particleRed = this.particleGreen = this.particleBlue = 0.6F;
        this.particleScale /= 2.0F;
    }

If the block model is right but the texture is wrong, you will need to dig deeper into the loading of your model.

ModelBakery.bakeModel is where it looks for your texture in the parsed list of textures at this line

   private IBakedModel bakeModel(ModelBlock modelBlockIn, ModelRotation modelRotationIn, boolean uvLocked)
    {
        TextureAtlasSprite textureatlassprite = (TextureAtlasSprite)this.sprites.get(new ResourceLocation(modelBlockIn.resolveTextureName("particle")));   // here
        SimpleBakedModel.Builder builder = (new SimpleBakedModel.Builder(modelBlockIn)).setTexture(textureatlassprite);

 

You will need to add a conditional breakpoint (eg modelBlockIn.name.contains("bektor") == true) because this method is used by the vanilla blocks too and there are hundreds.

 

-TGG

 

No, my break block particles are not blue, they are still using the "missing texture" texture from minecraft.

 

Ok, how can I set a breakpoint in eclipse? And the model is correct, but the particles are wrong.

 

Thats the output from eclipse without loading a world:

 

[19:30:15] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker

[19:30:15] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker

[19:30:15] [main/WARN] [LaunchWrapper]: Tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker has already been visited -- skipping

[19:30:15] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker

[19:30:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker

[19:30:15] [main/INFO] [FML]: Forge Mod Loader version 8.0.14.1281 for Minecraft 1.8 loading

[19:30:15] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.7.0_71, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7

[19:30:15] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

[19:30:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker

[19:30:15] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin

[19:30:15] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin

[19:30:15] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[19:30:15] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[19:30:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[19:30:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[19:30:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[19:30:15] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!

[19:30:17] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing

[19:30:17] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[19:30:17] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[19:30:18] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker

[19:30:18] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker

[19:30:18] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}

[19:30:19] [Client thread/INFO]: Setting user: Player701

[19:30:21] [Client thread/INFO]: LWJGL Version: 2.9.1

[19:30:23] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization

[19:30:23] [Client thread/INFO] [FML]: MinecraftForge v11.14.0.1281 Initialized

[19:30:23] [Client thread/INFO] [FML]: Replaced 204 ore recipies

[19:30:23] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization

[19:30:23] [Client thread/INFO] [FML]: Searching F:\Patrick\ForgeVersions\PrimevalForest - 1.8\mods for mods

[19:30:26] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load

[19:30:27] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, primevalforest] at CLIENT

[19:30:27] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, primevalforest] at SERVER

[19:30:27] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Primeval Forest

[19:30:27] [Client thread/INFO] [FML]: Processing ObjectHolder annotations

[19:30:27] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations

[19:30:27] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0

[19:30:27] [Client thread/INFO] [FML]: Applying holder lookups

[19:30:27] [Client thread/INFO] [FML]: Holder lookups applied

[19:30:28] [sound Library Loader/INFO]: Starting up SoundSystem...

[19:30:28] [Thread-7/INFO]: Initializing LWJGL OpenAL

[19:30:28] [Thread-7/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[19:30:29] [Thread-7/INFO]: OpenAL initialized.

[19:30:29] [sound Library Loader/INFO]: Sound engine started

[19:30:36] [Client thread/WARN]: Unable to load variant: facing=east from primevalforest:lockedChest#facing=east

[19:30:36] [Client thread/WARN]: Unable to load variant: facing=south from primevalforest:lockedChest#facing=south

[19:30:36] [Client thread/WARN]: Unable to load variant: facing=north from primevalforest:lockedChest#facing=north

[19:30:36] [Client thread/WARN]: Unable to load variant: facing=west from primevalforest:lockedChest#facing=west

[19:30:37] [Client thread/INFO]: Created: 512x512 textures-atlas

[19:30:38] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods

[19:30:38] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Primeval Forest

[19:30:38] [Client thread/INFO]: SoundSystem shutting down...

[19:30:39] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com

[19:30:39] [sound Library Loader/INFO]: Starting up SoundSystem...

[19:30:39] [Thread-9/INFO]: Initializing LWJGL OpenAL

[19:30:39] [Thread-9/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[19:30:39] [Thread-9/INFO]: OpenAL initialized.

[19:30:39] [sound Library Loader/INFO]: Sound engine started

[19:30:40] [Client thread/WARN]: Unable to load variant: facing=east from primevalforest:lockedChest#facing=east

[19:30:40] [Client thread/WARN]: Unable to load variant: facing=south from primevalforest:lockedChest#facing=south

[19:30:40] [Client thread/WARN]: Unable to load variant: facing=north from primevalforest:lockedChest#facing=north

[19:30:40] [Client thread/WARN]: Unable to load variant: facing=west from primevalforest:lockedChest#facing=west

[19:30:41] [Client thread/INFO]: Created: 512x512 textures-atlas

[19:30:53] [Client thread/INFO]: Stopping!

[19:30:53] [Client thread/INFO]: SoundSystem shutting down...

[19:30:53] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com

 

 

So any idea?

Developer of Primeval Forest.

Link to comment
Share on other sites

Hi

 

Is this the name of your chest?  If so, the problem appears to be that you haven't registered the models properly.

[19:30:40] [Client thread/WARN]: Unable to load variant: facing=east from primevalforest:lockedChest#facing=east

 

Show your block code and registration code?

 

You could try looking this example project for clues on how to properly register a block with variants

https://github.com/TheGreyGhost/MinecraftByExample

- see example 3 in particular

 

This link is very helpful on learning how to use the debugger, you'll wonder how you ever managed with out it...

http://www.vogella.com/tutorials/EclipseDebugging/article.html

 

-TGG

 

 

 

Link to comment
Share on other sites

Ok.

 

Here is the code of the Client proxy:

 

@Override
public void registerTileEntityRendering() 
{
	ClientRegistry.bindTileEntitySpecialRenderer(TileEntityLockedChest.class, new RenderTileEntityLockedChest());

	RenderItem renderItem = Minecraft.getMinecraft().getRenderItem();

	// blocks
	renderItem.getItemModelMesher().register(Item.getItemFromBlock(ModBlocks.locked_chest), 0, new ModelResourceLocation("minecraft:chest", "inventory"));
}

 

 

and the block code:

 

package minecraftplaye.primevalforest.common.blocks;

import net.minecraft.block.Block;
import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material;
import net.minecraft.block.properties.IProperty;
import net.minecraft.block.properties.PropertyDirection;
import net.minecraft.block.state.BlockState;
import net.minecraft.block.state.IBlockState;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Blocks;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.BlockPos;
import net.minecraft.util.EnumChatFormatting;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.MathHelper;
import net.minecraft.world.ILockableContainer;
import net.minecraft.world.World;
import net.minecraftforge.fml.common.registry.GameRegistry;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import minecraftplaye.primevalforest.PrimevalForest;
import minecraftplaye.primevalforest.common.configuration.PFConfigurationIDs;
import minecraftplaye.primevalforest.common.creativetab.ModCreativeTabs;
import minecraftplaye.primevalforest.common.lib.BlockDropHelper;
import minecraftplaye.primevalforest.common.lib.IBlock;
import minecraftplaye.primevalforest.common.tileentity.TileEntityLockedChest;
import minecraftplaye.primevalforest.common.utils.LanguageHandler;
import minecraftplaye.primevalforest.core.ModBlocks;

public class BlockLockedChest extends BlockContainer implements IBlock
{

public static final PropertyDirection FACING = PropertyDirection.create("facing", EnumFacing.Plane.HORIZONTAL);

public BlockLockedChest() 
{
	super(Material.wood);
	this.setHardness(2.5F);
	this.setStepSound(Block.soundTypeWood);
	this.setCreativeTab(ModCreativeTabs.PRIMEVAL);
	this.setBlockBounds(0.0625F, 0.0F, 0.0625F, 0.9375F, 0.875F, 0.9375F);
	this.setDefaultState(this.blockState.getBaseState().withProperty(FACING, EnumFacing.NORTH));

	this.setUnlocalizedName(getName());
	GameRegistry.registerBlock(this, getName());
}

@Override
public String getName()
{
	return "lockedChest";
}

@Override
public TileEntity createNewTileEntity(World worldIn, int meta) 
{
	return new TileEntityLockedChest();
}

    /**
     * Is this block (a) opaque and (b) a full 1m cube?  This determines whether or not to render the shared face of two
     * adjacent blocks and also whether the player can attach torches, redstone wire, etc to this block.
     */
@Override
    public boolean isOpaqueCube()
    {
        return false;
    }

@Override
    public boolean isFullCube()
    {
        return false;
    }

    /**
     * The type of render function that is called for this block
     */
@Override
@SideOnly(Side.CLIENT)
    public int getRenderType()
    {
        return 2;
    }

@Override
    public IBlockState onBlockPlaced(World worldIn, BlockPos pos, EnumFacing facing, float hitX, float hitY, float hitZ, int meta, EntityLivingBase placer)
    {
        return this.getDefaultState().withProperty(FACING, placer.getHorizontalFacing());
    }

    /**
     * Called when the block is placed in the world.
     */
@Override
    public void onBlockPlacedBy(World worldIn, BlockPos pos, IBlockState state, EntityLivingBase placer, ItemStack itemStack)
    {
	if(worldIn.isRemote)
		return;

        EnumFacing enumfacing = EnumFacing.getHorizontal(MathHelper.floor_double((double)(placer.rotationYaw * 4.0F / 360.0F) + 0.5D) & 3).getOpposite();
        state = state.withProperty(FACING, enumfacing);
        
        worldIn.setBlockState(pos, state, 3); //(x, y, z, metadata, 3);

	if(placer instanceof EntityPlayer)
	{
        	TileEntityLockedChest tileEntityLChest = (TileEntityLockedChest)worldIn.getTileEntity(pos);
        	
        	if(tileEntityLChest != null)
        		tileEntityLChest.setUUID((EntityPlayer)placer);
	}

    	if(itemStack.hasDisplayName())
    		((TileEntityLockedChest)worldIn.getTileEntity(pos)).setCustomName(itemStack.getDisplayName());
    }

    /**
     * Checks to see if its valid to put this block at the specified coordinates. Args: worldIn, pos
     */
@Override
    public boolean canPlaceBlockAt(World worldIn, BlockPos pos)
    {
	if(worldIn.getBlockState(pos.down()).getBlock() == Blocks.air)
		return false;
	if(worldIn.getBlockState(pos.up()).getBlock() != Blocks.air)
		return false;
	if(worldIn.getBlockState(pos.down()).getBlock() == ModBlocks.locked_chest)
		return false;
	if(worldIn.getBlockState(pos.up()).getBlock() == ModBlocks.locked_chest)
		return false;
	if(worldIn.getBlockState(pos.down()).getBlock().getMaterial().isLiquid())
		return false;
	if(!worldIn.getBlockState(pos.down()).getBlock().getMaterial().isSolid())
		return false;

	return true;
    }

    /**
     * Lets the block know when one of its neighbor changes. Doesn't know which neighbor changed (coordinates passed are
     * their own) Args: worldIn, pos, state, neighbor Block
     */
@Override
    public void onNeighborBlockChange(World worldIn, BlockPos pos, IBlockState state, Block neighborBlock)
    {
	super.onNeighborBlockChange(worldIn, pos, state, neighborBlock);

	if(worldIn.isRemote)
		return;

	boolean flag = false;

	if(!World.doesBlockHaveSolidTopSurface(worldIn, pos.down()))
		flag = true;
	if(World.doesBlockHaveSolidTopSurface(worldIn, pos.up()))
		flag = true;

	if(flag)
		this.breakBlock(worldIn, pos, state);
    }

@Override
    public void breakBlock(World worldIn, BlockPos pos, IBlockState state)
    {
        TileEntityLockedChest tileentitychest = (TileEntityLockedChest)worldIn.getTileEntity(pos);
        
        if (tileentitychest != null && tileentitychest instanceof IInventory)
        {
            BlockDropHelper.dropItemsAsStack(worldIn, pos, (IInventory) tileentitychest);
        	
            worldIn.updateComparatorOutputLevel(pos, this);
        }
        
        super.breakBlock(worldIn, pos, state);
    }

    /**
     * Called upon block activation (right click on the block.)
     */
@Override
    public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumFacing side, float hitX, float hitY, float hitZ)
    {
	if(worldIn.isRemote)
		return true;
	else
	{
		ILockableContainer inventory = this.getInventory(worldIn, pos);
		TileEntityLockedChest tileEntityLChest = (TileEntityLockedChest)worldIn.getTileEntity(pos);

		if(inventory != null && !playerIn.isSneaking() && !playerIn.isSpectator() && tileEntityLChest != null)
		{
			if(tileEntityLChest.getUUID() == null || tileEntityLChest.getUUID().toString() == null 
					|| tileEntityLChest.getUUID().toString() == "")
			{
				tileEntityLChest.setUUID(playerIn);
				playerIn.openGui(PrimevalForest.instance, PFConfigurationIDs.gui_lChest_ID, worldIn, pos.getX(), pos.getY(), pos.getZ());
			}
			else if(tileEntityLChest.getUUID().toString().equals(playerIn.getGameProfile().getId().toString()))
			{
				if(tileEntityLChest.getName() == null || tileEntityLChest.getName() == "" 
						|| tileEntityLChest.getName() != playerIn.getGameProfile().getName())
					tileEntityLChest.setUUID(playerIn);

				playerIn.openGui(PrimevalForest.instance, PFConfigurationIDs.gui_lChest_ID, worldIn, pos.getX(), pos.getY(), pos.getZ());
			}
			else
				LanguageHandler.sendPlayerLocalizedMessage(playerIn, "primevalforest.blocks.locked", EnumChatFormatting.AQUA, tileEntityLChest.getName());
		}
	}

	return true;
    }

    /**
     * Gets the inventory of the chest at the specified coords, accounting for blocks or ocelots on top of the chest,
     * and double chests.
     */
    public ILockableContainer getInventory(World worldIn, BlockPos pos)
    {
    	TileEntity tileentity = worldIn.getTileEntity(pos);
    	
    	if(tileentity != null && tileentity instanceof TileEntityLockedChest)
    	{
        	Object object = (TileEntityLockedChest)tileentity;
        	
        	if(worldIn.isSideSolid(pos, EnumFacing.DOWN))
        		return null;
            else if (worldIn.getBlockState(pos.west()).getBlock() == this && worldIn.isSideSolid(new BlockPos(pos.getX() - 1, pos.getY() + 1, pos.getZ()), EnumFacing.DOWN))
                return null;
            else if (worldIn.getBlockState(pos.east()).getBlock() == this && worldIn.isSideSolid(new BlockPos(pos.getX() + 1, pos.getY() + 1, pos.getZ()), EnumFacing.DOWN))
                return null;
            else if (worldIn.getBlockState(pos.north()).getBlock() == this && worldIn.isSideSolid(new BlockPos(pos.getX(), pos.getY() + 1, pos.getZ() - 1), EnumFacing.DOWN))
                return null;
            else if (worldIn.getBlockState(pos.south()).getBlock() == this && worldIn.isSideSolid(new BlockPos(pos.getX(), pos.getY() + 1, pos.getZ() + 1), EnumFacing.DOWN))
                return null;
            else
                return (ILockableContainer)object;
    	}
    	else
    		return null;
    }

@Override
@SideOnly(Side.CLIENT)
public Item getItem(World worldIn, BlockPos pos)
{
	return Item.getItemFromBlock(ModBlocks.locked_chest);
}

@Override
    public IBlockState getStateFromMeta(int meta)
    {
        EnumFacing enumfacing = EnumFacing.getFront(meta);

        if (enumfacing.getAxis() == EnumFacing.Axis.Y)
        {
            enumfacing = EnumFacing.NORTH;
        }

        return this.getDefaultState().withProperty(FACING, enumfacing);
    }

@Override
    public int getMetaFromState(IBlockState state)
    {
        return ((EnumFacing)state.getValue(FACING)).getIndex();
    }

@Override
    protected BlockState createBlockState()
    {
        return new BlockState(this, new IProperty[] {FACING});
    }
}

 

 

(Don't forget, I have no model and texture created, all textures and models that this block is using are from the normal minecraft chest)

Developer of Primeval Forest.

Link to comment
Share on other sites

Ah.  The problem appears to be that your blockstates is wrong.  It doesn't have the facing variants that it expects to see - you have given your block four facings but the blockstates file doesn't have any of them.

 

Did you look in the links I sent earlier?

 

You need a blockstates file something like

{
    "variants": {
           "facing=north": { "model": "minecraftbyexample:mbe03_block_variants_model_red"},
            "facing=east": { "model": "minecraftbyexample:mbe03_block_variants_model_red", "y": 90 },
           "facing=south": { "model": "minecraftbyexample:mbe03_block_variants_model_red", "y": 180 },
            "facing=west": { "model": "minecraftbyexample:mbe03_block_variants_model_red", "y": 270 },
    }
}

-TGG

Link to comment
Share on other sites

Well, this doesn't help, too. The blockbreak particles are still not working and now I'm getting errors.

 

blockstates: (lockedChest.json)

{
    "variants": {
        "normal": { "model": "minecraft:chest" },
        "facing=north": { "model": "minecraft:chest"},
        "facing=east": { "model": "minecraft:chest", "y": 90 },
        "facing=south": { "model": "minecraft:chest", "y": 180 },
        "facing=west": { "model": "minecraft:chest", "y": 270 }
    }
}

 

and here the log from eclipse (because there is no error/crash log):

 

[17:37:33] [main/INFO] [GradleStart]: userProperties: {}

[17:37:33] [main/INFO] [GradleStart]: username: Player701

[17:37:33] [main/INFO] [GradleStart]: accessToken: FML

[17:37:33] [main/INFO] [GradleStart]: version: 1.6

[17:37:33] [main/INFO] [GradleStart]: Extra: [--tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker]

[17:37:33] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --username, Player701, --accessToken, {REDACTED}, --assetIndex, 1.8, --assetsDir, C:/Users/Patrick/.gradle/caches/minecraft/assets, --version, 1.6, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker]

[17:37:33] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker

[17:37:33] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker

[17:37:33] [main/WARN] [LaunchWrapper]: Tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker has already been visited -- skipping

[17:37:33] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker

[17:37:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker

[17:37:33] [main/INFO] [FML]: Forge Mod Loader version 8.0.14.1281 for Minecraft 1.8 loading

[17:37:33] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.7.0_71, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7

[17:37:33] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

[17:37:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker

[17:37:33] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin

[17:37:33] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin

[17:37:33] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[17:37:33] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[17:37:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[17:37:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[17:37:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[17:37:33] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!

[17:37:35] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing

[17:37:35] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[17:37:35] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[17:37:36] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker

[17:37:36] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker

[17:37:36] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}

[17:37:36] [Client thread/INFO]: Setting user: Player701

[17:37:38] [Client thread/INFO]: LWJGL Version: 2.9.1

[17:37:39] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization

[17:37:39] [Client thread/INFO] [FML]: MinecraftForge v11.14.0.1281 Initialized

[17:37:39] [Client thread/INFO] [FML]: Replaced 204 ore recipies

[17:37:39] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization

[17:37:39] [Client thread/INFO] [FML]: Searching F:\Patrick\ForgeVersions\PrimevalForest - 1.8\mods for mods

[17:37:41] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load

[17:37:41] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, primevalforest] at CLIENT

[17:37:41] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, primevalforest] at SERVER

[17:37:41] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Primeval Forest

[17:37:41] [Client thread/INFO] [FML]: Processing ObjectHolder annotations

[17:37:41] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations

[17:37:41] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0

[17:37:41] [Client thread/INFO] [FML]: Applying holder lookups

[17:37:41] [Client thread/INFO] [FML]: Holder lookups applied

[17:37:41] [sound Library Loader/INFO]: Starting up SoundSystem...

[17:37:42] [Thread-7/INFO]: Initializing LWJGL OpenAL

[17:37:42] [Thread-7/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[17:37:42] [Thread-7/INFO]: OpenAL initialized.

[17:37:42] [sound Library Loader/INFO]: Sound engine started

[17:37:44] [Client thread/WARN]: Unable to load block model: 'minecraft:block/chest' for variant: 'primevalforest:lockedChest#facing=south'

java.io.FileNotFoundException: minecraft:models/block/chest.json

at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:70) ~[FallbackResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadModel(ModelBakery.java:260) ~[ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadVariantModels(ModelBakery.java:210) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadVariantItemModels(ModelBakery.java:104) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.setupModelRegistry(ModelBakery.java:88) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:29) [ModelManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:124) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:470) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:325) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:117) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]

at GradleStart.main(GradleStart.java:45) [start/:?]

[17:37:44] [Client thread/WARN]: Unable to load block model: 'minecraft:block/chest' for variant: 'primevalforest:lockedChest#facing=east'

java.io.FileNotFoundException: minecraft:models/block/chest.json

at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:70) ~[FallbackResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadModel(ModelBakery.java:260) ~[ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadVariantModels(ModelBakery.java:210) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadVariantItemModels(ModelBakery.java:104) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.setupModelRegistry(ModelBakery.java:88) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:29) [ModelManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:124) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:470) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:325) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:117) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]

at GradleStart.main(GradleStart.java:45) [start/:?]

[17:37:44] [Client thread/WARN]: Unable to load block model: 'minecraft:block/chest' for variant: 'primevalforest:lockedChest#facing=west'

java.io.FileNotFoundException: minecraft:models/block/chest.json

at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:70) ~[FallbackResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadModel(ModelBakery.java:260) ~[ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadVariantModels(ModelBakery.java:210) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadVariantItemModels(ModelBakery.java:104) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.setupModelRegistry(ModelBakery.java:88) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:29) [ModelManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:124) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:470) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:325) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:117) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]

at GradleStart.main(GradleStart.java:45) [start/:?]

[17:37:44] [Client thread/WARN]: Unable to load block model: 'minecraft:block/chest' for variant: 'primevalforest:lockedChest#facing=north'

java.io.FileNotFoundException: minecraft:models/block/chest.json

at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:70) ~[FallbackResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadModel(ModelBakery.java:260) ~[ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadVariantModels(ModelBakery.java:210) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadVariantItemModels(ModelBakery.java:104) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.setupModelRegistry(ModelBakery.java:88) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:29) [ModelManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:124) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:470) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:325) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:117) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]

at GradleStart.main(GradleStart.java:45) [start/:?]

[17:37:44] [Client thread/WARN]: Missing model for: primevalforest:lockedChest#facing=east

[17:37:44] [Client thread/WARN]: Missing model for: primevalforest:lockedChest#facing=north

[17:37:44] [Client thread/WARN]: Missing model for: primevalforest:lockedChest#facing=south

[17:37:44] [Client thread/WARN]: Missing model for: primevalforest:lockedChest#facing=west

[17:37:45] [Client thread/INFO]: Created: 512x512 textures-atlas

[17:37:45] [Client thread/WARN]: Missing model for: primevalforest:lockedChest#facing=south

[17:37:45] [Client thread/WARN]: No weighted models for: primevalforest:lockedChest#facing=south

[17:37:45] [Client thread/WARN]: Missing model for: primevalforest:lockedChest#facing=east

[17:37:45] [Client thread/WARN]: No weighted models for: primevalforest:lockedChest#facing=east

[17:37:45] [Client thread/WARN]: Missing model for: primevalforest:lockedChest#facing=west

[17:37:45] [Client thread/WARN]: No weighted models for: primevalforest:lockedChest#facing=west

[17:37:45] [Client thread/WARN]: Missing model for: primevalforest:lockedChest#facing=north

[17:37:45] [Client thread/WARN]: No weighted models for: primevalforest:lockedChest#facing=north

[17:37:46] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods

[17:37:46] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Primeval Forest

[17:37:46] [Client thread/INFO]: SoundSystem shutting down...

[17:37:46] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com

[17:37:46] [sound Library Loader/INFO]: Starting up SoundSystem...

[17:37:46] [Thread-9/INFO]: Initializing LWJGL OpenAL

[17:37:46] [Thread-9/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[17:37:46] [Thread-9/INFO]: OpenAL initialized.

[17:37:47] [sound Library Loader/INFO]: Sound engine started

[17:37:48] [Client thread/WARN]: Unable to load block model: 'minecraft:block/chest' for variant: 'primevalforest:lockedChest#facing=south'

java.io.FileNotFoundException: minecraft:models/block/chest.json

at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:70) ~[FallbackResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadModel(ModelBakery.java:260) ~[ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadVariantModels(ModelBakery.java:210) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadVariantItemModels(ModelBakery.java:104) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.setupModelRegistry(ModelBakery.java:88) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:29) [ModelManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:727) [Minecraft.class:?]

at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:306) [FMLClientHandler.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:484) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:325) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:117) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]

at GradleStart.main(GradleStart.java:45) [start/:?]

[17:37:48] [Client thread/WARN]: Unable to load block model: 'minecraft:block/chest' for variant: 'primevalforest:lockedChest#facing=east'

java.io.FileNotFoundException: minecraft:models/block/chest.json

at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:70) ~[FallbackResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadModel(ModelBakery.java:260) ~[ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadVariantModels(ModelBakery.java:210) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadVariantItemModels(ModelBakery.java:104) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.setupModelRegistry(ModelBakery.java:88) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:29) [ModelManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:727) [Minecraft.class:?]

at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:306) [FMLClientHandler.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:484) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:325) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:117) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]

at GradleStart.main(GradleStart.java:45) [start/:?]

[17:37:48] [Client thread/WARN]: Unable to load block model: 'minecraft:block/chest' for variant: 'primevalforest:lockedChest#facing=west'

java.io.FileNotFoundException: minecraft:models/block/chest.json

at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:70) ~[FallbackResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadModel(ModelBakery.java:260) ~[ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadVariantModels(ModelBakery.java:210) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadVariantItemModels(ModelBakery.java:104) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.setupModelRegistry(ModelBakery.java:88) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:29) [ModelManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:727) [Minecraft.class:?]

at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:306) [FMLClientHandler.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:484) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:325) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:117) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]

at GradleStart.main(GradleStart.java:45) [start/:?]

[17:37:48] [Client thread/WARN]: Unable to load block model: 'minecraft:block/chest' for variant: 'primevalforest:lockedChest#facing=north'

java.io.FileNotFoundException: minecraft:models/block/chest.json

at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:70) ~[FallbackResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadModel(ModelBakery.java:260) ~[ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadVariantModels(ModelBakery.java:210) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.loadVariantItemModels(ModelBakery.java:104) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelBakery.setupModelRegistry(ModelBakery.java:88) [ModelBakery.class:?]

at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:29) [ModelManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:727) [Minecraft.class:?]

at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:306) [FMLClientHandler.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:484) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:325) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:117) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]

at GradleStart.main(GradleStart.java:45) [start/:?]

[17:37:48] [Client thread/WARN]: Missing model for: primevalforest:lockedChest#facing=east

[17:37:48] [Client thread/WARN]: Missing model for: primevalforest:lockedChest#facing=north

[17:37:48] [Client thread/WARN]: Missing model for: primevalforest:lockedChest#facing=south

[17:37:48] [Client thread/WARN]: Missing model for: primevalforest:lockedChest#facing=west

[17:37:48] [Client thread/INFO]: Created: 512x512 textures-atlas

[17:37:48] [Client thread/WARN]: Missing model for: primevalforest:lockedChest#facing=south

[17:37:48] [Client thread/WARN]: No weighted models for: primevalforest:lockedChest#facing=south

[17:37:48] [Client thread/WARN]: Missing model for: primevalforest:lockedChest#facing=east

[17:37:48] [Client thread/WARN]: No weighted models for: primevalforest:lockedChest#facing=east

[17:37:48] [Client thread/WARN]: Missing model for: primevalforest:lockedChest#facing=west

[17:37:48] [Client thread/WARN]: No weighted models for: primevalforest:lockedChest#facing=west

[17:37:48] [Client thread/WARN]: Missing model for: primevalforest:lockedChest#facing=north

[17:37:48] [Client thread/WARN]: No weighted models for: primevalforest:lockedChest#facing=north

[17:38:20] [server thread/INFO]: Starting integrated minecraft server version 1.8

[17:38:20] [server thread/INFO]: Generating keypair

[17:38:20] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance

[17:38:21] [server thread/INFO] [FML]: Applying holder lookups

[17:38:21] [server thread/INFO] [FML]: Holder lookups applied

[17:38:21] [server thread/INFO] [FML]: Loading dimension 0 (Test-World) (net.minecraft.server.integrated.IntegratedServer@691b699)

[17:38:21] [server thread/INFO] [FML]: Loading dimension 1 (Test-World) (net.minecraft.server.integrated.IntegratedServer@691b699)

[17:38:21] [server thread/INFO] [FML]: Loading dimension -1 (Test-World) (net.minecraft.server.integrated.IntegratedServer@691b699)

[17:38:21] [server thread/INFO]: Preparing start region for level 0

[17:38:22] [server thread/INFO]: Changing view distance to 12, from 10

[17:38:22] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 1

[17:38:22] [Netty Server IO #1/INFO] [FML]: Client protocol version 1

[17:38:22] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],primevalforest@@VERSION@,[email protected]

[17:38:22] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established

[17:38:22] [server thread/INFO] [FML]: [server thread] Server side modded connection established

[17:38:22] [server thread/INFO]: Player701[local:E:628b3e0b] logged in with entity id 143 at (-6.71423571777834, 65.0, 145.28236526067553)

[17:38:22] [server thread/INFO]: Player701 joined the game

[17:38:26] [Client thread/INFO]: Stopping!

[17:38:26] [Client thread/INFO]: SoundSystem shutting down...

[17:38:27] [server thread/INFO]: Stopping server

[17:38:27] [server thread/INFO]: Saving players

[17:38:27] [server thread/INFO]: Saving worlds

[17:38:27] [server thread/INFO]: Saving chunks for level 'Test-World'/Overworld

[17:38:27] [server thread/INFO]: Saving chunks for level 'Test-World'/Nether

[17:38:27] [server thread/INFO]: Saving chunks for level 'Test-World'/The End

[17:38:27] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com

[17:38:27] [Client Shutdown Thread/INFO]: Stopping server

[17:38:27] [Client Shutdown Thread/INFO]: Saving players

[17:38:27] [Client Shutdown Thread/INFO]: Saving worlds

[17:38:27] [Client Shutdown Thread/INFO]: Saving chunks for level 'Test-World'/Overworld

 

Developer of Primeval Forest.

Link to comment
Share on other sites

Ah.

 

I just went to look for the vanilla chest model - there isn't one.  It's drawn using a different rendertype so it has no blockmodel like most other blocks do.  The TileEntitySpecialRenderer renders it instead, so the lid animation can be done properly.

 

--> if you want a block texture for the chest you'll need to make them yourself.  You can find the texture sheet in

("textures/entity/chest/normal.png");

 

-TGG

 

 

 

 

Link to comment
Share on other sites

  • 2 weeks later...

Sorry, that it took so long to reply here, but I had not much time.

 

So, my own block is rendered by the TileEntitySpecialRenderer, too:

 

 

package minecraftplaye.primevalforest.client.render;

import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.GL12;

import minecraftplaye.primevalforest.common.blocks.BlockLockedChest;
import minecraftplaye.primevalforest.common.tileentity.TileEntityLockedChest;
import net.minecraft.block.Block;
import net.minecraft.client.model.ModelChest;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

@SideOnly(Side.CLIENT)
public class RenderTileEntityLockedChest extends TileEntitySpecialRenderer
{

private static final ResourceLocation texture = new ResourceLocation("textures/entity/chest/normal.png");
    private ModelChest model = new ModelChest();
    
public RenderTileEntityLockedChest() 
{ }

@Override
public void renderTileEntityAt(TileEntity tileentity, double x, double y, double z, float scale, int unknown)
{
	if(tileentity instanceof TileEntityLockedChest)
	{
		TileEntityLockedChest tileEntityLockedChest = (TileEntityLockedChest) tileentity;

        int meta;

		if(!tileEntityLockedChest.hasWorldObj())
			meta = 0;
		else
		{
			Block block = tileEntityLockedChest.getBlockType();
			meta = tileEntityLockedChest.getBlockMetadata();

			if(block instanceof BlockLockedChest && meta == 0)
                meta = tileEntityLockedChest.getBlockMetadata();
		}

		ModelChest modelChest = this.model;

		this.bindTexture(texture);

		// The PushMatrix tells the renderer to "start" doing something.
		GL11.glPushMatrix();
		GL11.glEnable(GL12.GL_RESCALE_NORMAL);
            GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
    		// This is setting the initial location.
    		GL11.glTranslatef((float) x, (float) y + 1.0F, (float) z + 1.0F);
            GL11.glScalef(1.0F, -1.0F, -1.0F);
            GL11.glTranslatef(0.5F, 0.5F, 0.5F);
            
            short rotation = 0;
            
            if (meta == 2)
            	rotation = 180;
            if (meta == 3)
            	rotation = 0;
            if (meta == 4)
            	rotation = 90;
            if (meta == 5)
            	rotation = -90;
            
            GL11.glRotatef((float)rotation, 0.0F, 1.0F, 0.0F);
            GL11.glTranslatef(-0.5F, -0.5F, -0.5F);
            float f1 = tileEntityLockedChest.prevLidAngle + (tileEntityLockedChest.lidAngle - tileEntityLockedChest.prevLidAngle) * scale;
            
            f1 = 1.0F - f1;
            f1 = 1.0F - f1 * f1 * f1;
            modelChest.chestLid.rotateAngleX = -(f1 * (float)Math.PI / 2.0F);
            modelChest.renderAll();
            GL11.glDisable(GL12.GL_RESCALE_NORMAL);
            // Tell it to stop rendering for both the PushMatrix's
            GL11.glPopMatrix();
            GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
	}
}
}

 

 

And there I put the texture path to the path of Minecraft. (I tried it with: "textures/entity/chest/normal.png" and with "minecraft:textures/entity/chest/normal.png".)

 

  • Block Texture: works
  • Container Texture: works
  • 3D-Inventory-Rendering: works
  • Block break particle: does not work

 

So any idea what to do to fix it, because I'm no longer really interested in updating my mod to 1.8.... (I have better stuff to do then that, stuff that makes more fun, like working on the Beta for 1.7.10 and on my own small Game)

Developer of Primeval Forest.

Link to comment
Share on other sites

public class MyBlock extends BlockContainer {
  public MyBlock() {
    this.setTextureName("put something here");
  }
}

 

Block break particles are based off the BLOCK's texture.

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

Oops, your right. I'm still pretty sure you need a block texture json to indicate the particle texture.

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

Sorry, that it took so long to reply here, but I had not much time.

So any idea what to do to fix it, because I'm no longer really interested in updating my mod to 1.8.... (I have better stuff to do then that, stuff that makes more fun, like working on the Beta for 1.7.10 and on my own small Game)

Vanilla's chest gets the break texture through a filthy kludge

BlockModelShapes.getTexture(IBlockState state)
            if (block == Blocks.wall_sign || block == Blocks.standing_sign || block == Blocks.chest || block == Blocks.trapped_chest || block == Blocks.standing_banner || block == Blocks.wall_banner)
            {
                return this.modelManager.getTextureMap().getAtlasSprite("minecraft:blocks/planks_oak");
            }
//.. etc...

 

You can't do that, so I think you need to make a block model for block/cube, give it a "particle": texture.  leave the other sides blank (create an empty texture for them). 

 

-TGG

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Thank you really, very, much. I confirm that it works
    • ---- Minecraft Crash Report ---- // Surprise! Haha. Well, this is awkward. Time: 2024-10-08 20:20:42 Description: mouseClicked event handler net.minecraft.ResourceLocationException: Non [a-z0-9/._-] character in path of location: minecraft:chests/pillager_outpost      at net.minecraft.resources.ResourceLocation.m_245185_(ResourceLocation.java:236) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ferritecore.mrl.mixin.json:ResourceLocationAccess,pl:mixin:APP:rhino-common.mixins.json:ResourceLocationMixin,pl:mixin:A}     at net.minecraft.resources.ResourceLocation.<init>(ResourceLocation.java:38) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ferritecore.mrl.mixin.json:ResourceLocationAccess,pl:mixin:APP:rhino-common.mixins.json:ResourceLocationMixin,pl:mixin:A}     at net.minecraft.resources.ResourceLocation.<init>(ResourceLocation.java:42) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ferritecore.mrl.mixin.json:ResourceLocationAccess,pl:mixin:APP:rhino-common.mixins.json:ResourceLocationMixin,pl:mixin:A}     at net.minecraft.resources.ResourceLocation.<init>(ResourceLocation.java:46) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ferritecore.mrl.mixin.json:ResourceLocationAccess,pl:mixin:APP:rhino-common.mixins.json:ResourceLocationMixin,pl:mixin:A}     at net.minecraftforge.common.loot.LootTableIdCondition$Serializer.deserialize(LootTableIdCondition.java:76) ~[forge-1.20.1-47.3.0-universal.jar%23537!/:?] {re:classloading}     at net.minecraftforge.common.loot.LootTableIdCondition$Serializer.m_7561_(LootTableIdCondition.java:65) ~[forge-1.20.1-47.3.0-universal.jar%23537!/:?] {re:classloading}     at net.minecraft.world.level.storage.loot.GsonAdapterFactory$JsonAdapter.deserialize(GsonAdapterFactory.java:102) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:classloading}     at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:76) ~[gson-2.10.jar%23107!/:?] {}     at com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.read(TypeAdapterRuntimeTypeWrapper.java:40) ~[gson-2.10.jar%23107!/:?] {}     at com.google.gson.internal.bind.ArrayTypeAdapter.read(ArrayTypeAdapter.java:72) ~[gson-2.10.jar%23107!/:?] {}     at com.google.gson.Gson.fromJson(Gson.java:1214) ~[gson-2.10.jar%23107!/:?] {re:mixin}     at com.google.gson.Gson.fromJson(Gson.java:1319) ~[gson-2.10.jar%23107!/:?] {re:mixin}     at com.google.gson.Gson.fromJson(Gson.java:1261) ~[gson-2.10.jar%23107!/:?] {re:mixin}     at net.minecraftforge.common.loot.IGlobalLootModifier.lambda$static$1(IGlobalLootModifier.java:39) ~[forge-1.20.1-47.3.0-universal.jar%23537!/:?] {re:classloading}     at com.mojang.serialization.Decoder$1.lambda$decode$1(Decoder.java:49) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.DataResult.lambda$flatMap$11(DataResult.java:139) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at com.mojang.datafixers.util.Either$Left.map(Either.java:38) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.DataResult.flatMap(DataResult.java:137) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at com.mojang.serialization.Decoder$1.decode(Decoder.java:49) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.Codec$2.decode(Codec.java:71) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.Decoder.parse(Decoder.java:18) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at com.mojang.serialization.codecs.FieldDecoder.decode(FieldDecoder.java:29) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.MapCodec$1.decode(MapCodec.java:34) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.codecs.RecordCodecBuilder$Instance$3.decode(RecordCodecBuilder.java:248) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.codecs.RecordCodecBuilder$2.decode(RecordCodecBuilder.java:107) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.codecs.KeyDispatchCodec.lambda$decode$3(KeyDispatchCodec.java:67) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.DataResult.lambda$flatMap$11(DataResult.java:139) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at com.mojang.datafixers.util.Either$Left.map(Either.java:38) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.DataResult.flatMap(DataResult.java:137) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at com.mojang.serialization.codecs.KeyDispatchCodec.lambda$decode$4(KeyDispatchCodec.java:58) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.DataResult.lambda$flatMap$11(DataResult.java:139) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at com.mojang.datafixers.util.Either$Left.map(Either.java:38) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.DataResult.flatMap(DataResult.java:137) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at com.mojang.serialization.codecs.KeyDispatchCodec.decode(KeyDispatchCodec.java:56) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.MapDecoder.lambda$compressedDecode$1(MapDecoder.java:52) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.DataResult.lambda$flatMap$11(DataResult.java:139) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at com.mojang.datafixers.util.Either$Left.map(Either.java:38) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.DataResult.flatMap(DataResult.java:137) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at com.mojang.serialization.MapDecoder.compressedDecode(MapDecoder.java:52) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.MapCodec$MapCodecCodec.decode(MapCodec.java:91) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.Decoder.parse(Decoder.java:18) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at net.minecraftforge.common.loot.LootModifierManager.apply(LootModifierManager.java:79) ~[forge-1.20.1-47.3.0-universal.jar%23537!/:?] {re:classloading}     at net.minecraftforge.common.loot.LootModifierManager.m_5787_(LootModifierManager.java:38) ~[forge-1.20.1-47.3.0-universal.jar%23537!/:?] {re:classloading}     at net.minecraft.server.packs.resources.SimplePreparableReloadListener.m_10789_(SimplePreparableReloadListener.java:13) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,re:classloading,pl:mixin:APP:moonlight.mixins.json:ConditionHackMixin,pl:mixin:A}     at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:718) ~[?:?] {}     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:mixin,re:classloading,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.SimpleReloadInstanceMixin,pl:mixin:A}     at net.minecraft.util.thread.BlockableEventLoop.m_6367_(BlockableEventLoop.java:156) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:A}     at net.minecraft.util.thread.ReentrantBlockableEventLoop.m_6367_(ReentrantBlockableEventLoop.java:23) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:computing_frames,re:mixin,re:classloading}     at net.minecraft.util.thread.BlockableEventLoop.m_7245_(BlockableEventLoop.java:130) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:A}     at net.minecraft.util.thread.BlockableEventLoop.m_18701_(BlockableEventLoop.java:139) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:A}     at net.minecraft.client.Minecraft.m_18701_(Minecraft.java:3441) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:scguns.mixins.json:client.MinecraftMixin,pl:mixin:APP:pointblank.mixins.json:MinecraftAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:cgm.mixins.json:client.MinecraftMixin,pl:mixin:APP:xkdeco.mixins.json:client.MinecraftMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:kubejs-common.mixins.json:MinecraftClientMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:quark.mixins.json:client.MinecraftMixin,pl:mixin:APP:sound_physics_remastered.mixins.json:MinecraftMixin,pl:mixin:APP:create.mixins.json:client.WindowResizeMixin,pl:mixin:APP:embeddium.mixins.json:core.render.MinecraftAccessor,pl:mixin:APP:embeddium.mixins.json:core.MinecraftClientMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.screens.worldselection.CreateWorldScreen.m_232896_(CreateWorldScreen.java:131) ~[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.gui.screens.worldselection.SelectWorldScreen.m_279861_(SelectWorldScreen.java:60) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:classloading}     at net.minecraft.client.gui.components.Button.m_5691_(Button.java:38) ~[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.gui.components.AbstractButton.m_5716_(AbstractButton.java:55) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:runtimedistcleaner:A,re:computing_frames,pl:runtimedistcleaner:A,re:classloading,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.components.AbstractWidget.m_6375_(AbstractWidget.java:175) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.components.events.ContainerEventHandler.m_6375_(ContainerEventHandler.java:38) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:computing_frames,re:mixin,re:classloading}     at net.minecraft.client.MouseHandler.m_168084_(MouseHandler.java:92) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:scguns.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:pointblank.mixins.json:MouseHandlerMixin,pl:mixin:APP:mixins.cofhcore.json:MouseHandlerMixin,pl:mixin:APP:corgilib-common.mixins.json:client.MixinMouseHandler,pl:mixin:APP:cgm.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMouseHandler,pl:mixin:APP:customnpcs.mixins.json:MouseHelperMixin,pl:mixin:APP:smallships-common.mixins.json:zooming.client.MouseHandlerMixin,pl:mixin:APP:supplementaries-common.mixins.json:MouseHandlerMixin,pl:mixin:APP:create.mixins.json:accessor.MouseHandlerAccessor,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.screens.Screen.m_96579_(Screen.java:437) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:world_preview.mixins.json:client.ScreenAccessor,pl:mixin:APP:cumulus_menus.mixins.json:client.accessor.ScreenAccessor,pl:mixin:APP:kiwi.mixins.json:client.ScreenMixin,pl:mixin:APP:aether.mixins.json:client.accessor.ScreenAccessor,pl:mixin:APP:customnpcs.mixins.json:ScreenMixin,pl:mixin:APP:refurbished_furniture.common.mixins.json:client.ScreenAccessor,pl:mixin:APP:kubejs-common.mixins.json:ScreenMixin,pl:mixin:APP:quark.mixins.json:client.ScreenMixin,pl:mixin:APP:minecolonies_tweaks.mixin.client.json:minecraft.ScreenMixin,pl:mixin:APP:ae2.mixins.json:WrappedGenericStackTooltipModIdMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.MouseHandler.m_91530_(MouseHandler.java:89) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:scguns.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:pointblank.mixins.json:MouseHandlerMixin,pl:mixin:APP:mixins.cofhcore.json:MouseHandlerMixin,pl:mixin:APP:corgilib-common.mixins.json:client.MixinMouseHandler,pl:mixin:APP:cgm.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMouseHandler,pl:mixin:APP:customnpcs.mixins.json:MouseHelperMixin,pl:mixin:APP:smallships-common.mixins.json:zooming.client.MouseHandlerMixin,pl:mixin:APP:supplementaries-common.mixins.json:MouseHandlerMixin,pl:mixin:APP:create.mixins.json:accessor.MouseHandlerAccessor,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.MouseHandler.m_168091_(MouseHandler.java:189) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:scguns.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:pointblank.mixins.json:MouseHandlerMixin,pl:mixin:APP:mixins.cofhcore.json:MouseHandlerMixin,pl:mixin:APP:corgilib-common.mixins.json:client.MixinMouseHandler,pl:mixin:APP:cgm.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMouseHandler,pl:mixin:APP:customnpcs.mixins.json:MouseHelperMixin,pl:mixin:APP:smallships-common.mixins.json:zooming.client.MouseHandlerMixin,pl:mixin:APP:supplementaries-common.mixins.json:MouseHandlerMixin,pl:mixin:APP:create.mixins.json:accessor.MouseHandlerAccessor,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:102) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:A}     at net.minecraft.client.MouseHandler.m_91565_(MouseHandler.java:188) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:scguns.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:pointblank.mixins.json:MouseHandlerMixin,pl:mixin:APP:mixins.cofhcore.json:MouseHandlerMixin,pl:mixin:APP:corgilib-common.mixins.json:client.MixinMouseHandler,pl:mixin:APP:cgm.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMouseHandler,pl:mixin:APP:customnpcs.mixins.json:MouseHelperMixin,pl:mixin:APP:smallships-common.mixins.json:zooming.client.MouseHandlerMixin,pl:mixin:APP:supplementaries-common.mixins.json:MouseHandlerMixin,pl:mixin:APP:create.mixins.json:accessor.MouseHandlerAccessor,pl:mixin:A,pl:runtimedistcleaner:A}     at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:43) ~[lwjgl-glfw-3.3.1.jar%23141!/:build 7] {}     at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.3.1.jar%23153!/:build 7] {}     at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3474) ~[lwjgl-glfw-3.3.1.jar%23141!/:build 7] {re:mixin}     at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:237) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:flywheel.mixins.json:RenderTexturesMixin,pl:mixin:APP:embeddium.mixins.json:workarounds.event_loop.RenderSystemMixin,pl:mixin:A}     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1173) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:scguns.mixins.json:client.MinecraftMixin,pl:mixin:APP:pointblank.mixins.json:MinecraftAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:cgm.mixins.json:client.MinecraftMixin,pl:mixin:APP:xkdeco.mixins.json:client.MinecraftMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:kubejs-common.mixins.json:MinecraftClientMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:quark.mixins.json:client.MinecraftMixin,pl:mixin:APP:sound_physics_remastered.mixins.json:MinecraftMixin,pl:mixin:APP:create.mixins.json:client.WindowResizeMixin,pl:mixin:APP:embeddium.mixins.json:core.render.MinecraftAccessor,pl:mixin:APP:embeddium.mixins.json:core.MinecraftClientMixin,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,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:scguns.mixins.json:client.MinecraftMixin,pl:mixin:APP:pointblank.mixins.json:MinecraftAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:cgm.mixins.json:client.MinecraftMixin,pl:mixin:APP:xkdeco.mixins.json:client.MinecraftMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:kubejs-common.mixins.json:MinecraftClientMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:quark.mixins.json:client.MinecraftMixin,pl:mixin:APP:sound_physics_remastered.mixins.json:MinecraftMixin,pl:mixin:APP:create.mixins.json:client.WindowResizeMixin,pl:mixin:APP:embeddium.mixins.json:core.render.MinecraftAccessor,pl:mixin:APP:embeddium.mixins.json:core.MinecraftClientMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:flywheel.mixins.json:ClientMainMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {re:mixin}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.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 Mod:      ModernFix (modernfix), Version: 5.19.4+mc1.20.1         Issue tracker URL: https://github.com/embeddedt/ModernFix/issues         Mixin class: org.embeddedt.modernfix.common.mixin.bugfix.concurrency.MinecraftMixin         Target: net.minecraft.client.Minecraft         at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.m_18701_(Minecraft.java:3441) Stacktrace:     at net.minecraft.resources.ResourceLocation.m_245185_(ResourceLocation.java:236) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ferritecore.mrl.mixin.json:ResourceLocationAccess,pl:mixin:APP:rhino-common.mixins.json:ResourceLocationMixin,pl:mixin:A}     at net.minecraft.resources.ResourceLocation.<init>(ResourceLocation.java:38) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ferritecore.mrl.mixin.json:ResourceLocationAccess,pl:mixin:APP:rhino-common.mixins.json:ResourceLocationMixin,pl:mixin:A}     at net.minecraft.resources.ResourceLocation.<init>(ResourceLocation.java:42) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ferritecore.mrl.mixin.json:ResourceLocationAccess,pl:mixin:APP:rhino-common.mixins.json:ResourceLocationMixin,pl:mixin:A}     at net.minecraft.resources.ResourceLocation.<init>(ResourceLocation.java:46) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ferritecore.mrl.mixin.json:ResourceLocationAccess,pl:mixin:APP:rhino-common.mixins.json:ResourceLocationMixin,pl:mixin:A}     at net.minecraftforge.common.loot.LootTableIdCondition$Serializer.deserialize(LootTableIdCondition.java:76) ~[forge-1.20.1-47.3.0-universal.jar%23537!/:?] {re:classloading}     at net.minecraftforge.common.loot.LootTableIdCondition$Serializer.m_7561_(LootTableIdCondition.java:65) ~[forge-1.20.1-47.3.0-universal.jar%23537!/:?] {re:classloading}     at net.minecraft.world.level.storage.loot.GsonAdapterFactory$JsonAdapter.deserialize(GsonAdapterFactory.java:102) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:classloading}     at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:76) ~[gson-2.10.jar%23107!/:?] {}     at com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.read(TypeAdapterRuntimeTypeWrapper.java:40) ~[gson-2.10.jar%23107!/:?] {}     at com.google.gson.internal.bind.ArrayTypeAdapter.read(ArrayTypeAdapter.java:72) ~[gson-2.10.jar%23107!/:?] {}     at com.google.gson.Gson.fromJson(Gson.java:1214) ~[gson-2.10.jar%23107!/:?] {re:mixin}     at com.google.gson.Gson.fromJson(Gson.java:1319) ~[gson-2.10.jar%23107!/:?] {re:mixin}     at com.google.gson.Gson.fromJson(Gson.java:1261) ~[gson-2.10.jar%23107!/:?] {re:mixin}     at net.minecraftforge.common.loot.IGlobalLootModifier.lambda$static$1(IGlobalLootModifier.java:39) ~[forge-1.20.1-47.3.0-universal.jar%23537!/:?] {re:classloading}     at com.mojang.serialization.Decoder$1.lambda$decode$1(Decoder.java:49) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.DataResult.lambda$flatMap$11(DataResult.java:139) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at com.mojang.datafixers.util.Either$Left.map(Either.java:38) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.DataResult.flatMap(DataResult.java:137) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at com.mojang.serialization.Decoder$1.decode(Decoder.java:49) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.Codec$2.decode(Codec.java:71) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.Decoder.parse(Decoder.java:18) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at com.mojang.serialization.codecs.FieldDecoder.decode(FieldDecoder.java:29) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.MapCodec$1.decode(MapCodec.java:34) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.codecs.RecordCodecBuilder$Instance$3.decode(RecordCodecBuilder.java:248) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.codecs.RecordCodecBuilder$2.decode(RecordCodecBuilder.java:107) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.codecs.KeyDispatchCodec.lambda$decode$3(KeyDispatchCodec.java:67) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.DataResult.lambda$flatMap$11(DataResult.java:139) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at com.mojang.datafixers.util.Either$Left.map(Either.java:38) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.DataResult.flatMap(DataResult.java:137) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at com.mojang.serialization.codecs.KeyDispatchCodec.lambda$decode$4(KeyDispatchCodec.java:58) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.DataResult.lambda$flatMap$11(DataResult.java:139) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at com.mojang.datafixers.util.Either$Left.map(Either.java:38) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.DataResult.flatMap(DataResult.java:137) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at com.mojang.serialization.codecs.KeyDispatchCodec.decode(KeyDispatchCodec.java:56) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.MapDecoder.lambda$compressedDecode$1(MapDecoder.java:52) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.DataResult.lambda$flatMap$11(DataResult.java:139) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at com.mojang.datafixers.util.Either$Left.map(Either.java:38) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.DataResult.flatMap(DataResult.java:137) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at com.mojang.serialization.MapDecoder.compressedDecode(MapDecoder.java:52) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.MapCodec$MapCodecCodec.decode(MapCodec.java:91) ~[datafixerupper-6.0.8.jar%23114!/:?] {}     at com.mojang.serialization.Decoder.parse(Decoder.java:18) ~[datafixerupper-6.0.8.jar%23114!/:?] {re:mixin}     at net.minecraftforge.common.loot.LootModifierManager.apply(LootModifierManager.java:79) ~[forge-1.20.1-47.3.0-universal.jar%23537!/:?] {re:classloading}     at net.minecraftforge.common.loot.LootModifierManager.m_5787_(LootModifierManager.java:38) ~[forge-1.20.1-47.3.0-universal.jar%23537!/:?] {re:classloading}     at net.minecraft.server.packs.resources.SimplePreparableReloadListener.m_10789_(SimplePreparableReloadListener.java:13) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,re:classloading,pl:mixin:APP:moonlight.mixins.json:ConditionHackMixin,pl:mixin:A}     at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:718) ~[?:?] {}     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:mixin,re:classloading,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.SimpleReloadInstanceMixin,pl:mixin:A}     at net.minecraft.util.thread.BlockableEventLoop.m_6367_(BlockableEventLoop.java:156) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:A}     at net.minecraft.util.thread.ReentrantBlockableEventLoop.m_6367_(ReentrantBlockableEventLoop.java:23) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:computing_frames,re:mixin,re:classloading}     at net.minecraft.util.thread.BlockableEventLoop.m_7245_(BlockableEventLoop.java:130) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:A}     at net.minecraft.util.thread.BlockableEventLoop.m_18701_(BlockableEventLoop.java:139) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:A}     at net.minecraft.client.Minecraft.m_18701_(Minecraft.java:3441) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:scguns.mixins.json:client.MinecraftMixin,pl:mixin:APP:pointblank.mixins.json:MinecraftAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:cgm.mixins.json:client.MinecraftMixin,pl:mixin:APP:xkdeco.mixins.json:client.MinecraftMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:kubejs-common.mixins.json:MinecraftClientMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:quark.mixins.json:client.MinecraftMixin,pl:mixin:APP:sound_physics_remastered.mixins.json:MinecraftMixin,pl:mixin:APP:create.mixins.json:client.WindowResizeMixin,pl:mixin:APP:embeddium.mixins.json:core.render.MinecraftAccessor,pl:mixin:APP:embeddium.mixins.json:core.MinecraftClientMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.screens.worldselection.CreateWorldScreen.m_232896_(CreateWorldScreen.java:131) ~[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.gui.screens.worldselection.SelectWorldScreen.m_279861_(SelectWorldScreen.java:60) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:classloading}     at net.minecraft.client.gui.components.Button.m_5691_(Button.java:38) ~[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.gui.components.AbstractButton.m_5716_(AbstractButton.java:55) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:runtimedistcleaner:A,re:computing_frames,pl:runtimedistcleaner:A,re:classloading,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.components.AbstractWidget.m_6375_(AbstractWidget.java:175) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.components.events.ContainerEventHandler.m_6375_(ContainerEventHandler.java:38) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:computing_frames,re:mixin,re:classloading}     at net.minecraft.client.MouseHandler.m_168084_(MouseHandler.java:92) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:scguns.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:pointblank.mixins.json:MouseHandlerMixin,pl:mixin:APP:mixins.cofhcore.json:MouseHandlerMixin,pl:mixin:APP:corgilib-common.mixins.json:client.MixinMouseHandler,pl:mixin:APP:cgm.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMouseHandler,pl:mixin:APP:customnpcs.mixins.json:MouseHelperMixin,pl:mixin:APP:smallships-common.mixins.json:zooming.client.MouseHandlerMixin,pl:mixin:APP:supplementaries-common.mixins.json:MouseHandlerMixin,pl:mixin:APP:create.mixins.json:accessor.MouseHandlerAccessor,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.screens.Screen.m_96579_(Screen.java:437) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:world_preview.mixins.json:client.ScreenAccessor,pl:mixin:APP:cumulus_menus.mixins.json:client.accessor.ScreenAccessor,pl:mixin:APP:kiwi.mixins.json:client.ScreenMixin,pl:mixin:APP:aether.mixins.json:client.accessor.ScreenAccessor,pl:mixin:APP:customnpcs.mixins.json:ScreenMixin,pl:mixin:APP:refurbished_furniture.common.mixins.json:client.ScreenAccessor,pl:mixin:APP:kubejs-common.mixins.json:ScreenMixin,pl:mixin:APP:quark.mixins.json:client.ScreenMixin,pl:mixin:APP:minecolonies_tweaks.mixin.client.json:minecraft.ScreenMixin,pl:mixin:APP:ae2.mixins.json:WrappedGenericStackTooltipModIdMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.MouseHandler.m_91530_(MouseHandler.java:89) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:scguns.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:pointblank.mixins.json:MouseHandlerMixin,pl:mixin:APP:mixins.cofhcore.json:MouseHandlerMixin,pl:mixin:APP:corgilib-common.mixins.json:client.MixinMouseHandler,pl:mixin:APP:cgm.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMouseHandler,pl:mixin:APP:customnpcs.mixins.json:MouseHelperMixin,pl:mixin:APP:smallships-common.mixins.json:zooming.client.MouseHandlerMixin,pl:mixin:APP:supplementaries-common.mixins.json:MouseHandlerMixin,pl:mixin:APP:create.mixins.json:accessor.MouseHandlerAccessor,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.MouseHandler.m_168091_(MouseHandler.java:189) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:scguns.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:pointblank.mixins.json:MouseHandlerMixin,pl:mixin:APP:mixins.cofhcore.json:MouseHandlerMixin,pl:mixin:APP:corgilib-common.mixins.json:client.MixinMouseHandler,pl:mixin:APP:cgm.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMouseHandler,pl:mixin:APP:customnpcs.mixins.json:MouseHelperMixin,pl:mixin:APP:smallships-common.mixins.json:zooming.client.MouseHandlerMixin,pl:mixin:APP:supplementaries-common.mixins.json:MouseHandlerMixin,pl:mixin:APP:create.mixins.json:accessor.MouseHandlerAccessor,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:102) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:A}     at net.minecraft.client.MouseHandler.m_91565_(MouseHandler.java:188) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:scguns.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:pointblank.mixins.json:MouseHandlerMixin,pl:mixin:APP:mixins.cofhcore.json:MouseHandlerMixin,pl:mixin:APP:corgilib-common.mixins.json:client.MixinMouseHandler,pl:mixin:APP:cgm.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMouseHandler,pl:mixin:APP:customnpcs.mixins.json:MouseHelperMixin,pl:mixin:APP:smallships-common.mixins.json:zooming.client.MouseHandlerMixin,pl:mixin:APP:supplementaries-common.mixins.json:MouseHandlerMixin,pl:mixin:APP:create.mixins.json:accessor.MouseHandlerAccessor,pl:mixin:A,pl:runtimedistcleaner:A}     at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:43) ~[lwjgl-glfw-3.3.1.jar%23141!/:build 7] {}     at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.3.1.jar%23153!/:build 7] {}     at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3474) ~[lwjgl-glfw-3.3.1.jar%23141!/:build 7] {re:mixin} -- Affected screen -- Details:     Screen name: net.minecraft.client.gui.screens.worldselection.SelectWorldScreen Stacktrace:     at net.minecraft.client.gui.screens.Screen.m_96579_(Screen.java:437) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:world_preview.mixins.json:client.ScreenAccessor,pl:mixin:APP:cumulus_menus.mixins.json:client.accessor.ScreenAccessor,pl:mixin:APP:kiwi.mixins.json:client.ScreenMixin,pl:mixin:APP:aether.mixins.json:client.accessor.ScreenAccessor,pl:mixin:APP:customnpcs.mixins.json:ScreenMixin,pl:mixin:APP:refurbished_furniture.common.mixins.json:client.ScreenAccessor,pl:mixin:APP:kubejs-common.mixins.json:ScreenMixin,pl:mixin:APP:quark.mixins.json:client.ScreenMixin,pl:mixin:APP:minecolonies_tweaks.mixin.client.json:minecraft.ScreenMixin,pl:mixin:APP:ae2.mixins.json:WrappedGenericStackTooltipModIdMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.MouseHandler.m_91530_(MouseHandler.java:89) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:scguns.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:pointblank.mixins.json:MouseHandlerMixin,pl:mixin:APP:mixins.cofhcore.json:MouseHandlerMixin,pl:mixin:APP:corgilib-common.mixins.json:client.MixinMouseHandler,pl:mixin:APP:cgm.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMouseHandler,pl:mixin:APP:customnpcs.mixins.json:MouseHelperMixin,pl:mixin:APP:smallships-common.mixins.json:zooming.client.MouseHandlerMixin,pl:mixin:APP:supplementaries-common.mixins.json:MouseHandlerMixin,pl:mixin:APP:create.mixins.json:accessor.MouseHandlerAccessor,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.MouseHandler.m_168091_(MouseHandler.java:189) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:scguns.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:pointblank.mixins.json:MouseHandlerMixin,pl:mixin:APP:mixins.cofhcore.json:MouseHandlerMixin,pl:mixin:APP:corgilib-common.mixins.json:client.MixinMouseHandler,pl:mixin:APP:cgm.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMouseHandler,pl:mixin:APP:customnpcs.mixins.json:MouseHelperMixin,pl:mixin:APP:smallships-common.mixins.json:zooming.client.MouseHandlerMixin,pl:mixin:APP:supplementaries-common.mixins.json:MouseHandlerMixin,pl:mixin:APP:create.mixins.json:accessor.MouseHandlerAccessor,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:102) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.BlockableEventLoopMixin,pl:mixin:A}     at net.minecraft.client.MouseHandler.m_91565_(MouseHandler.java:188) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:scguns.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:pointblank.mixins.json:MouseHandlerMixin,pl:mixin:APP:mixins.cofhcore.json:MouseHandlerMixin,pl:mixin:APP:corgilib-common.mixins.json:client.MixinMouseHandler,pl:mixin:APP:cgm.mixins.json:client.MouseHandlerMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMouseHandler,pl:mixin:APP:customnpcs.mixins.json:MouseHelperMixin,pl:mixin:APP:smallships-common.mixins.json:zooming.client.MouseHandlerMixin,pl:mixin:APP:supplementaries-common.mixins.json:MouseHandlerMixin,pl:mixin:APP:create.mixins.json:accessor.MouseHandlerAccessor,pl:mixin:A,pl:runtimedistcleaner:A}     at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:43) ~[lwjgl-glfw-3.3.1.jar%23141!/:build 7] {}     at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.3.1.jar%23153!/:build 7] {}     at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3474) ~[lwjgl-glfw-3.3.1.jar%23141!/:build 7] {re:mixin}     at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:237) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:flywheel.mixins.json:RenderTexturesMixin,pl:mixin:APP:embeddium.mixins.json:workarounds.event_loop.RenderSystemMixin,pl:mixin:A}     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1173) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:scguns.mixins.json:client.MinecraftMixin,pl:mixin:APP:pointblank.mixins.json:MinecraftAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:cgm.mixins.json:client.MinecraftMixin,pl:mixin:APP:xkdeco.mixins.json:client.MinecraftMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:kubejs-common.mixins.json:MinecraftClientMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:quark.mixins.json:client.MinecraftMixin,pl:mixin:APP:sound_physics_remastered.mixins.json:MinecraftMixin,pl:mixin:APP:create.mixins.json:client.WindowResizeMixin,pl:mixin:APP:embeddium.mixins.json:core.render.MinecraftAccessor,pl:mixin:APP:embeddium.mixins.json:core.MinecraftClientMixin,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,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:scguns.mixins.json:client.MinecraftMixin,pl:mixin:APP:pointblank.mixins.json:MinecraftAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:cgm.mixins.json:client.MinecraftMixin,pl:mixin:APP:xkdeco.mixins.json:client.MinecraftMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:kubejs-common.mixins.json:MinecraftClientMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:quark.mixins.json:client.MinecraftMixin,pl:mixin:APP:sound_physics_remastered.mixins.json:MinecraftMixin,pl:mixin:APP:create.mixins.json:client.WindowResizeMixin,pl:mixin:APP:embeddium.mixins.json:core.render.MinecraftAccessor,pl:mixin:APP:embeddium.mixins.json:core.MinecraftClientMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:flywheel.mixins.json:ClientMainMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {re:mixin}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.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: Yes     Packs: pointblank_resources, builtin/towntalk, vanilla, mod_resources, Moonlight Mods Dynamic Assets, xkdeco_mimic_wall, KubeJS Resource Pack [assets], file/Create Computers 1.2.1 - 1.20.1.zip, file/Create Immersive Aircrafts Resource Pack 1.20.1 - 2.0.zip, file/Create_Applied_Energistics_2.zip, file/Create Immersive Aircraft Warship ResoucePack v1.0.zip, CGM-Unofficial-1.4.18+Forge+1.20.1.jar:packs/cgm_pbr, cnpcs Stacktrace:     at net.minecraft.client.ResourceLoadStateTracker.m_168562_(ResourceLoadStateTracker.java:49) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:classloading}     at net.minecraft.client.Minecraft.m_91354_(Minecraft.java:2326) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:scguns.mixins.json:client.MinecraftMixin,pl:mixin:APP:pointblank.mixins.json:MinecraftAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:cgm.mixins.json:client.MinecraftMixin,pl:mixin:APP:xkdeco.mixins.json:client.MinecraftMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:kubejs-common.mixins.json:MinecraftClientMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:quark.mixins.json:client.MinecraftMixin,pl:mixin:APP:sound_physics_remastered.mixins.json:MinecraftMixin,pl:mixin:APP:create.mixins.json:client.WindowResizeMixin,pl:mixin:APP:embeddium.mixins.json:core.render.MinecraftAccessor,pl:mixin:APP:embeddium.mixins.json:core.MinecraftClientMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:735) ~[client-1.20.1-20230612.114412-srg.jar%23532!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaerominimap:xaero_minecraftclient,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:scguns.mixins.json:client.MinecraftMixin,pl:mixin:APP:pointblank.mixins.json:MinecraftAccessorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:cgm.mixins.json:client.MinecraftMixin,pl:mixin:APP:xkdeco.mixins.json:client.MinecraftMixin,pl:mixin:APP:railways-common.mixins.json:conductor_possession.MixinMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:kubejs-common.mixins.json:MinecraftClientMixin,pl:mixin:APP:moonlight-common.mixins.json:MinecraftMixin,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:quark.mixins.json:client.MinecraftMixin,pl:mixin:APP:sound_physics_remastered.mixins.json:MinecraftMixin,pl:mixin:APP:create.mixins.json:client.WindowResizeMixin,pl:mixin:APP:embeddium.mixins.json:core.render.MinecraftAccessor,pl:mixin:APP:embeddium.mixins.json:core.MinecraftClientMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:flywheel.mixins.json:ClientMainMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {re:mixin}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.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:?] {} -- 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: 708545136 bytes (675 MiB) / 3751804928 bytes (3578 MiB) up to 4294967296 bytes (4096 MiB)     CPUs: 16     Processor Vendor: AuthenticAMD     Processor Name: AMD Ryzen 7 5800X 8-Core Processor                  Identifier: AuthenticAMD Family 25 Model 33 Stepping 2     Microarchitecture: Zen 3     Frequency (GHz): 3.79     Number of physical packages: 1     Number of physical CPUs: 8     Number of logical CPUs: 16     Graphics card #0 name: AMD Radeon RX 6800 XT     Graphics card #0 vendor: Advanced Micro Devices, Inc. (0x1002)     Graphics card #0 VRAM (MB): 4095.00     Graphics card #0 deviceId: 0x73bf     Graphics card #0 versionInfo: DriverVersion=32.0.11029.1008     Memory slot #0 capacity (MB): 16384.00     Memory slot #0 clockSpeed (GHz): 3.60     Memory slot #0 type: DDR4     Memory slot #1 capacity (MB): 16384.00     Memory slot #1 clockSpeed (GHz): 3.60     Memory slot #1 type: DDR4     Virtual memory max (MB): 34739.45     Virtual memory used (MB): 26058.27     Swap memory total (MB): 2048.00     Swap memory used (MB): 65.20     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx4096m -Xms256m     Launched Version: forge-47.3.0     Backend library: LWJGL version 3.3.1 build 7     Backend API: AMD Radeon RX 6800 XT GL version 4.6.0 Core Profile Context 24.7.1.240711, ATI Technologies Inc.     Window size: 2560x1440     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: pointblank_resources, builtin/towntalk (incompatible), vanilla, mod_resources, Moonlight Mods Dynamic Assets, xkdeco_mimic_wall (incompatible), file/Create Computers 1.2.1 - 1.20.1.zip, file/Create Immersive Aircrafts Resource Pack 1.20.1 - 2.0.zip, file/Create_Applied_Energistics_2.zip, file/Create Immersive Aircraft Warship ResoucePack v1.0.zip, feature/cgm_pbr_textures     Current Language: en_us     CPU: 16x AMD Ryzen 7 5800X 8-Core Processor      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:          man_of_many_planes-0.2.0+1.20.1-forge.jar         |Man of Many Planes            |man_of_many_planes            |0.2.0+1.20.1        |DONE      |Manifest: NOSIGNATURE         supermartijn642configlib-1.1.8-forge-mc1.20.jar   |SuperMartijn642's Config Libra|supermartijn642configlib      |1.1.8               |DONE      |Manifest: NOSIGNATURE         createdeco-2.0.2-1.20.1-forge.jar                 |Create Deco                   |createdeco                    |2.0.2-1.20.1-forge  |DONE      |Manifest: NOSIGNATURE         cccbridge-mc1.20.1-forge-1.6.3.jar                |CC:C Bridge                   |cccbridge                     |1.6.3-forge         |DONE      |Manifest: NOSIGNATURE         scena-forge-1.0.103.jar                           |Scena                         |scena                         |1.0.103             |DONE      |Manifest: NOSIGNATURE         botarium-forge-1.20.1-2.3.4.jar                   |Botarium                      |botarium                      |2.3.4               |DONE      |Manifest: NOSIGNATURE         world_preview-forge-1.20.1-1.3.1.jar              |World Preview                 |world_preview                 |1.3.1               |DONE      |Manifest: NOSIGNATURE         aquaculture_delight_1.0.0_forge_1.20.1.jar        |Aquaculture Delight           |aquaculturedelight            |1.0.0               |DONE      |Manifest: NOSIGNATURE         ScorchedBrass-0.0.3-1.20.1.jar                    |Scorched Guns Brass           |scbrass                       |0.0.1               |DONE      |Manifest: NOSIGNATURE         sound-physics-remastered-forge-1.20.1-1.4.5.jar   |Sound Physics Remastered      |sound_physics_remastered      |1.20.1-1.4.5        |DONE      |Manifest: NOSIGNATURE         createamazingdungeons-1.0.0-1.20.1.jar            |Create Amazing Dungeons       |createamazingdungeons         |1.0.0-1.20.1        |DONE      |Manifest: NOSIGNATURE         modernfix-forge-5.19.4+mc1.20.1.jar               |ModernFix                     |modernfix                     |5.19.4+mc1.20.1     |DONE      |Manifest: NOSIGNATURE         createdieselgenerators-1.20.1-1.2i.jar            |Create Diesel Generators      |createdieselgenerators        |1.20.1-1.2i         |DONE      |Manifest: NOSIGNATURE         create-new-age-forge-1.20.1-1.1.2.jar             |Create: New Age               |create_new_age                |1.1.2               |DONE      |Manifest: NOSIGNATURE         embeddium-0.3.31+mc1.20.1.jar                     |Embeddium                     |embeddium                     |0.3.31+mc1.20.1     |DONE      |Manifest: NOSIGNATURE         vintagedelight-0.1.4.jar                          |Vintage Delight               |vintagedelight                |0.1.4               |DONE      |Manifest: NOSIGNATURE         torchmaster-20.1.8.jar                            |Torchmaster                   |torchmaster                   |20.1.8              |DONE      |Manifest: NOSIGNATURE         repurposed_structures-7.1.15+1.20.1-forge.jar     |Repurposed Structures         |repurposed_structures         |7.1.15+1.20.1-forge |DONE      |Manifest: NOSIGNATURE         CreateDrinks-1.0.2-1.20.1.jar                     |Create: Drinks                |create_drinks                 |1.0.2               |DONE      |Manifest: NOSIGNATURE         Explorify v1.6.2 f10-48.jar                       |Explorify                     |explorify                     |1.6.2               |DONE      |Manifest: NOSIGNATURE         clockworklib-1.20.1-1.0.0.jar                     |ClockworkLib                  |clockwork                     |1.20.1-1.0.0        |DONE      |Manifest: NOSIGNATURE         supermartijn642corelib-1.1.17a-forge-mc1.20.1.jar |SuperMartijn642's Core Lib    |supermartijn642corelib        |1.1.17+a            |DONE      |Manifest: NOSIGNATURE         imst_n-1.1.0.jar                                  |Immersive Structures:Nether ed|imst_n                        |1.1.0               |DONE      |Manifest: NOSIGNATURE         curios-forge-5.10.0+1.20.1.jar                    |Curios API                    |curios                        |5.10.0+1.20.1       |DONE      |Manifest: NOSIGNATURE         createarmoryv0.6.1n.jar                           |CreateArmory                  |createarmory                  |0.5                 |DONE      |Manifest: NOSIGNATURE         FramedBlocks-9.3.1.jar                            |FramedBlocks                  |framedblocks                  |9.3.1               |DONE      |Manifest: NOSIGNATURE         Butchersdelight Foods beta 1.20.1 1.0.3.jar       |ButchersDelightfoods          |butchersdelightfoods          |1.20.11.0.3         |DONE      |Manifest: NOSIGNATURE         ScorchedGuns-0.3.2.5-1.20.1.jar                   |Scorched Guns                 |scguns                        |0.3.2.5             |DONE      |Manifest: NOSIGNATURE         salt-1.20.1-1.2.6.jar                             |Salt                          |salt                          |1.2.6               |DONE      |Manifest: NOSIGNATURE         pointblank-forge-1.20.1-1.7.6.jar                 |Point Blank                   |pointblank                    |1.7.6               |DONE      |Manifest: NOSIGNATURE         cumulus_menus-1.20.1-1.0.1-neoforge.jar           |Cumulus                       |cumulus_menus                 |0.0NONE             |DONE      |Manifest: NOSIGNATURE         constructionwand-1.20.1-2.11.jar                  |Construction Wand             |constructionwand              |1.20.1-2.11         |DONE      |Manifest: NOSIGNATURE         Butchersdelight beta 1.20.1 2.1.0.jar             |ButchersDelight               |butchersdelight               |1.20.12.1.0         |DONE      |Manifest: NOSIGNATURE         beer_craft-1.20.1-1.1.jar                         |Beer Craft                    |beer_craft                    |1.2                 |DONE      |Manifest: NOSIGNATURE         otbwgdelight-1.0.2.1-1.20.1.jar                   |Oh The Biomes We've Gone Delig|otbwgdelight                  |1.0.2.1-1.20.1      |DONE      |Manifest: NOSIGNATURE         nitrogen_internals-1.20.1-1.0.11-neoforge.jar     |Nitrogen                      |nitrogen_internals            |0.0NONE             |DONE      |Manifest: NOSIGNATURE         JadeAddons-1.20.1-Forge-5.3.1.jar                 |Jade Addons                   |jadeaddons                    |5.3.1+forge         |DONE      |Manifest: NOSIGNATURE         l2library-2.4.14-slim.jar                         |L2 Library                    |l2library                     |2.4.14              |DONE      |Manifest: NOSIGNATURE         sliceanddice-forge-3.3.0.jar                      |Create Slice & Dice           |sliceanddice                  |3.3.0               |DONE      |Manifest: NOSIGNATURE         recruits-1.20.1-1.12.3.jar                        |Recruits Mod                  |recruits                      |1.12.3              |DONE      |Manifest: NOSIGNATURE         QuarkOddities-1.20.1.jar                          |Quark Oddities                |quarkoddities                 |1.20.1              |DONE      |Manifest: NOSIGNATURE         bellsandwhistles-0.4.3-1.20.x.jar                 |Create: Bells & Whistles      |bellsandwhistles              |0.4.3-1.20.x        |DONE      |Manifest: NOSIGNATURE         kiwi-11.8.20+forge.jar                            |Kiwi Library                  |kiwi                          |11.8.20+forge       |DONE      |Manifest: NOSIGNATURE         YeehawTowns-1.0.2-1.20.1-forge.jar                |Yeehaw Towns                  |yeehaw_towns                  |1.0.2               |DONE      |Manifest: NOSIGNATURE         createbigcannons-5.5.1-mc.1.20.1-forge.jar        |Create Big Cannons            |createbigcannons              |5.5.1+mc.1.20.1-forg|DONE      |Manifest: NOSIGNATURE         rechiseled-1.1.6-forge-mc1.20.jar                 |Rechiseled                    |rechiseled                    |1.1.6               |DONE      |Manifest: NOSIGNATURE         createloveandwar-0.2-1.20.1.jar                   |Create: Love and War          |createloveandwar              |0.2-1.20.1          |DONE      |Manifest: NOSIGNATURE         immersive_weathering-1.20.1-2.0.3-forge.jar       |Immersive Weathering          |immersive_weathering          |1.20.1-2.0.3        |DONE      |Manifest: NOSIGNATURE         cnpcs_contentback_1.2.3.jar                       |CustomNPC Contentback         |cnpc_contentback              |1.2.3               |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         EpheroLib-1.20.1-FORGE-1.2.0.jar                  |BOZOID                        |epherolib                     |0.1.2               |DONE      |Manifest: NOSIGNATURE         fabridge-0.0.4-R-1.20.1.jar                       |Fabridge                      |fabridge                      |0.0.4-R-1.20.1      |DONE      |Manifest: NOSIGNATURE         northstar-0.1cb-1.20.1.jar                        |Northstar                     |northstar                     |0.1cb-1.20.1        |DONE      |Manifest: NOSIGNATURE         design_decor-0.4.0b-1.20.1.jar                    |Create: Design n' Decor       |design_decor                  |0.4.0b              |DONE      |Manifest: NOSIGNATURE         rechiseledcreate-1.0.2-forge-mc1.20.jar           |Rechiseled: Create            |rechiseledcreate              |1.0.2               |DONE      |Manifest: NOSIGNATURE         fusion-1.1.1-forge-mc1.20.1.jar                   |Fusion                        |fusion                        |1.1.1               |DONE      |Manifest: NOSIGNATURE         imst-2.1.0.jar                                    |Immersive Structures          |imst                          |2.1.0               |DONE      |Manifest: NOSIGNATURE         aether_delight_1.0.0_forge_1.20.1.jar             |Aether Delight                |aetherdelight                 |1.0.0               |DONE      |Manifest: NOSIGNATURE         forge-1.20.1-47.3.0-universal.jar                 |Forge                         |forge                         |47.3.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         create_salt 1.20.1-1.1.0.jar                      |Create : The Salt             |create__the_salt              |1.0.0               |DONE      |Manifest: NOSIGNATURE         client-1.20.1-20230612.114412-srg.jar             |Minecraft                     |minecraft                     |1.20.1              |DONE      |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         create_pillagers_arise-113.23.bt-forge-1.20.1.jar |Create: Pillagers Arise       |create_pillagers_arise        |113.23.             |DONE      |Manifest: NOSIGNATURE         soldiers_delight-1.1.0.jar                        |Soldier's Delight             |chaseisntasoldier             |1.1.0               |DONE      |Manifest: NOSIGNATURE         cofh_core-1.20.1-11.0.2.56.jar                    |CoFH Core                     |cofh_core                     |11.0.2              |DONE      |Manifest: NOSIGNATURE         thermal_core-1.20.1-11.0.6.24.jar                 |Thermal Series                |thermal                       |11.0.6              |DONE      |Manifest: NOSIGNATURE         thermal_integration-1.20.1-11.0.1.27.jar          |Thermal Integration           |thermal_integration           |11.0.1              |DONE      |Manifest: NOSIGNATURE         thermal_innovation-1.20.1-11.0.1.23.jar           |Thermal Innovation            |thermal_innovation            |11.0.1              |DONE      |Manifest: NOSIGNATURE         thermal_foundation-1.20.1-11.0.6.70.jar           |Thermal Foundation            |thermal_foundation            |11.0.6              |DONE      |Manifest: NOSIGNATURE         thermal_locomotion-1.20.1-11.0.1.19.jar           |Thermal Locomotion            |thermal_locomotion            |11.0.1              |DONE      |Manifest: NOSIGNATURE         thermal_dynamics-1.20.1-11.0.1.23.jar             |Thermal Dynamics              |thermal_dynamics              |11.0.1              |DONE      |Manifest: NOSIGNATURE         TerraBlender-forge-1.20.1-3.0.1.7.jar             |TerraBlender                  |terrablender                  |3.0.1.7             |DONE      |Manifest: NOSIGNATURE         BiomesOPlenty-1.20.1-18.0.0.592.jar               |Biomes O' Plenty              |biomesoplenty                 |18.0.0.592          |DONE      |Manifest: NOSIGNATURE         flansvendersgame-1.20.1-0.4.193.jar               |Vender's Game - A Flan's Mod C|flansvendersgame              |2.0.193             |DONE      |Manifest: NOSIGNATURE         Oh-The-Trees-Youll-Grow-forge-1.20.1-1.3.1.jar    |Oh The Trees You'll Grow      |ohthetreesyoullgrow           |1.20.1-1.3.1        |DONE      |Manifest: NOSIGNATURE         Corgilib-Forge-1.20.1-4.0.3.2.jar                 |CorgiLib                      |corgilib                      |4.0.3.2             |DONE      |Manifest: NOSIGNATURE         domum_ornamentum-1.20.1-1.0.186-RELEASE-universal.|Domum Ornamentum              |domum_ornamentum              |1.20.1-1.0.186-RELEA|DONE      |Manifest: NOSIGNATURE         kffmod-4.11.0.jar                                 |Kotlin For Forge              |kotlinforforge                |4.11.0              |DONE      |Manifest: NOSIGNATURE         farmersrespite-1.20.1-2.1.2.jar                   |Farmer's Respite              |farmersrespite                |1.20.1-2.1          |DONE      |Manifest: NOSIGNATURE         flywheel-forge-1.20.1-0.6.11-13.jar               |Flywheel                      |flywheel                      |0.6.11-13           |DONE      |Manifest: NOSIGNATURE         Xaeros_Minimap_24.5.0_Forge_1.20.jar              |Xaero's Minimap               |xaerominimap                  |24.5.0              |DONE      |Manifest: NOSIGNATURE         decoration-delight-1.20.1.jar                     |Decoration Delight            |decoration_delight            |1.0.0               |DONE      |Manifest: NOSIGNATURE         Croptopia-1.20.1-FORGE-3.0.4.jar                  |Croptopia                     |croptopia                     |3.0.4               |DONE      |Manifest: NOSIGNATURE         thermal_cultivation-1.20.1-11.0.1.24.jar          |Thermal Cultivation           |thermal_cultivation           |11.0.1              |DONE      |Manifest: NOSIGNATURE         almostunified-forge-1.20.1-0.9.4.jar              |AlmostUnified                 |almostunified                 |1.20.1-0.9.4        |DONE      |Manifest: NOSIGNATURE         jei-1.20.1-forge-15.20.0.104.jar                  |Just Enough Items             |jei                           |15.20.0.104         |DONE      |Manifest: NOSIGNATURE         CGM-Unofficial-1.4.18+Forge+1.20.1.jar            |MrCrayfish's Gun Mod          |cgm                           |1.4.18              |DONE      |Manifest: NOSIGNATURE         Zeta-1.0-24.jar                                   |Zeta                          |zeta                          |1.0-24              |DONE      |Manifest: NOSIGNATURE         structurize-1.20.1-1.0.742-RELEASE.jar            |Structurize                   |structurize                   |1.20.1-1.0.742-RELEA|DONE      |Manifest: NOSIGNATURE         oceansdelight-1.0.2-1.20.jar                      |Ocean's Delight               |oceansdelight                 |1.0.2-1.20          |DONE      |Manifest: NOSIGNATURE         appleskin-forge-mc1.20.1-2.5.1.jar                |AppleSkin                     |appleskin                     |2.5.1+mc1.20.1      |DONE      |Manifest: NOSIGNATURE         Aquaculture-1.20.1-2.5.2.jar                      |Aquaculture 2                 |aquaculture                   |2.5.2               |DONE      |Manifest: NOSIGNATURE         XeKr's Decoration-1.20.1-Forge-0.8.2.jar          |XeKr's Decoration             |xkdeco                        |0.8.2+forge         |DONE      |Manifest: NOSIGNATURE         frycooks_delight-1.20.1-1.0.1.jar                 |Frycook's Delight             |frycooks_delight              |1.20.1-1.0.1        |DONE      |Manifest: NOSIGNATURE         fruitsdelight-1.0.11.jar                          |Fruits Delight                |fruitsdelight                 |1.0.11              |DONE      |Manifest: NOSIGNATURE         cristellib-1.1.5-forge.jar                        |Cristel Lib                   |cristellib                    |1.1.5               |DONE      |Manifest: NOSIGNATURE         flansmod-1.20.1-0.4.193.jar                       |Flan's Mod                    |flansmod                      |0.4                 |DONE      |Manifest: NOSIGNATURE         rationcraft-1.3.5.jar                             |Rationcraft                   |chaseisration                 |1.3.5               |DONE      |Manifest: NOSIGNATURE         Renforced_Brass_Armor_1.20.1.jar                  |Create Upgraded Armor         |create_upgraded_armor         |1.0.0               |DONE      |Manifest: NOSIGNATURE         create_misc_and_things_ 1.20.1_4.0A.jar           |create: things and misc       |create_things_and_misc        |1.0.0               |DONE      |Manifest: NOSIGNATURE         create_ltab_f-2.1.2.jar                           |Create_ltab_f                 |create_ltab_f                 |2.1.2               |DONE      |Manifest: NOSIGNATURE         geckolib-forge-1.20.1-4.4.9.jar                   |GeckoLib 4                    |geckolib                      |4.4.9               |DONE      |Manifest: NOSIGNATURE         aether-1.20.1-1.5.0-neoforge.jar                  |The Aether                    |aether                        |0.0NONE             |DONE      |Manifest: NOSIGNATURE         deep_aether-1.20.1-1.0.4.jar                      |Deep Aether                   |deep_aether                   |1.20.1-1.0.4        |DONE      |Manifest: NOSIGNATURE         aeroblender-1.20.1-1.0.1-neoforge.jar             |AeroBlender                   |aeroblender                   |1.20.1-1.0.1-neoforg|DONE      |Manifest: NOSIGNATURE         towntalk-1.20.1-1.1.0.jar                         |TownTalk                      |towntalk                      |1.1.0               |DONE      |Manifest: NOSIGNATURE         Architects-Palette-1.20.1-1.3.6.1.jar             |Architect's Palette           |architects_palette            |1.3.6.1             |DONE      |Manifest: NOSIGNATURE         immersive_aircraft-1.1.2+1.20.1-forge.jar         |Immersive Aircraft            |immersive_aircraft            |1.1.2+1.20.1        |DONE      |Manifest: NOSIGNATURE         sophisticatedcore-1.20.1-0.6.33.711.jar           |Sophisticated Core            |sophisticatedcore             |0.6.33.711          |DONE      |Manifest: NOSIGNATURE         ritchiesprojectilelib-2.0.0-dev+mc.1.20.1-forge-bu|Ritchie's Projectile Library  |ritchiesprojectilelib         |2.0.0-dev+mc.1.20.1-|DONE      |Manifest: NOSIGNATURE         XaerosWorldMap_1.39.0_Forge_1.20.jar              |Xaero's World Map             |xaeroworldmap                 |1.39.0              |DONE      |Manifest: NOSIGNATURE         citadel-2.6.0-1.20.1.jar                          |Citadel                       |citadel                       |2.6.0               |DONE      |Manifest: NOSIGNATURE         alexsmobs-1.22.9.jar                              |Alex's Mobs                   |alexsmobs                     |1.22.9              |DONE      |Manifest: NOSIGNATURE         mixinextras-forge-0.2.0.jar                       |MixinExtras                   |mixinextras                   |0.2.0               |DONE      |Manifest: NOSIGNATURE         sophisticatedbackpacks-1.20.1-3.20.11.1115.jar    |Sophisticated Backpacks       |sophisticatedbackpacks        |3.20.11.1115        |DONE      |Manifest: NOSIGNATURE         CreateNumismatics-1.0.6+forge-mc1.20.1.jar        |Create: Numismatics           |numismatics                   |1.0.6+forge-mc1.20.1|DONE      |Manifest: NOSIGNATURE         create_dragon_lib-1.20.1-1.4.3.jar                |Create: Dragon Lib            |create_dragon_lib             |1.4.3               |DONE      |Manifest: NOSIGNATURE         Steam_Rails-1.6.5+forge-mc1.20.1.jar              |Create: Steam 'n' Rails       |railways                      |1.6.5+forge-mc1.20.1|DONE      |Manifest: NOSIGNATURE         interiors-0.5.6+forge-mc1.20.1-build.104.jar      |Create: Interiors             |interiors                     |0.5.6               |DONE      |Manifest: NOSIGNATURE         dummmmmmy-1.20-2.0.2.jar                          |MmmMmmMmmmmm                  |dummmmmmy                     |1.20-2.0.2          |DONE      |Manifest: NOSIGNATURE         CroptopiaAdditions-1.20.1-FORGE-2.4.jar           |Croptopia Additions           |croptopia_additions           |2.4                 |DONE      |Manifest: NOSIGNATURE         DustrialDecor-1.3.5-1.20.jar                      |'Dustrial Decor               |dustrial_decor                |1.3.2               |DONE      |Manifest: NOSIGNATURE         create_ultimate_factory-1.6.0-forge-1.20.1.jar    |Create: Ultimate Factory      |create_ultimate_factory       |1.6.0               |DONE      |Manifest: NOSIGNATURE         flansbasicparts-1.20.1-0.4.193.jar                |Basic Parts - A Flan's Mod Con|flansbasicparts               |2.0.193             |DONE      |Manifest: NOSIGNATURE         HealthDisease-1.20.1-1-2-6.jar                    |health and disease            |health_and_disease            |1.2.2               |DONE      |Manifest: NOSIGNATURE         blockui-1.20.1-1.0.156-RELEASE.jar                |UI Library Mod                |blockui                       |1.20.1-1.0.156-RELEA|DONE      |Manifest: NOSIGNATURE         multipiston-1.20-1.2.43-RELEASE.jar               |Multi-Piston                  |multipiston                   |1.20-1.2.43-RELEASE |DONE      |Manifest: NOSIGNATURE         thermal_expansion-1.20.1-11.0.1.29.jar            |Thermal Expansion             |thermal_expansion             |11.0.1              |DONE      |Manifest: NOSIGNATURE         lostcities-1.20-7.3.2.jar                         |LostCities                    |lostcities                    |1.20-7.3.2          |DONE      |Manifest: NOSIGNATURE         CustomNPCs-1.20.1-GBPort-Unofficial-20240824.jar  |Custom NPCs                   |customnpcs                    |1.20.1.20240824     |DONE      |Manifest: NOSIGNATURE         architectury-9.2.14-forge.jar                     |Architectury                  |architectury                  |9.2.14              |DONE      |Manifest: NOSIGNATURE         cc-tweaked-1.20.1-forge-1.113.1.jar               |CC: Tweaked                   |computercraft                 |1.113.1             |DONE      |Manifest: NOSIGNATURE         AI-Improvements-1.20-0.5.2.jar                    |AI-Improvements               |aiimprovements                |0.5.2               |DONE      |Manifest: NOSIGNATURE         refurbished_furniture-forge-1.20.1-1.0.6.jar      |MrCrayfish's Furniture Mod: Re|refurbished_furniture         |1.0.6               |DONE      |Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         framework-forge-1.20.1-0.7.8.jar                  |Framework                     |framework                     |0.7.8               |DONE      |Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         smallships-forge-1.20.1-2.0.0-b1.4.jar            |Small Ships                   |smallships                    |2.0.0-b1.4          |DONE      |Manifest: NOSIGNATURE         Towns-and-Towers-1.12-Fabric+Forge.jar            |Towns and Towers              |t_and_t                       |0.0NONE             |DONE      |Manifest: NOSIGNATURE         rhino-forge-2001.2.3-build.6.jar                  |Rhino                         |rhino                         |2001.2.3-build.6    |DONE      |Manifest: NOSIGNATURE         kubejs-forge-2001.6.5-build.14.jar                |KubeJS                        |kubejs                        |2001.6.5-build.14   |DONE      |Manifest: NOSIGNATURE         kubejs-thermal-2001.1.10-build.2.jar              |KubeJS Thermal                |kubejs_thermal                |2001.1.10-build.2   |DONE      |Manifest: NOSIGNATURE         chaseisframework-1.0.0-forge-1.20.1.jar           |Voidless Framework            |chaseisframework              |1.0.0               |DONE      |Manifest: NOSIGNATURE         amendments-1.20-1.2.11.jar                        |Amendments                    |amendments                    |1.20-1.2.11         |DONE      |Manifest: NOSIGNATURE         copycats-2.1.4+mc.1.20.1-forge.jar                |Create: Copycats+             |copycats                      |2.1.4+mc.1.20.1-forg|DONE      |Manifest: NOSIGNATURE         nef-1.2.0-forge-1.20.1.jar                        |NEF                           |nef                           |1.0.0               |DONE      |Manifest: NOSIGNATURE         Oh-The-Biomes-Weve-Gone-Forge-1.3.1.jar           |Oh The Biomes We've Gone      |biomeswevegone                |1.3.1               |DONE      |Manifest: NOSIGNATURE         desolate-1.1.1-forge-1.20.1.jar                   |Desolate                      |desolate                      |1.1.1               |DONE      |Manifest: NOSIGNATURE         marbledsarsenal-1.20.1-2.3.0.jar                  |Marbled's Arsenal             |marbledsarsenal               |1.20.1-2.3.0        |DONE      |Manifest: NOSIGNATURE         mcore-1.20.1-1.0.1.jar                            |Marbled's Core                |mcore                         |1.0.1               |DONE      |Manifest: NOSIGNATURE         decorative_blocks-forge-1.20.1-4.1.3.jar          |Decorative Blocks             |decorative_blocks             |4.1.3               |DONE      |Manifest: NOSIGNATURE         MOAdecor SCIENCE 1.20.1.jar                       |MOA DECOR: SCIENCE            |moa_decor_science             |1.20.1              |DONE      |Manifest: NOSIGNATURE         DistantHorizons-2.2.1-a-1.20.1-forge-fabric.jar   |Distant Horizons              |distanthorizons               |2.2.1-a             |DONE      |Manifest: NOSIGNATURE         Continents_1.20.x_v1.1.5.jar                      |Continents                    |continents                    |1.1.5               |DONE      |Manifest: NOSIGNATURE         Terralith_1.20.x_v2.5.4.jar                       |Terralith                     |terralith                     |2.5.4               |DONE      |Manifest: NOSIGNATURE         moderntrainparts-0.1.7-forge-mc1.20.1-cr0.5.1.f.ja|Modern Train Parts            |moderntrainparts              |0.1.7-forge-mc1.20.1|DONE      |Manifest: NOSIGNATURE         create-1.20.1-0.5.1.h.jar                         |Create                        |create                        |0.5.1.h             |DONE      |Manifest: NOSIGNATURE         kubejs-create-forge-2001.2.5-build.2.jar          |KubeJS Create                 |kubejs_create                 |2001.2.5-build.2    |DONE      |Manifest: NOSIGNATURE         Create-DnDesire-1.20.1-0.1b.Release-Early-Dev.jar |Create: Dreams & Desires      |create_dd                     |0.1b.Release-Early-D|DONE      |Manifest: NOSIGNATURE         create_central_kitchen-1.20.1-for-create-0.5.1.f-1|Create: Central Kitchen       |create_central_kitchen        |1.3.12              |DONE      |Manifest: NOSIGNATURE         ponderjs-1.20.1-1.4.0.jar                         |PonderJS                      |ponderjs                      |1.4.0               |DONE      |Manifest: NOSIGNATURE         tfmg-0.9.2-1.20.1.jar                             |Create: The Factory Must Grow |tfmg                          |0.9.2-1.20.1        |DONE      |Manifest: NOSIGNATURE         moonlight-1.20-2.13.4-forge.jar                   |Moonlight Library             |moonlight                     |1.20-2.13.4         |DONE      |Manifest: NOSIGNATURE         molten_metals-1.20.1-0.1.4-forge.jar              |Molten Metals                 |molten_metals                 |1.20.1-0.1.4        |DONE      |Manifest: NOSIGNATURE         mixinsquared-forge-0.1.1.jar                      |MixinSquared                  |mixinsquared                  |0.1.1               |DONE      |Manifest: NOSIGNATURE         Jade-1.20.1-forge-11.11.1.jar                     |Jade                          |jade                          |11.11.1+forge       |DONE      |Manifest: NOSIGNATURE         appliedenergistics2-forge-15.2.13.jar             |Applied Energistics 2         |ae2                           |15.2.13             |DONE      |Manifest: NOSIGNATURE         TaxTownCitizen+M.1.20.1+ForM.1.2.0.jar            |Tax' Town Citizen             |taxtc                         |1.2.0               |DONE      |Manifest: NOSIGNATURE         forbidden_arcanus-1.20.1-2.2.6.jar                |Forbidden & Arcanus           |forbidden_arcanus             |1.20.1-2.2.6        |DONE      |Manifest: NOSIGNATURE         nethersdelight-1.20.1-4.0.jar                     |Nether's Delight              |nethersdelight                |1.20.1-4.0          |DONE      |Manifest: NOSIGNATURE         Quark-4.0-460.jar                                 |Quark                         |quark                         |4.0-460             |DONE      |Manifest: NOSIGNATURE         supplementaries-1.20-2.8.17.jar                   |Supplementaries               |supplementaries               |1.20-2.8.17         |DONE      |Manifest: NOSIGNATURE         suppsquared-1.20-1.1.15.jar                       |Supplementaries Squared       |suppsquared                   |1.20-1.1.15         |DONE      |Manifest: NOSIGNATURE         packedup-0.5.2-beta.jar                           |Packed Up                     |packedup                      |0.5.2-beta          |DONE      |Manifest: NOSIGNATURE         FarmersDelight-1.20.1-1.2.4.jar                   |Farmer's Delight              |farmersdelight                |1.20.1-1.2.4        |DONE      |Manifest: NOSIGNATURE         cuisinedelight-1.1.15.jar                         |Cuisine Delight               |cuisinedelight                |1.1.15              |DONE      |Manifest: NOSIGNATURE         largemeals-1.20.1-2.0.jar                         |Large Meals                   |largemeals                    |1.20.1-1.0          |DONE      |Manifest: NOSIGNATURE         endersdelight-1.20.1-1.0.3.jar                    |Ender's Delight               |endersdelight                 |1.0.3               |DONE      |Manifest: NOSIGNATURE         create-stuff-additions1.20.1_v2.0.4a.jar          |Create Stuff & Additions      |create_sa                     |2.0.4.              |DONE      |Manifest: NOSIGNATURE         CroptopiaDelight-1.20.1_1.2.2-forge.jar           |Croptopia Delight             |croptopia_delight             |1.0                 |DONE      |Manifest: NOSIGNATURE         StorageDrawers-1.20.1-12.7.2.jar                  |Storage Drawers               |storagedrawers                |12.7.2              |DONE      |Manifest: NOSIGNATURE         deco-storage-forge-1.20.1-2.0509.jar              |Decorative Storage            |decorative_storage            |2.0509              |DONE      |Manifest: NOSIGNATURE         miners_delight-1.20.1-1.2.3.jar                   |Miner's Delight               |miners_delight                |1.20.1-1.2.3        |DONE      |Manifest: NOSIGNATURE         Delightful-1.20.1-3.6.jar                         |Delightful                    |delightful                    |3.6                 |DONE      |Manifest: NOSIGNATURE         minecolonies-1.20.1-1.1.684-snapshot.jar          |MineColonies                  |minecolonies                  |1.20.1-1.1.684-snaps|DONE      |Manifest: NOSIGNATURE         colony_curios-1.0.0.jar                           |Minecolonies Curios Compat    |colony_curios                 |1.0.0               |DONE      |Manifest: NOSIGNATURE         MineColonies_Tweaks-1.20.1-2.36.jar               |Tweaks addon for MineColonies |minecolonies_tweaks           |2.36                |DONE      |Manifest: NOSIGNATURE         MineColonies_Compatibility-1.20.1-2.43.jar        |Compatibility addon for MineCo|minecolonies_compatibility    |2.43                |DONE      |Manifest: NOSIGNATURE         createmetallurgy-0.0.6-1.20.1.jar                 |Create Metallurgy             |createmetallurgy              |0.0.6-1.20.1        |DONE      |Manifest: NOSIGNATURE         automobility-0.4.2+1.20.1-forge.jar               |Automobility                  |automobility                  |0.4.2+1.20.1-forge  |DONE      |Manifest: NOSIGNATURE         alexsdelight-1.5.jar                              |Alex's Delight                |alexsdelight                  |1.5                 |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         engineersdecor-1.3.30.jar                         |Engineer's Decor              |engineersdecor                |1.3.30              |DONE      |Manifest: NOSIGNATURE         Lychee-1.20.1-forge-5.1.14.jar                    |Lychee Tweaker                |lychee                        |5.1.14              |DONE      |Manifest: NOSIGNATURE         Gunners-Forge-1.20.1-0.0.5.jar                    |Gunners                       |gunners                       |0.0.5               |DONE      |Manifest: NOSIGNATURE         CrabbersDelight-1.20.1-1.1.7b.jar                 |Crabber's Delight             |crabbersdelight               |1.1.7b              |DONE      |Manifest: NOSIGNATURE         trainperspectivefix-1.0.0-universal.jar           |Create: Train Perspective Fix |trainperspectivefix           |0.0NONE             |DONE      |Manifest: NOSIGNATURE         valhelsia_core-forge-1.20.1-1.1.2.jar             |Valhelsia Core                |valhelsia_core                |1.1.2               |DONE      |Manifest: NOSIGNATURE         chisels-and-bits-forge-1.4.148.jar                |chisels-and-bits              |chiselsandbits                |1.4.148             |DONE      |Manifest: NOSIGNATURE         create_structures_arise-137.10.9-forge-1.20.1.jar |Create: Structures Arise      |create_structures_arise       |137.10.9            |DONE      |Manifest: NOSIGNATURE         drinkbeer-refill-1.20.1-1.0.4.b.jar               |Drink Beer Refill             |drinkbeer                     |1.0.4.b             |DONE      |Manifest: NOSIGNATURE         createaddition-1.20.1-1.2.4e.jar                  |Create Crafts & Additions     |createaddition                |1.20.1-1.2.4e       |DONE      |Manifest: NOSIGNATURE         createaddoncompatibility-v0.2.2b-1.20.1-(neo)forge|Create: Addon Compatibility   |createaddoncompatibility      |0.2.2b              |DONE      |Manifest: NOSIGNATURE     Crash Report UUID: 858df963-c4dd-4a12-a3b8-821bd4c45146     FML: 47.3     Forge: net.minecraftforge:47.3.0     Flywheel Backend: GL33 Instanced Arrays     Kiwi Modules:          kiwi:block_components         kiwi:block_templates         kiwi:contributors         kiwi:data         kiwi:item_templates         xkdeco:entity_types
    • I am running MineOS through docker on Unraid and I am trying to make a forge server but it looks like the server keeps bypassing the mods when I launch it. I have forge installed, i am running the right version of java and Minecraft, I reloaded the world after adding the mods. I am so lost and would love some help.
    • The game crashed whilst rendering overlay Error: java.lang.RuntimeException: null New 1.21.1 modpack ---- Minecraft Crash Report ---- // I bet Cylons wouldn't have this problem. Time: 2024-10-08 17:23:39 Description: Rendering overlay java.lang.RuntimeException: null     at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.DeferredWorkQueue.runTasks(DeferredWorkQueue.java:58) ~[fmlcore-1.21.1-52.0.17.jar:1.0]     at TRANSFORMER/[email protected]/net.minecraftforge.fml.core.ParallelTransition.lambda$finalActivityGenerator$2(ParallelTransition.java:35) ~[forge-1.21.1-52.0.17-universal.jar:?]     at java.base/java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:646) ~[?:?]     at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?]     at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.lambda$new$3(SimpleReloadInstance.java:69) ~[forge-1.21.1-52.0.17-client.jar:?]     at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:162) ~[forge-1.21.1-52.0.17-client.jar:?]     at TRANSFORMER/[email protected]/net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:23) ~[forge-1.21.1-52.0.17-client.jar:?]     at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:136) ~[forge-1.21.1-52.0.17-client.jar:?]     at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:121) ~[forge-1.21.1-52.0.17-client.jar:?]     at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.runTick(Minecraft.java:1140) ~[forge-1.21.1-52.0.17-client.jar:?]     at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.run(Minecraft.java:795) ~[forge-1.21.1-52.0.17-client.jar:?]     at TRANSFORMER/[email protected]/net.minecraft.client.main.Main.main(Main.java:228) ~[forge-1.21.1-52.0.17-client.jar:?]     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]     at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]     at SECURE-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:85) ~[fmlloader-1.21.1-52.0.17.jar!/:?]     at SECURE-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.lambda$makeService$0(CommonLaunchHandler.java:69) ~[fmlloader-1.21.1-52.0.17.jar!/:?]     at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:77) [modlauncher-10.2.2.jar!/:?]     at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:97) [modlauncher-10.2.2.jar!/:?]     at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:116) [modlauncher-10.2.2.jar!/:?]     at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:75) [modlauncher-10.2.2.jar!/:?]     at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapEntry.main(BootstrapEntry.java:17) [modlauncher-10.2.2.jar!/:?]     at [email protected]/net.minecraftforge.bootstrap.Bootstrap.moduleMain(Bootstrap.java:188) [bootstrap-2.1.3.jar!/:?]     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]     at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]     at net.minecraftforge.bootstrap.Bootstrap.bootstrapMain(Bootstrap.java:133) [bootstrap-2.1.3.jar:2.1.3]     at net.minecraftforge.bootstrap.Bootstrap.start(Bootstrap.java:53) [bootstrap-2.1.3.jar:2.1.3]     at net.minecraftforge.bootstrap.ForgeBootstrap.main(ForgeBootstrap.java:19) [bootstrap-2.1.3.jar:2.1.3]     Suppressed: java.lang.IllegalStateException: Can not register to a locked registry. Modder should use Forge Register methods.         at TRANSFORMER/[email protected]/net.minecraftforge.registries.NamespacedWrapper.register(NamespacedWrapper.java:73) ~[forge-1.21.1-52.0.17-universal.jar!/:?]         at TRANSFORMER/[email protected]/net.minecraft.core.Registry.register(Registry.java:130) ~[forge-1.21.1-52.0.17-client.jar!/:?]         at TRANSFORMER/[email protected]/net.minecraft.core.Registry.register(Registry.java:126) ~[forge-1.21.1-52.0.17-client.jar!/:?]         at TRANSFORMER/[email protected]/net.blay09.mods.balm.forge.component.ForgeBalmComponents.lambda$registerComponent$0(ForgeBalmComponents.java:37) ~[balm-forge-1.21.1-21.0.19-all.jar!/:21.0.19]         at TRANSFORMER/[email protected]/net.blay09.mods.balm.api.DeferredObject.resolve(DeferredObject.java:37) ~[balm-forge-1.21.1-21.0.19-all.jar!/:21.0.19]         at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) ~[?:?]         at TRANSFORMER/[email protected]/net.blay09.mods.balm.forge.component.ForgeBalmComponents$Registrations.lambda$commonSetup$0(ForgeBalmComponents.java:27) ~[balm-forge-1.21.1-21.0.19-all.jar!/:21.0.19]         at java.base/java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?]         at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.DeferredWorkQueue.lambda$makeRunnable$1(DeferredWorkQueue.java:83) ~[fmlcore-1.21.1-52.0.17.jar:1.0]         at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.DeferredWorkQueue.makeRunnable(DeferredWorkQueue.java:78) ~[fmlcore-1.21.1-52.0.17.jar:1.0]         at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.DeferredWorkQueue.runTasks(DeferredWorkQueue.java:61) ~[fmlcore-1.21.1-52.0.17.jar:1.0]         at TRANSFORMER/[email protected]/net.minecraftforge.fml.core.ParallelTransition.lambda$finalActivityGenerator$2(ParallelTransition.java:35) ~[forge-1.21.1-52.0.17-universal.jar:?]         at java.base/java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:646) ~[?:?]         at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?]         at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.lambda$new$3(SimpleReloadInstance.java:69) ~[forge-1.21.1-52.0.17-client.jar:?]         at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:162) ~[forge-1.21.1-52.0.17-client.jar:?]         at TRANSFORMER/[email protected]/net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:23) ~[forge-1.21.1-52.0.17-client.jar:?]         at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:136) ~[forge-1.21.1-52.0.17-client.jar:?]         at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:121) ~[forge-1.21.1-52.0.17-client.jar:?]         at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.runTick(Minecraft.java:1140) ~[forge-1.21.1-52.0.17-client.jar:?]         at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.run(Minecraft.java:795) ~[forge-1.21.1-52.0.17-client.jar:?]         at TRANSFORMER/[email protected]/net.minecraft.client.main.Main.main(Main.java:228) ~[forge-1.21.1-52.0.17-client.jar:?]         at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]         at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]         at SECURE-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:85) ~[fmlloader-1.21.1-52.0.17.jar!/:?]         at SECURE-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.lambda$makeService$0(CommonLaunchHandler.java:69) ~[fmlloader-1.21.1-52.0.17.jar!/:?]         at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:77) [modlauncher-10.2.2.jar!/:?]         at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:97) [modlauncher-10.2.2.jar!/:?]         at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:116) [modlauncher-10.2.2.jar!/:?]         at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:75) [modlauncher-10.2.2.jar!/:?]         at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapEntry.main(BootstrapEntry.java:17) [modlauncher-10.2.2.jar!/:?]         at [email protected]/net.minecraftforge.bootstrap.Bootstrap.moduleMain(Bootstrap.java:188) [bootstrap-2.1.3.jar!/:?]         at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]         at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]         at net.minecraftforge.bootstrap.Bootstrap.bootstrapMain(Bootstrap.java:133) [bootstrap-2.1.3.jar:2.1.3]         at net.minecraftforge.bootstrap.Bootstrap.start(Bootstrap.java:53) [bootstrap-2.1.3.jar:2.1.3]         at net.minecraftforge.bootstrap.ForgeBootstrap.main(ForgeBootstrap.java:19) [bootstrap-2.1.3.jar:2.1.3]     Suppressed: java.lang.IllegalStateException: Can not register to a locked registry. Modder should use Forge Register methods.         at TRANSFORMER/[email protected]/net.minecraftforge.registries.NamespacedWrapper.register(NamespacedWrapper.java:73) ~[forge-1.21.1-52.0.17-universal.jar!/:?]         at TRANSFORMER/[email protected]/net.minecraft.core.Registry.register(Registry.java:130) ~[forge-1.21.1-52.0.17-client.jar!/:?]         at TRANSFORMER/[email protected]/net.minecraft.core.Registry.register(Registry.java:126) ~[forge-1.21.1-52.0.17-client.jar!/:?]         at TRANSFORMER/[email protected]/net.blay09.mods.balm.forge.component.ForgeBalmComponents.lambda$registerComponent$0(ForgeBalmComponents.java:37) ~[balm-forge-1.21.1-21.0.19-all.jar!/:21.0.19]         at TRANSFORMER/[email protected]/net.blay09.mods.balm.api.DeferredObject.resolve(DeferredObject.java:37) ~[balm-forge-1.21.1-21.0.19-all.jar!/:21.0.19]         at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) ~[?:?]         at TRANSFORMER/[email protected]/net.blay09.mods.balm.forge.component.ForgeBalmComponents$Registrations.lambda$commonSetup$0(ForgeBalmComponents.java:27) ~[balm-forge-1.21.1-21.0.19-all.jar!/:21.0.19]         at java.base/java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?]         at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.DeferredWorkQueue.lambda$makeRunnable$1(DeferredWorkQueue.java:83) ~[fmlcore-1.21.1-52.0.17.jar:1.0]         at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.DeferredWorkQueue.makeRunnable(DeferredWorkQueue.java:78) ~[fmlcore-1.21.1-52.0.17.jar:1.0]         at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.DeferredWorkQueue.runTasks(DeferredWorkQueue.java:61) ~[fmlcore-1.21.1-52.0.17.jar:1.0]         at TRANSFORMER/[email protected]/net.minecraftforge.fml.core.ParallelTransition.lambda$finalActivityGenerator$2(ParallelTransition.java:35) ~[forge-1.21.1-52.0.17-universal.jar:?]         at java.base/java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:646) ~[?:?]         at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?]         at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.lambda$new$3(SimpleReloadInstance.java:69) ~[forge-1.21.1-52.0.17-client.jar:?]         at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:162) ~[forge-1.21.1-52.0.17-client.jar:?]         at TRANSFORMER/[email protected]/net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:23) ~[forge-1.21.1-52.0.17-client.jar:?]         at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:136) ~[forge-1.21.1-52.0.17-client.jar:?]         at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:121) ~[forge-1.21.1-52.0.17-client.jar:?]         at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.runTick(Minecraft.java:1140) ~[forge-1.21.1-52.0.17-client.jar:?]         at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.run(Minecraft.java:795) ~[forge-1.21.1-52.0.17-client.jar:?]         at TRANSFORMER/[email protected]/net.minecraft.client.main.Main.main(Main.java:228) ~[forge-1.21.1-52.0.17-client.jar:?]         at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]         at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]         at SECURE-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:85) ~[fmlloader-1.21.1-52.0.17.jar!/:?]         at SECURE-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.lambda$makeService$0(CommonLaunchHandler.java:69) ~[fmlloader-1.21.1-52.0.17.jar!/:?]         at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:77) [modlauncher-10.2.2.jar!/:?]         at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:97) [modlauncher-10.2.2.jar!/:?]         at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:116) [modlauncher-10.2.2.jar!/:?]         at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:75) [modlauncher-10.2.2.jar!/:?]         at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapEntry.main(BootstrapEntry.java:17) [modlauncher-10.2.2.jar!/:?]         at [email protected]/net.minecraftforge.bootstrap.Bootstrap.moduleMain(Bootstrap.java:188) [bootstrap-2.1.3.jar!/:?]         at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]         at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]         at net.minecraftforge.bootstrap.Bootstrap.bootstrapMain(Bootstrap.java:133) [bootstrap-2.1.3.jar:2.1.3]         at net.minecraftforge.bootstrap.Bootstrap.start(Bootstrap.java:53) [bootstrap-2.1.3.jar:2.1.3]         at net.minecraftforge.bootstrap.ForgeBootstrap.main(ForgeBootstrap.java:19) [bootstrap-2.1.3.jar:2.1.3] Transformer Audit:   java.util.ArrayList     REASON: mixin   net.blay09.mods.balm.api.DeferredObject     REASON: classloading   net.blay09.mods.balm.forge.component.ForgeBalmComponents     REASON: classloading   net.blay09.mods.balm.forge.component.ForgeBalmComponents$Registrations     REASON: classloading     PLUGIN: eventbus:AFTER   net.minecraft.client.Minecraft     REASON: mixin     PLUGIN: accesstransformer:BEFORE     TRANSFORMER: fml:xaeroworldmap:xaero_wm_minecraft_runtick     TRANSFORMER: fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call     TRANSFORMER: fml:xaeroworldmap:xaero_wm_minecraftclient     TRANSFORMER: fml:xaerominimap:xaero_minecraftclient     PLUGIN: runtimedistcleaner:AFTER     REASON: classloading     PLUGIN: accesstransformer:BEFORE     TRANSFORMER: fml:xaeroworldmap:xaero_wm_minecraft_runtick     TRANSFORMER: fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call     TRANSFORMER: fml:xaeroworldmap:xaero_wm_minecraftclient     TRANSFORMER: fml:xaerominimap:xaero_minecraftclient     PLUGIN: mixin:APP:sound_physics_remastered.mixins.json:MinecraftMixin     PLUGIN: mixin:APP:bookshelf.mixins.json:access.client.AccessorMinecraft     PLUGIN: mixin:APP:balm.forge.mixins.json:MinecraftMixin     PLUGIN: mixin:APP:entity_model_features-common.mixins.json:MixinResourceReloadEnd     PLUGIN: mixin:APP:entity_model_features-common.mixins.json:MixinResourceReloadStart     PLUGIN: mixin:APP:entity_model_features-common.mixins.json:accessor.MinecraftClientAccessor     PLUGIN: mixin:APP:entity_texture_features-common.mixins.json:reloading.MixinMinecraftClient     PLUGIN: mixin:APP:entity_texture_features-common.mixins.json:reloading.MixinResourceReload     PLUGIN: mixin:APP:spyglass_improvements.mixins.json:MinecraftMixin     PLUGIN: mixin:APP:monolib.forge.mixins.json:MixinMinecraft     PLUGIN: mixin:APP:fallingleaves.mixins.json:MinecraftClientMixin     PLUGIN: mixin:APP:configuration.mixins.json:MinecraftMixin     PLUGIN: mixin:APP:iceberg.mixins.json:MinecraftMixin     PLUGIN: mixin:APP:xaeroplus.mixins.json:mc.MixinMinecraftClient     PLUGIN: mixin:AFTER     PLUGIN: runtimedistcleaner:AFTER   net.minecraft.client.main.Main     REASON: classloading     PLUGIN: runtimedistcleaner:AFTER   net.minecraft.core.Registry     REASON: mixin     REASON: classloading   net.minecraft.server.packs.resources.SimpleReloadInstance     REASON: classloading   net.minecraft.util.thread.BlockableEventLoop     REASON: computing_frames     PLUGIN: accesstransformer:BEFORE     REASON: mixin     PLUGIN: accesstransformer:BEFORE     REASON: classloading     PLUGIN: accesstransformer:BEFORE   net.minecraft.util.thread.ReentrantBlockableEventLoop     REASON: computing_frames     REASON: mixin     REASON: classloading   net.minecraftforge.fml.core.ParallelTransition     REASON: classloading   net.minecraftforge.registries.NamespacedWrapper     REASON: classloading 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 LAYER PLUGIN/[email protected]/net.minecraftforge.fml.DeferredWorkQueue.runTasks(DeferredWorkQueue.java:58) ~[fmlcore-1.21.1-52.0.17.jar!/:1.0]     at TRANSFORMER/[email protected]/net.minecraftforge.fml.core.ParallelTransition.lambda$finalActivityGenerator$2(ParallelTransition.java:35) ~[forge-1.21.1-52.0.17-universal.jar!/:?]     at java.base/java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:646) ~[?:?]     at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?]     at TRANSFORMER/[email protected]/net.minecraft.server.packs.resources.SimpleReloadInstance.lambda$new$3(SimpleReloadInstance.java:69) ~[forge-1.21.1-52.0.17-client.jar!/:?]     at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:162) ~[forge-1.21.1-52.0.17-client.jar!/:?]     at TRANSFORMER/[email protected]/net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:23) ~[forge-1.21.1-52.0.17-client.jar!/:?]     at TRANSFORMER/[email protected]/net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:136) ~[forge-1.21.1-52.0.17-client.jar!/:?] Transformer Audit:   net.minecraft.server.packs.resources.SimpleReloadInstance     REASON: classloading   net.minecraft.util.thread.BlockableEventLoop     REASON: computing_frames     PLUGIN: accesstransformer:BEFORE     REASON: mixin     PLUGIN: accesstransformer:BEFORE     REASON: classloading     PLUGIN: accesstransformer:BEFORE   net.minecraft.util.thread.ReentrantBlockableEventLoop     REASON: computing_frames     REASON: mixin     REASON: classloading   net.minecraftforge.fml.core.ParallelTransition     REASON: classloading -- Overlay render details -- Details:     Overlay name: net.minecraftforge.client.loading.ForgeLoadingOverlay Stacktrace:     at TRANSFORMER/[email protected]/net.minecraft.client.renderer.GameRenderer.render(GameRenderer.java:885) ~[forge-1.21.1-52.0.17-client.jar:?]     at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.runTick(Minecraft.java:1180) ~[forge-1.21.1-52.0.17-client.jar:?]     at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.run(Minecraft.java:795) ~[forge-1.21.1-52.0.17-client.jar:?]     at TRANSFORMER/[email protected]/net.minecraft.client.main.Main.main(Main.java:228) ~[forge-1.21.1-52.0.17-client.jar:?]     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]     at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]     at SECURE-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:85) ~[fmlloader-1.21.1-52.0.17.jar!/:?]     at SECURE-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.lambda$makeService$0(CommonLaunchHandler.java:69) ~[fmlloader-1.21.1-52.0.17.jar!/:?]     at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:77) [modlauncher-10.2.2.jar!/:?]     at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:97) [modlauncher-10.2.2.jar!/:?]     at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:116) [modlauncher-10.2.2.jar!/:?]     at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:75) [modlauncher-10.2.2.jar!/:?]     at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapEntry.main(BootstrapEntry.java:17) [modlauncher-10.2.2.jar!/:?]     at [email protected]/net.minecraftforge.bootstrap.Bootstrap.moduleMain(Bootstrap.java:188) [bootstrap-2.1.3.jar!/:?]     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]     at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]     at net.minecraftforge.bootstrap.Bootstrap.bootstrapMain(Bootstrap.java:133) [bootstrap-2.1.3.jar:2.1.3]     at net.minecraftforge.bootstrap.Bootstrap.start(Bootstrap.java:53) [bootstrap-2.1.3.jar:2.1.3]     at net.minecraftforge.bootstrap.ForgeBootstrap.main(ForgeBootstrap.java:19) [bootstrap-2.1.3.jar:2.1.3] Transformer Audit:   net.minecraft.client.Minecraft     REASON: mixin     PLUGIN: accesstransformer:BEFORE     TRANSFORMER: fml:xaeroworldmap:xaero_wm_minecraft_runtick     TRANSFORMER: fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call     TRANSFORMER: fml:xaeroworldmap:xaero_wm_minecraftclient     TRANSFORMER: fml:xaerominimap:xaero_minecraftclient     PLUGIN: runtimedistcleaner:AFTER     REASON: classloading     PLUGIN: accesstransformer:BEFORE     TRANSFORMER: fml:xaeroworldmap:xaero_wm_minecraft_runtick     TRANSFORMER: fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call     TRANSFORMER: fml:xaeroworldmap:xaero_wm_minecraftclient     TRANSFORMER: fml:xaerominimap:xaero_minecraftclient     PLUGIN: mixin:APP:sound_physics_remastered.mixins.json:MinecraftMixin     PLUGIN: mixin:APP:bookshelf.mixins.json:access.client.AccessorMinecraft     PLUGIN: mixin:APP:balm.forge.mixins.json:MinecraftMixin     PLUGIN: mixin:APP:entity_model_features-common.mixins.json:MixinResourceReloadEnd     PLUGIN: mixin:APP:entity_model_features-common.mixins.json:MixinResourceReloadStart     PLUGIN: mixin:APP:entity_model_features-common.mixins.json:accessor.MinecraftClientAccessor     PLUGIN: mixin:APP:entity_texture_features-common.mixins.json:reloading.MixinMinecraftClient     PLUGIN: mixin:APP:entity_texture_features-common.mixins.json:reloading.MixinResourceReload     PLUGIN: mixin:APP:spyglass_improvements.mixins.json:MinecraftMixin     PLUGIN: mixin:APP:monolib.forge.mixins.json:MixinMinecraft     PLUGIN: mixin:APP:fallingleaves.mixins.json:MinecraftClientMixin     PLUGIN: mixin:APP:configuration.mixins.json:MinecraftMixin     PLUGIN: mixin:APP:iceberg.mixins.json:MinecraftMixin     PLUGIN: mixin:APP:xaeroplus.mixins.json:mc.MixinMinecraftClient     PLUGIN: mixin:AFTER     PLUGIN: runtimedistcleaner:AFTER   net.minecraft.client.main.Main     REASON: classloading     PLUGIN: runtimedistcleaner:AFTER   net.minecraft.client.renderer.GameRenderer     REASON: mixin     PLUGIN: accesstransformer:BEFORE     PLUGIN: runtimedistcleaner:AFTER     REASON: classloading     PLUGIN: accesstransformer:BEFORE     PLUGIN: mixin:APP:entity_model_features-common.mixins.json:MixinGameRenderer     PLUGIN: mixin:APP:tombstone.mixins.json:GameRendererMixin     PLUGIN: mixin:AFTER     PLUGIN: runtimedistcleaner:AFTER -- Uptime -- Details:     JVM uptime: 21.546s     Wall uptime: 6.750s     High-res time: 18.114s     Client ticks: 38 ticks / 1.900s -- Last reload -- Details:     Reload number: 1     Reload reason: initial     Finished: No     Packs: vanilla, mod_resources -- System Details -- Details:     Minecraft Version: 1.21.1     Minecraft Version ID: 1.21.1     Operating System: Windows 11 (amd64) version 10.0     Java Version: 21.0.3, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 509429240 bytes (485 MiB) / 1300234240 bytes (1240 MiB) up to 10569646080 bytes (10080 MiB)     CPUs: 12     Processor Vendor: AuthenticAMD     Processor Name: AMD Ryzen 5 3600 6-Core Processor                   Identifier: AuthenticAMD Family 23 Model 113 Stepping 0     Microarchitecture: Zen 2     Frequency (GHz): 3.59     Number of physical packages: 1     Number of physical CPUs: 6     Number of logical CPUs: 12     Graphics card #0 name: NVIDIA GeForce RTX 3060     Graphics card #0 vendor: NVIDIA     Graphics card #0 VRAM (MiB): 12288.00     Graphics card #0 deviceId: VideoController1     Graphics card #0 versionInfo: 31.0.15.5123     Memory slot #0 capacity (MiB): 8192.00     Memory slot #0 clockSpeed (GHz): 3.20     Memory slot #0 type: DDR4     Memory slot #1 capacity (MiB): 8192.00     Memory slot #1 clockSpeed (GHz): 3.20     Memory slot #1 type: DDR4     Virtual memory max (MiB): 32576.43     Virtual memory used (MiB): 15733.25     Swap memory total (MiB): 16288.21     Swap memory used (MiB): 4549.58     Space in storage for jna.tmpdir (MiB): available: 15838.38, total: 953079.06     Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): available: 15838.38, total: 953079.06     Space in storage for io.netty.native.workdir (MiB): available: 15838.38, total: 953079.06     Space in storage for java.io.tmpdir (MiB): available: 15838.38, total: 953079.06     Space in storage for workdir (MiB): available: 15838.38, total: 953079.06     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx10080m -Xms256m     Launched Version: forge-52.0.17     Launcher name: minecraft-launcher     Backend library: LWJGL version 3.3.3+5     Backend API: NVIDIA GeForce RTX 3060/PCIe/SSE2 GL version 4.6.0 NVIDIA 551.23, NVIDIA Corporation     Window size: 1024x768     GFLW Platform: win32     GL Caps: Using framebuffer using OpenGL 3.2     GL debug messages:      Is Modded: Definitely; Client brand changed to 'forge'     Universe: 400921fb54442d18     Type: Client (map_client.txt)     Graphics mode: fancy     Render Distance: 12/12 chunks     Resource Packs: vanilla, mod_resources     Current Language: en_us     Locale: en_US     System encoding: Cp1252     File encoding: UTF-8     CPU: 12x AMD Ryzen 5 3600 6-Core Processor      ModLauncher: 10.2.2     ModLauncher launch target: forge_client     ModLauncher naming: mcp     ModLauncher services:          / slf4jfixer PLUGINSERVICE          / runtimedistcleaner PLUGINSERVICE          / runtime_enum_extender PLUGINSERVICE          / object_holder_definalize PLUGINSERVICE          / capability_token_subclass PLUGINSERVICE          / accesstransformer PLUGINSERVICE          / eventbus PLUGINSERVICE          / mixin PLUGINSERVICE          / fml TRANSFORMATIONSERVICE          / mixin TRANSFORMATIONSERVICE      FML Language Providers:          [email protected]         lowcodefml@52         [email protected]     Mod List:          kuma-api-forge-21.0.5-SNAPSHOT.jar                |KumaAPI                       |kuma_api                      |21.0.5-SNAPSHOT     |SIDED_SETU|Manifest: NOSIGNATURE         supermartijn642configlib-1.1.8-forge-mc1.21.jar   |SuperMartijn642's Config Libra|supermartijn642configlib      |1.1.8               |SIDED_SETU|Manifest: NOSIGNATURE         dynamiclights-1.21.1.1.jar                        |Dynamic Lights                |dynamiclights                 |1.21.1.1            |SIDED_SETU|Manifest: NOSIGNATURE         sound-physics-remastered-forge-1.21.1-1.4.6.jar   |Sound Physics Remastered      |sound_physics_remastered      |1.21.1-1.4.6        |SIDED_SETU|Manifest: NOSIGNATURE         ForgeEndertech-1.21-12.0.0.1-build.0100.jar       |ForgeEndertech                |forgeendertech                |12.0.0.1            |SIDED_SETU|Manifest: NOSIGNATURE         cookingforblockheads-forge-1.21.1-21.1.2.jar      |Cooking for Blockheads        |cookingforblockheads          |21.1.2              |SIDED_SETU|Manifest: NOSIGNATURE         Controlling-forge-1.21.1-19.0.3.jar               |Controlling                   |controlling                   |19.0.3              |SIDED_SETU|Manifest: NOSIGNATURE         mixinextras-forge-0.4.0.jar                       |MixinExtras                   |mixinextras                   |0.4.0               |SIDED_SETU|Manifest: NOSIGNATURE         softerhaybales-1.21.1-3.3.jar                     |Softer Hay Bales              |softerhaybales                |3.3                 |SIDED_SETU|Manifest: NOSIGNATURE         Bookshelf-forge-1.21.1-21.1.7.jar                 |Bookshelf                     |bookshelf                     |21.1.7              |SIDED_SETU|Manifest: NOSIGNATURE         fullturtlearmor-1.10-forge-mc1.21.jar             |Full Turtle Armor             |fullturtlearmor               |1.10                |SIDED_SETU|Manifest: NOSIGNATURE         keepmysoiltilled-1.21.1-2.4.jar                   |Keep My Soil Tilled           |keepmysoiltilled              |2.4                 |SIDED_SETU|Manifest: NOSIGNATURE         balm-forge-1.21.1-21.0.19-all.jar                 |Balm                          |balm                          |21.0.19             |SIDED_SETU|Manifest: NOSIGNATURE         PrickleMC-forge-1.21.1-21.1.4.jar                 |PrickleMC                     |prickle                       |21.1.4              |SIDED_SETU|Manifest: NOSIGNATURE         darktimer-forge-1.21-1.2.2.jar                    |DarkTimer                     |darktimer                     |1.2.2               |SIDED_SETU|Manifest: NOSIGNATURE         carryon-forge-1.21.1-2.2.2.11.jar                 |Carry On                      |carryon                       |2.2.2               |SIDED_SETU|Manifest: NOSIGNATURE         despawningeggshatch-1.21.1-4.4.jar                |Despawning Eggs Hatch         |despawningeggshatch           |4.4                 |SIDED_SETU|Manifest: NOSIGNATURE         darksmithing-forge-1.21-1.1.8.jar                 |DarkSmithing                  |darksmithing                  |1.1.8               |SIDED_SETU|Manifest: NOSIGNATURE         darkglint-forge-1.21-1.1.5.jar                    |DarkGlint                     |darkglint                     |1.1.5               |SIDED_SETU|Manifest: NOSIGNATURE         entity_model_features_forge_1.21-2.2.6.jar        |Entity Model Features         |entity_model_features         |2.2.6               |SIDED_SETU|Manifest: NOSIGNATURE         entity_texture_features_forge_1.21-6.2.5.jar      |Entity Texture Features       |entity_texture_features       |6.2.5               |SIDED_SETU|Manifest: NOSIGNATURE         Explorify v1.6.2 f10-48.jar                       |Explorify                     |explorify                     |1.6.2               |SIDED_SETU|Manifest: NOSIGNATURE         Beekeeper-1.21-1.0.5.jar                          |Beekeeper                     |bk                            |1.0.5               |SIDED_SETU|Manifest: NOSIGNATURE         RapidLeafDecay-1.21.1-2.0.2.jar                   |Rapid Leaf Decay              |rapid_leaf_decay              |2.0.2               |SIDED_SETU|Manifest: NOSIGNATURE         Chunky-1.4.16.jar                                 |Chunky                        |chunky                        |1.4.16              |SIDED_SETU|Manifest: NOSIGNATURE         supermartijn642corelib-1.1.17e-forge-mc1.21.jar   |SuperMartijn642's Core Lib    |supermartijn642corelib        |1.1.17+e            |SIDED_SETU|Manifest: NOSIGNATURE         corail_woodcutter-forge-1.21.1-3.4.3.jar          |Corail Woodcutter             |corail_woodcutter             |3.4.3               |SIDED_SETU|Manifest: NOSIGNATURE         collective-1.21.1-7.84.jar                        |Collective                    |collective                    |7.84                |SIDED_SETU|Manifest: NOSIGNATURE         darkmining-forge-1.21-1.2.4hf2.jar                |DarkMining                    |darkmining                    |1.2.4hf2            |SIDED_SETU|Manifest: NOSIGNATURE         advancednetherite-forge-2.1.6-1.21.1.jar          |Advanced Netherite            |advancednetherite             |2.1.6               |SIDED_SETU|Manifest: NOSIGNATURE         spyglass_improvements-1.5.5+mc1.21+forge.jar      |Spyglass Improvements         |spyglass_improvements         |1.5.5+mc1.21+forge  |SIDED_SETU|Manifest: NOSIGNATURE         Searchables-forge-1.21.1-1.0.1.jar                |Searchables                   |searchables                   |1.0.1               |SIDED_SETU|Manifest: NOSIGNATURE         dungeons-and-taverns-v4.4.4 [Forge].jar           |Dungeons and Taverns          |mr_dungeons_andtaverns        |1-v4.4.4            |SIDED_SETU|Manifest: NOSIGNATURE         tombstone-1.21.1-9.1.1.jar                        |Corail Tombstone              |tombstone                     |9.1.1               |SIDED_SETU|Manifest: NOSIGNATURE         wormhole-1.1.16-forge-mc1.21.jar                  |Wormhole (Portals)            |wormhole                      |1.1.16              |SIDED_SETU|Manifest: NOSIGNATURE         darksmelting-forge-1.21-1.1.6.jar                 |DarkSmelting                  |darksmelting                  |1.1.6               |SIDED_SETU|Manifest: NOSIGNATURE         refurbished_furniture-forge-1.21.1-1.0.6.jar      |MrCrayfish's Furniture Mod: Re|refurbished_furniture         |1.0.6               |SIDED_SETU|Manifest: 0D:78:5F:44:C0:47:0C:8C:E2:63:A3:04:43:D4:12:7D:B0:7C:35:37:DC:40:B1:C1:98:EC:51:EB:3B:3C:45:99         monolib-forge-1.21.1-1.3.0.jar                    |MonoLib                       |monolib                       |1.3.0               |SIDED_SETU|Manifest: NOSIGNATURE         disenchanting_table-forge-1.21-3.0.1.jar          |Dis-Enchanting Table          |disenchanting_table           |3.0.1               |SIDED_SETU|Manifest: NOSIGNATURE         golden_foods-forge-1.21-2.3.0.jar                 |Golden Foods                  |golden_foods                  |2.3.0               |SIDED_SETU|Manifest: NOSIGNATURE         AdChimneys-1.21-11.0.3.0-build.0260.jar           |Advanced Chimneys             |adchimneys                    |11.0.3.0            |SIDED_SETU|Manifest: NOSIGNATURE         framework-forge-1.21.1-0.9.2.jar                  |Framework                     |framework                     |0.9.2               |SIDED_SETU|Manifest: 0D:78:5F:44:C0:47:0C:8C:E2:63:A3:04:43:D4:12:7D:B0:7C:35:37:DC:40:B1:C1:98:EC:51:EB:3B:3C:45:99         smallships-forge-1.21.1-2.0.0-b1.5.jar            |Small Ships                   |smallships                    |2.0.0-b1.5          |SIDED_SETU|Manifest: NOSIGNATURE         PortableCraftingTable-forge-1.21.1-3.2.6.jar      |Portable Crafting Table       |portablecraftingtable         |3.2.6               |SIDED_SETU|Manifest: NOSIGNATURE         collectorsalbum-forge-1.21.1-2.1.3.jar            |Collector's Album             |collectorsalbum               |2.1.3               |SIDED_SETU|Manifest: NOSIGNATURE         randombonemealflowers-1.21.1-4.6.jar              |Random Bone Meal Flowers      |randombonemealflowers         |4.6                 |SIDED_SETU|Manifest: NOSIGNATURE         corail_pillar-6.4.0.jar                           |Corail Pillar                 |corail_pillar                 |6.4.0               |SIDED_SETU|Manifest: NOSIGNATURE         BetterAdvancements-Forge-1.21.1-0.4.2.19.jar      |Better Advancements           |betteradvancements            |0.4.2.19            |SIDED_SETU|Manifest: NOSIGNATURE         doubledoors-1.21.1-5.9.jar                        |Double Doors                  |doubledoors                   |5.9                 |SIDED_SETU|Manifest: NOSIGNATURE         formationsnether-1.0.5-mc1.21+.jar                |Formations Nether             |formationsnether              |1.0.5               |SIDED_SETU|Manifest: NOSIGNATURE         reg-more-foods-1.1.2+1.21+forge.jar               |Reg's More Foods              |rmf                           |1.1.2+1.21+forge    |SIDED_SETU|Manifest: NOSIGNATURE         additionallanterns-1.1.1-forge-mc1.21.jar         |Additional Lanterns           |additionallanterns            |1.1.1               |SIDED_SETU|Manifest: NOSIGNATURE         treeharvester-1.21.1-9.1.jar                      |Tree Harvester                |treeharvester                 |9.1                 |SIDED_SETU|Manifest: NOSIGNATURE         jei-1.21.1-forge-19.8.4.113.jar                   |Just Enough Items             |jei                           |19.8.4.113          |SIDED_SETU|Manifest: NOSIGNATURE         stonesmelting-1.21.1-0-forge.jar                  |StoneSmelting                 |stonesmelting                 |1.21.1-0-forge      |SIDED_SETU|Manifest: NOSIGNATURE         waystones-forge-1.21.1-21.1.4.jar                 |Waystones                     |waystones                     |21.1.4              |SIDED_SETU|Manifest: NOSIGNATURE         fallingleaves-1.21-2.4.0.jar                      |Fallingleaves                 |fallingleaves                 |2.4.0               |SIDED_SETU|Manifest: NOSIGNATURE         mcw-paintings-1.0.5-1.21.1forge.jar               |Macaw's Paintings             |mcwpaintings                  |1.0.5               |SIDED_SETU|Manifest: NOSIGNATURE         Clumps-forge-1.21.1-19.0.0.1.jar                  |Clumps                        |clumps                        |19.0.0.1            |SIDED_SETU|Manifest: NOSIGNATURE         saddlemod-0.0.1.jar                               |Saddle Mod                    |saddlemod                     |0.0.1               |SIDED_SETU|Manifest: NOSIGNATURE         comforts-forge-9.0.2+1.21.1.jar                   |Comforts                      |comforts                      |9.0.2+1.21.1        |SIDED_SETU|Manifest: NOSIGNATURE         NaturesCompass-1.21.1-1.11.7-forge.jar            |Nature's Compass              |naturescompass                |1.21.1-1.11.7-forge |SIDED_SETU|Manifest: NOSIGNATURE         dailyquests-1.21.1-1.8.jar                        |Daily Quests                  |dailyquests                   |1.8                 |SIDED_SETU|Manifest: NOSIGNATURE         additional_lights-1.21-2.1.9.jar                  |Additional Lights             |additional_lights             |2.1.9               |SIDED_SETU|Manifest: NOSIGNATURE         deathquotes-forge-1.21-3.3.jar                    |DeathQuotes                   |deathquotes                   |3.3                 |SIDED_SETU|Manifest: NOSIGNATURE         Terralith_1.21.x_v2.5.5.jar                       |Terralith                     |terralith                     |2.5.5               |SIDED_SETU|Manifest: NOSIGNATURE         fusion-1.1.1-forge-mc1.21.jar                     |Fusion                        |fusion                        |1.1.1               |SIDED_SETU|Manifest: NOSIGNATURE         formations-1.0.2-forge-mc1.21.jar                 |Formations                    |formations                    |1.0.2               |SIDED_SETU|Manifest: NOSIGNATURE         skinlayers3d-forge-1.6.7-mc1.21-all.jar           |3d-Skin-Layers                |skinlayers3d                  |1.6.7               |SIDED_SETU|Manifest: NOSIGNATURE         forge-1.21.1-52.0.17-universal.jar                |Forge                         |forge                         |52.0.17             |SIDED_SETU|Manifest: NOSIGNATURE         mcw-paths-1.0.5-1.21.1forge.jar                   |Macaw's Paths and Pavings     |mcwpaths                      |1.0.5               |SIDED_SETU|Manifest: NOSIGNATURE         forge-1.21.1-52.0.17-client.jar                   |Minecraft                     |minecraft                     |1.21.1              |SIDED_SETU|Manifest: NOSIGNATURE         trade-cycling-forge-1.21.1-1.0.15.jar             |Trade Cycling                 |trade_cycling                 |1.21.1-1.0.15       |SIDED_SETU|Manifest: NOSIGNATURE         EnchantmentDescriptions-forge-1.21.1-21.1.4.jar   |EnchantmentDescriptions       |enchdesc                      |21.1.4              |SIDED_SETU|Manifest: NOSIGNATURE         MouseTweaks-forge-mc1.21-2.26.jar                 |Mouse Tweaks                  |mousetweaks                   |2.26                |SIDED_SETU|Manifest: NOSIGNATURE         configuration-forge-1.21.1-3.1.0.jar              |Configuration                 |configuration                 |3.1.0               |SIDED_SETU|Manifest: NOSIGNATURE         new_slab_variants-forge-1.21.1-3.0.1.jar          |New Slab Variants             |new_slab_variants             |3.0.1               |SIDED_SETU|Manifest: NOSIGNATURE         inventorytotem-1.21.1-3.3.jar                     |Inventory Totem               |inventorytotem                |3.3                 |SIDED_SETU|Manifest: NOSIGNATURE         darkloot-forge-1.21-1.2.9.jar                     |DarkLoot                      |darkloot                      |1.2.9               |SIDED_SETU|Manifest: NOSIGNATURE         spectrelib-forge-0.17.2+1.21.jar                  |SpectreLib                    |spectrelib                    |0.17.2+1.21         |SIDED_SETU|Manifest: NOSIGNATURE         packedup-1.0.30b-forge-mc1.21.jar                 |Packed Up                     |packedup                      |1.0.30+b            |SIDED_SETU|Manifest: NOSIGNATURE         Iceberg-1.21-forge-1.2.5.jar                      |Iceberg                       |iceberg                       |1.2.5               |SIDED_SETU|Manifest: NOSIGNATURE         Highlighter-1.21-forge-1.1.11.jar                 |Highlighter                   |highlighter                   |1.1.11              |SIDED_SETU|Manifest: NOSIGNATURE         MerchantMarkers-1.21-forge-1.3.5.jar              |Merchant Markers              |merchantmarkers               |1.3.5               |SIDED_SETU|Manifest: NOSIGNATURE         Storage Drawers-forge-1.21-13.7.1.jar             |Storage Drawers               |storagedrawers                |13.7.1              |SIDED_SETU|Manifest: NOSIGNATURE         smeltingsand-1.21.1-11-forge.jar                  |SmeltingSand                  |smeltingsand                  |1.21.1-11-forge     |SIDED_SETU|Manifest: NOSIGNATURE         regrowth-1.21.1-52.31.3.jar                       |Regrowth                      |regrowth                      |52.31.3             |SIDED_SETU|Manifest: NOSIGNATURE         inventoryhud.forge.1.21.1-3.4.26.jar              |Inventory HUD+                |inventoryhud                  |3.4.26              |SIDED_SETU|Manifest: NOSIGNATURE         betterarcheology-1.2.1-1.21.1.jar                 |Better Archeology             |betterarcheology              |1.2.1-1.21.1        |SIDED_SETU|Manifest: NOSIGNATURE         modonomicon-1.21.1-forge-1.108.1.jar              |Modonomicon                   |modonomicon                   |1.108.1             |SIDED_SETU|Manifest: NOSIGNATURE         XaeroPlus-2.24.3+forge-1.21-WM1.39.0-MM24.5.0.jar |XaeroPlus                     |xaeroplus                     |2.24.3              |SIDED_SETU|Manifest: NOSIGNATURE         XaerosWorldMap_1.39.0_Forge_1.21.jar              |Xaero's World Map             |xaeroworldmap                 |1.39.0              |SIDED_SETU|Manifest: NOSIGNATURE         Xaeros_Minimap_24.5.0_Forge_1.21.jar              |Xaero's Minimap               |xaerominimap                  |24.5.0              |SIDED_SETU|Manifest: NOSIGNATURE         portabletanks-1.1.7-forge-mc1.21.jar              |Portable Tanks                |portabletanks                 |1.1.7               |SIDED_SETU|Manifest: NOSIGNATURE         connectedglass-1.1.11-forge-mc1.21.jar            |Connected Glass               |connectedglass                |1.1.11              |SIDED_SETU|Manifest: NOSIGNATURE         mvw-2.3.3b_beta.jar                               |MoreVanillaWeapons            |mvw                           |2.3.3b_beta         |SIDED_SETU|Manifest: NOSIGNATURE     Crash Report UUID: 27a54f81-da06-4a1d-ae66-e4bc3ff4b369     FML: 0.0     Forge: net.minecraftforge:52.0.17
  • Topics

×
×
  • Create New...

Important Information

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