Jump to content

1.12.2 Particles


MonolinkTV

Recommended Posts

I'm just wanting to know how to create my own like the Redstone particles that go off when you click/right-click/walkover This is what I have in my Uranium Ore Class 

package com.mrf.infinityweapons.blocks;

import java.util.Random;

import com.mrf.infinityweapons.init.ModBlocks;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Blocks;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.EnumHand;
import net.minecraft.util.EnumParticleTypes;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

public class FuturiumOre extends BlockBase
{

	private final boolean isOn;

	public FuturiumOre(String name, Material material, boolean isOn)
	{
		super(name, material);
		setHardness(1.5F);
		setResistance(15);
		setHarvestLevel("pickaxe", 2);

		if (isOn) {
			this.setTickRandomly(true);
		}

		this.isOn = isOn;
	}

	@Override
	public int tickRate(World worldIn)
	{
		return 100;
	}

	@Override
	public void onBlockClicked(World worldIn, BlockPos pos, EntityPlayer playerIn)
	{
		this.activate(worldIn, pos);
		super.onBlockClicked(worldIn, pos, playerIn);
	}

	public void onEntityWalk(World worldIn, BlockPos pos, Entity entityIn)
	{
		this.activate(worldIn, pos);
		super.onEntityWalk(worldIn, pos, entityIn);
	}

	public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ)
	{
		this.activate(worldIn, pos);
		return super.onBlockActivated(worldIn, pos, state, playerIn, hand, facing, hitX, hitY, hitZ);
	}

	public void activate(World worldIn, BlockPos pos)
	{
		this.spawnParticles(worldIn, pos);

		if (this == ModBlocks.FUTURIUM_ORE.getDefaultState()) {
			worldIn.setBlockState(pos, ModBlocks.FUTURIUM_ORE_LIT.getDefaultState());
		}
	}

	public void updateTick(World worldIn, BlockPos pos, IBlockState state, Random rand)
	{
		if (this == ModBlocks.FUTURIUM_ORE_LIT.getDefaultState()) {
			worldIn.setBlockState(pos, ModBlocks.FUTURIUM_ORE.getDefaultState());
		}
	}

	@SideOnly(Side.CLIENT)
	public void randomDisplayTick(IBlockState stateIn, World worldIn, BlockPos pos, Random rand)
	{
		if (this.isOn) {
			this.spawnParticles(worldIn, pos);
		}
	}

	private void spawnParticles(World worldIn, BlockPos pos)
	{
		Random random = worldIn.rand;
		double d0 = 0.0625D;

		for (int i = 0; i < 6; ++i) {
			double d1 = (double) ((float) pos.getX() + random.nextFloat());
			double d2 = (double) ((float) pos.getY() + random.nextFloat());
			double d3 = (double) ((float) pos.getZ() + random.nextFloat());

			if (i == 0 && !worldIn.getBlockState(pos.up()).isOpaqueCube()) {
				d2 = (double) pos.getY() + 0.0625D + 1.0D;
			}

			if (i == 1 && !worldIn.getBlockState(pos.down()).isOpaqueCube()) {
				d2 = (double) pos.getY() - 0.0625D;
			}

			if (i == 2 && !worldIn.getBlockState(pos.south()).isOpaqueCube()) {
				d3 = (double) pos.getZ() + 0.0625D + 1.0D;
			}

			if (i == 3 && !worldIn.getBlockState(pos.north()).isOpaqueCube()) {
				d3 = (double) pos.getZ() - 0.0625D;
			}

			if (i == 4 && !worldIn.getBlockState(pos.east()).isOpaqueCube()) {
				d1 = (double) pos.getX() + 0.0625D + 1.0D;
			}

			if (i == 5 && !worldIn.getBlockState(pos.west()).isOpaqueCube()) {
				d1 = (double) pos.getX() - 0.0625D;
			}

			if (d1 < (double) pos.getX() || d1 > (double) (pos.getX() + 1) || d2 < 0.0D || d2 > (double) (pos.getY() + 1) || d3 < (double) pos.getZ() || d3 > (double) (pos.getZ() + 1)) {
				worldIn.spawnParticle(EnumParticleTypes.REDSTONE, d1, d2, d3, 0.0D, 0.0D, 0.0D);
			}
		}
	}
}

 

Link to comment
Share on other sites

So, what's not working?

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

 

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

 

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

Link to comment
Share on other sites

public void onEntityWalk(World worldIn, BlockPos pos, Entity entityIn)
{
    this.activate(worldIn, pos);
    super.onEntityWalk(worldIn, pos, entityIn);
}
private void activate(World worldIn, BlockPos pos)
{
    this.spawnParticles(worldIn, pos);

    if (this == Blocks.REDSTONE_ORE)
    {
        worldIn.setBlockState(pos, Blocks.LIT_REDSTONE_ORE.getDefaultState());
    }
}

Now, if you want to spawn a custom particle, that's a different story. However if you can understand code on your own, I'd recommend using Draco18s's Github folder, linked Here, which contains the code necessary to load a custom particle effect.

 

Cheers on your mod by the way! I've given up on mine myself because the Capability system confuses the living heck out of me.

Link to comment
Share on other sites

11 minutes ago, MonolinkTV said:

Thanks, Man don't give up you can join our team if you want https://discord.gg/raR6DX

Sure, I'd be fine with that.

Also, I just realized you already implemented the code you needed to run a particle. So, the code you need to actual spawn it in is this.

 

worldObj.spawnParticle("reddust", posX, posY, posZ, 0.0D /*red*/, 1.0D /*green*/, 0.0D /*blue*/);

Where posX, posY, and posZ are will be replaced by the code of your current location.

And a list of various particles is:

 

largesmoke
portal
reddust
largeexplode (like shearing mooshrooms)
explode (when a mob dies)
largeexplosion (a bunch of largeexplode particles)
note
bubble
flame
crit
smoke (torches)
heart
splash
snowballpoof
suspended
depthsuspend
townaura
magicCrit
mobSpell
spell
instantSpell
enchantmenttable
lava
footstep
cloud
dripLava
dripWater
snowshovel
slime
iconcrack_ (after the underscore, put an item's id)
tilecrack_ (same here, except with block ids)

Edited by NolValue
Link to comment
Share on other sites

Capture.PNG

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

I recently did something similar. I believe it's pretty tricky to get the right color with default particles, if possible at all.

My solution was to create custom particle that extends the particle you want to render (in my case ParticleSpell), and then change colors in CreateParticle method. This way you have almost complete control of the particle. 

My code:

public class ParticleEndlessDust extends ParticleSpell
{
	protected ParticleEndlessDust(World worldIn, double xCoordIn, double yCoordIn, double zCoordIn, double p_i1229_8_, double ySpeed, double p_i1229_12_)
	{
		super(worldIn,xCoordIn,yCoordIn,zCoordIn,p_i1229_8_,ySpeed,p_i1229_12_);
	}
	
	@Override
    public boolean shouldDisableDepth()
    {
        return false;
    }
	
	
	public static ParticleEndlessDust CreateParticle(World worldIn, double xCoordIn, double yCoordIn, double zCoordIn, double xSpeedIn, double ySpeedIn, double zSpeedIn)
	{
		ParticleEndlessDust particle = new ParticleEndlessDust(worldIn, xCoordIn, yCoordIn, zCoordIn, xSpeedIn, ySpeedIn, zSpeedIn);
        ((ParticleSpell)particle).setBaseSpellTextureIndex(144);
        float f = worldIn.rand.nextFloat() * 0.05F +0.95F;
        particle.setRBGColorF(1.0F * f, 0.91F * f, 0.46F * f);
        return particle;
	}

}

And then you can spawn it with ParticleManager.addEffect()

	@SideOnly(Side.CLIENT)
	public void randomDisplayTick(IBlockState stateIn, World worldIn, BlockPos pos, Random rand)
	{
		Minecraft.getMinecraft().effectRenderer.addEffect(ParticleEndlessDust.CreateParticle(worldIn, pos.getX()+0.5, pos.getY(), pos.getZ()+0.5, 0, 0, 0));
	}

 

Link to comment
Share on other sites

23 hours ago, moonlyer said:

 


public class ParticleEndlessDust extends ParticleSpell
{
	protected ParticleEndlessDust(World worldIn, double xCoordIn, double yCoordIn, double zCoordIn, double p_i1229_8_, double ySpeed, double p_i1229_12_)
	{
		super(worldIn,xCoordIn,yCoordIn,zCoordIn,p_i1229_8_,ySpeed,p_i1229_12_);
	}
	
	@Override
    public boolean shouldDisableDepth()
    {
        return false;
    }
	
	
	public static ParticleEndlessDust CreateParticle(World worldIn, double xCoordIn, double yCoordIn, double zCoordIn, double xSpeedIn, double ySpeedIn, double zSpeedIn)
	{
		ParticleEndlessDust particle = new ParticleEndlessDust(worldIn, xCoordIn, yCoordIn, zCoordIn, xSpeedIn, ySpeedIn, zSpeedIn);
        ((ParticleSpell)particle).setBaseSpellTextureIndex(144);
        float f = worldIn.rand.nextFloat() * 0.05F +0.95F;
        particle.setRBGColorF(1.0F * f, 0.91F * f, 0.46F * f);
        return particle;
	}

}

 

 

You don't  get an error here that you didn't define ParticleSpell because this is what I get
The constructor ParticleRedstone(World, double, double, double, double, double, double) is undefined

Link to comment
Share on other sites

3 hours ago, MonolinkTV said:

The constructor ParticleRedstone(World, double, double, double, double, double, double) is undefined

Of course it's undefined. ParticleRedstone has a different constructor. Carefully examine ParticleRedstone class and change things accordingly. It's constructor is ParticleRedstone(World, double, double, double, float, float, float)

 

Edited by moonlyer
Link to comment
Share on other sites

package com.mrf.infinityweapons.blocks;

import java.util.Random;

import com.mrf.infinityweapons.init.ModBlocks;
import com.mrf.infinityweapons.particles.UraniumOreParticles;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
import net.minecraft.client.Minecraft;
import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Blocks;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.EnumHand;
import net.minecraft.util.EnumParticleTypes;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

public class FuturiumOre extends BlockBase
{

	private final boolean isOn;

	public FuturiumOre(String name, Material material, boolean isOn)
	{
		super(name, material);
		setHardness(1.5F);
		setResistance(15);
		setHarvestLevel("pickaxe", 2);

		if (isOn) {
			this.setTickRandomly(true);
		}

		this.isOn = isOn;
	}

	@Override
	public int tickRate(World worldIn)
	{
		return 100;
	}

	@Override
	public void onBlockClicked(World worldIn, BlockPos pos, EntityPlayer playerIn)
	{
		this.activate(worldIn, pos);
		super.onBlockClicked(worldIn, pos, playerIn);
	}

	public void onEntityWalk(World worldIn, BlockPos pos, Entity entityIn)
	{
		this.activate(worldIn, pos);
		super.onEntityWalk(worldIn, pos, entityIn);
	}

	public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ)
	{
		this.activate(worldIn, pos);
		return super.onBlockActivated(worldIn, pos, state, playerIn, hand, facing, hitX, hitY, hitZ);
	}

	public void activate(World worldIn, BlockPos pos)
	{
		this.spawnParticles(worldIn, pos);

		if (this == ModBlocks.FUTURIUM_ORE.getDefaultState()) {
			worldIn.setBlockState(pos, ModBlocks.FUTURIUM_ORE_LIT.getDefaultState());
		}
	}

	public void updateTick(World worldIn, BlockPos pos, IBlockState state, Random rand)
	{
		if (this == ModBlocks.FUTURIUM_ORE_LIT.getDefaultState()) {
			worldIn.setBlockState(pos, ModBlocks.FUTURIUM_ORE.getDefaultState());
		}
	}

	@SideOnly(Side.CLIENT)
	public void randomDisplayTick(IBlockState stateIn, World worldIn, BlockPos pos, Random rand)
	{
		if (this.isOn) {
			this.spawnParticles(worldIn, pos);
		}
	}

	private void spawnParticles(World worldIn, BlockPos pos)
	{

		Random random = worldIn.rand;
		double d0 = 0.0625D;

		for (int i = 0; i < 6; ++i) {
			double d1 = (double) ((float) pos.getX() + random.nextFloat());
			double d2 = (double) ((float) pos.getY() + random.nextFloat());
			double d3 = (double) ((float) pos.getZ() + random.nextFloat());

			if (i == 0 && !worldIn.getBlockState(pos.up()).isOpaqueCube()) {
				d2 = (double) pos.getY() + 0.0625D + 1.0D;
			}

			if (i == 1 && !worldIn.getBlockState(pos.down()).isOpaqueCube()) {
				d2 = (double) pos.getY() - 0.0625D;
			}

			if (i == 2 && !worldIn.getBlockState(pos.south()).isOpaqueCube()) {
				d3 = (double) pos.getZ() + 0.0625D + 1.0D;
			}

			if (i == 3 && !worldIn.getBlockState(pos.north()).isOpaqueCube()) {
				d3 = (double) pos.getZ() - 0.0625D;
			}

			if (i == 4 && !worldIn.getBlockState(pos.east()).isOpaqueCube()) {
				d1 = (double) pos.getX() + 0.0625D + 1.0D;
			}

			if (i == 5 && !worldIn.getBlockState(pos.west()).isOpaqueCube()) {
				d1 = (double) pos.getX() - 0.0625D;
			}

			if (d1 < (double) pos.getX() || d1 > (double) (pos.getX() + 1) || d2 < 0.0D || d2 > (double) (pos.getY() + 1) || d3 < (double) pos.getZ() || d3 > (double) (pos.getZ() + 1)) {
				Minecraft.getMinecraft().effectRenderer.addEffect(UraniumOreParticles.CreateParticle(worldIn, pos.getX(), pos.getY(), pos.getY(), 1f, 0, 0, 1));

				//worldIn.spawnParticle(EnumParticleTypes.REDSTONE, d1, d2, d3, -10.0D, 8.0D, -10.0D);
			}
		}
	}
}
package com.mrf.infinityweapons.particles;

import net.minecraft.client.particle.ParticleRedstone;
import net.minecraft.world.World;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

@SideOnly(Side.CLIENT)
public class UraniumOreParticles extends ParticleRedstone
{

	public UraniumOreParticles(World worldIn, double xCoordIn, double yCoordIn, double zCoordIn, float f, float p_i46349_8_, float p_i46349_9_, float p_i46349_10_)
	{
		super(worldIn, xCoordIn, yCoordIn, zCoordIn, 1.0F, p_i46349_8_, p_i46349_9_, p_i46349_10_);
	}

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

	public static UraniumOreParticles CreateParticle(World worldIn, double xCoordIn, double yCoordIn, double zCoordIn, float f, float p_i46349_8_, float p_i46349_9_, float p_i46349_10_)
	{
		UraniumOreParticles particle = new UraniumOreParticles(worldIn, xCoordIn, yCoordIn, zCoordIn, 1.0F, p_i46349_8_, p_i46349_9_, p_i46349_10_);
		((ParticleRedstone) particle).setParticleTextureIndex(0);
		float f1 = worldIn.rand.nextFloat() * 0.05F + 0.95F;
		particle.setRBGColorF(1.0F * f1, 0.91F * f1, 0.46F * f1);
		return particle;
	}

}

Did what you said nothing spawned

Link to comment
Share on other sites

10 hours ago, MonolinkTV said:

Did what you said nothing spawned

Well, if something's not working - then you're doing it wrong. 

Here's your mistake. You spawn your particles not at your block's position.

Minecraft.getMinecraft().effectRenderer.addEffect(UraniumOreParticles.CreateParticle(worldIn, pos.getX(), pos.getY(), pos.getY(), 1f, 0, 0, 1));

I did not check your if statements, but without them your code runs perfectly fine. 

 

And about your isOn variable. The way you have it right now means that every block in the world would try to spawn particle if isOn is true. If you want your blocks to spawn particles independently - you probably should make isOn as boolean property.

Edited by moonlyer
Link to comment
Share on other sites

1 hour ago, moonlyer said:

And about your isOn variable. The way you have it right now means that every block in the world would try to spawn particle if isOn is true. If you want your blocks to spawn particles independently - you probably should make isOn as boolean property.


 
private final boolean isOn;

And also i am getting my blocks position what do you mean and of course somethings wrong i was asking why

Link to comment
Share on other sites

1 hour ago, MonolinkTV said: and of course somethings wrong i was asking why

Sry, didn't want to be mean. Just meant that this type of mistakes easily handled with a little bit of patience and attention.

And about isOn. You're right. I've looked at BlockRedstoneOre and it does the same thing. But I really don't see the point to have it, cause it does never change, and does absolutely nothing. Just like if (true)

Link to comment
Share on other sites

On 5/24/2018 at 6:48 PM, MonolinkTV said:

package com.mrf.infinityweapons.blocks;

import java.util.Random;

import com.mrf.infinityweapons.init.ModBlocks;
import com.mrf.infinityweapons.particles.UraniumOreParticles;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
import net.minecraft.client.Minecraft;
import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Blocks;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.EnumHand;
import net.minecraft.util.EnumParticleTypes;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

public class FuturiumOre extends BlockBase
{

	private final boolean isOn;

	public FuturiumOre(String name, Material material, boolean isOn)
	{
		super(name, material);
		setHardness(1.5F);
		setResistance(15);
		setHarvestLevel("pickaxe", 2);

		if (isOn) {
			this.setTickRandomly(true);
		}

		this.isOn = isOn;
	}

	@Override
	public int tickRate(World worldIn)
	{
		return 100;
	}

	@Override
	public void onBlockClicked(World worldIn, BlockPos pos, EntityPlayer playerIn)
	{
		this.activate(worldIn, pos);
		super.onBlockClicked(worldIn, pos, playerIn);
	}

	public void onEntityWalk(World worldIn, BlockPos pos, Entity entityIn)
	{
		this.activate(worldIn, pos);
		super.onEntityWalk(worldIn, pos, entityIn);
	}

	public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ)
	{
		this.activate(worldIn, pos);
		return super.onBlockActivated(worldIn, pos, state, playerIn, hand, facing, hitX, hitY, hitZ);
	}

	public void activate(World worldIn, BlockPos pos)
	{
		this.spawnParticles(worldIn, pos);

		if (this == ModBlocks.FUTURIUM_ORE.getDefaultState()) {
			worldIn.setBlockState(pos, ModBlocks.FUTURIUM_ORE_LIT.getDefaultState());
		}
	}

	public void updateTick(World worldIn, BlockPos pos, IBlockState state, Random rand)
	{
		if (this == ModBlocks.FUTURIUM_ORE_LIT.getDefaultState()) {
			worldIn.setBlockState(pos, ModBlocks.FUTURIUM_ORE.getDefaultState());
		}
	}

	@SideOnly(Side.CLIENT)
	public void randomDisplayTick(IBlockState stateIn, World worldIn, BlockPos pos, Random rand)
	{
		if (this.isOn) {
			this.spawnParticles(worldIn, pos);
		}
	}

	private void spawnParticles(World worldIn, BlockPos pos)
	{

		Random random = worldIn.rand;
		double d0 = 0.0625D;

		for (int i = 0; i < 6; ++i) {
			double d1 = (double) ((float) pos.getX() + random.nextFloat());
			double d2 = (double) ((float) pos.getY() + random.nextFloat());
			double d3 = (double) ((float) pos.getZ() + random.nextFloat());

			if (i == 0 && !worldIn.getBlockState(pos.up()).isOpaqueCube()) {
				d2 = (double) pos.getY() + 0.0625D + 1.0D;
			}

			if (i == 1 && !worldIn.getBlockState(pos.down()).isOpaqueCube()) {
				d2 = (double) pos.getY() - 0.0625D;
			}

			if (i == 2 && !worldIn.getBlockState(pos.south()).isOpaqueCube()) {
				d3 = (double) pos.getZ() + 0.0625D + 1.0D;
			}

			if (i == 3 && !worldIn.getBlockState(pos.north()).isOpaqueCube()) {
				d3 = (double) pos.getZ() - 0.0625D;
			}

			if (i == 4 && !worldIn.getBlockState(pos.east()).isOpaqueCube()) {
				d1 = (double) pos.getX() + 0.0625D + 1.0D;
			}

			if (i == 5 && !worldIn.getBlockState(pos.west()).isOpaqueCube()) {
				d1 = (double) pos.getX() - 0.0625D;
			}

			if (d1 < (double) pos.getX() || d1 > (double) (pos.getX() + 1) || d2 < 0.0D || d2 > (double) (pos.getY() + 1) || d3 < (double) pos.getZ() || d3 > (double) (pos.getZ() + 1)) {
				Minecraft.getMinecraft().effectRenderer.addEffect(UraniumOreParticles.CreateParticle(worldIn, pos.getX(), pos.getY(), pos.getY(), 1f, 0, 0, 1));

				//worldIn.spawnParticle(EnumParticleTypes.REDSTONE, d1, d2, d3, -10.0D, 8.0D, -10.0D);
			}
		}
	}
}

package com.mrf.infinityweapons.particles;

import net.minecraft.client.particle.ParticleRedstone;
import net.minecraft.world.World;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

@SideOnly(Side.CLIENT)
public class UraniumOreParticles extends ParticleRedstone
{

	public UraniumOreParticles(World worldIn, double xCoordIn, double yCoordIn, double zCoordIn, float f, float p_i46349_8_, float p_i46349_9_, float p_i46349_10_)
	{
		super(worldIn, xCoordIn, yCoordIn, zCoordIn, 1.0F, p_i46349_8_, p_i46349_9_, p_i46349_10_);
	}

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

	public static UraniumOreParticles CreateParticle(World worldIn, double xCoordIn, double yCoordIn, double zCoordIn, float f, float p_i46349_8_, float p_i46349_9_, float p_i46349_10_)
	{
		UraniumOreParticles particle = new UraniumOreParticles(worldIn, xCoordIn, yCoordIn, zCoordIn, 1.0F, p_i46349_8_, p_i46349_9_, p_i46349_10_);
		((ParticleRedstone) particle).setParticleTextureIndex(0);
		float f1 = worldIn.rand.nextFloat() * 0.05F + 0.95F;
		particle.setRBGColorF(1.0F * f1, 0.91F * f1, 0.46F * f1);
		return particle;
	}

}

Did what you said nothing spawned

 

When you're debugging a problem with your own code, you can learn a lot by adding some console print statements in your code to help you check that the code is actually running and the key values of the code that is running. You don't need to guess. So for example, if you had a few console statements you could confirm that the createParticle method was even being called at all and furthermore you could double-check the position or whatever else might be the problem.

 

One other thing -- with rendering if you screw up the texture coordinates you can end up with something that is "invisible" because you don't actually have enough of the actual texture. Like if the u, v coordinates defined a really small area. Or if you texture atlas has places where there is just transparent part of the image.

 

Anyway, you don't need to guess or ask people here to guess what is wrong. Just print out what is happening and it should be obvious.

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

Link to comment
Share on other sites

5 hours ago, MonolinkTV said:

So you said i wasn't getting my blocks position. I did pos.GetX,y and z 

 

You do pos.getY() where should be pos.getZ()

18 hours ago, moonlyer said:

Here's your mistake. You spawn your particles not at your block's position.


Minecraft.getMinecraft().effectRenderer.addEffect(UraniumOreParticles.CreateParticle(worldIn, pos.getX(), pos.getY(), pos.getY(), 1f, 0, 0, 1));

 

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

    • Check for the full GPU name and search for it on the site
    • [21:04:27] [main/INFO]: ModLauncher running: args [--username, WeepinAngel98, --version, forge-47.2.17, --gameDir, C:\Users\pinkl\curseforge\minecraft\Instances\modded, --assetsDir, C:\Users\pinkl\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, d74afef2a81c41b0a3331afd04243d57, --accessToken, ????????, --clientId, ZjY2M2FkMWEtNjFhMC00ZjY4LTg0ZjMtNmJiY2Y3NTY3MWRj, --xuid, 2535431236261768, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\pinkl\curseforge\minecraft\Install\quickPlay\java\1711649064910.json, --launchTarget, forgeclient, --fml.forgeVersion, 47.2.17, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [21:04:27] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Microsoft; OS Windows 11 arch amd64 version 10.0 [21:04:29] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [21:04:29] [main/INFO]: Trying GL version 4.6 [21:04:29] [main/INFO]: Requested GL version 4.6 got version 4.6 [21:04:29] [main/INFO]: Mixin Transmogrifier is definitely up to no good... [21:04:29] [main/INFO]: crimes against java were committed [21:04:29] [main/INFO]: Redirector CoreMod initialized successfully! [21:04:29] [main/INFO]: Original mixin transformation service successfully crobbed by mixin-transmogrifier! [21:04:29] [pool-2-thread-1/INFO]: GL info: AMD Radeon(TM) Graphics GL version 4.6.0 Core Profile Context 24.3.1.240216, ATI Technologies Inc. [21:04:29] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/pinkl/curseforge/minecraft/Instances/modded/mods/Connector-1.0.0-beta.36+1.20.1.jar%23444%23448!/ Service=ModLauncher Env=CLIENT [21:04:29] [main/INFO]: Found mod file Connector-1.0.0-beta.36+1.20.1-mod.jar of type MOD with provider dev.su5ed.sinytra.connector.locator.ConnectorEarlyLocator@12aa4996 [21:04:30] [main/INFO]: Found mod file advancednetherite-forge-2.0.2-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file aeroblender-1.20.1-1.0.1-neoforge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file aether-1.20.1-1.2.0-neoforge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file aether-redux-1.3.4-1.20.1-neoforge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file aether_delight_1.0.0_forge_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file aether_enhanced_extinguishing-1.20.1-1.0.0-neoforge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file alexsdelight-1.5.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file alexsmobs-1.22.7.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file alternate_current-mc1.20-1.7.0.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file another_furniture-forge-1.20.1-3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Aquaculture-1.20.1-2.5.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file architectury-9.1.13-forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file ash_api-forge-3.0.2+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file athena-forge-1.20.1-3.1.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file azurelib-neo-1.20.1-2.0.20.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file backpacked-forge-1.20.1-2.2.5.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file balm-forge-1.20.1-7.2.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file BarteringStation-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file BetterAdvancements-1.20.1-0.3.2.161.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file betterarcheology-1.1.7-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file betterchunkloading-1.20.1-3.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file BetterCompatibilityChecker-forge-4.0.8+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file betterfpsdist-1.20.1-4.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file BetterModsButton-v8.0.2-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file BHMenu-Forge-1.20.1-2.4.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file biomemusic-1.20.1-2.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file BiomesOPlenty-1.20.1-18.0.0.598.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file blossom-blade-1.0.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file blue_skies-1.20.1-1.3.31.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Boat-Item-View-Forge-1.20.1-0.0.5.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file BoatBreakFix-Universal-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Bookshelf-Forge-1.20.1-20.1.9.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Bountiful-6.0.3+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Butchersdelight beta 1.20.1 2.0.8f.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file bygonenether-1.3.2-1.20.x.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file caelus-forge-3.1.0+1.20.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file camera-forge-1.20.1-1.0.8.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file carryon-forge-1.20.1-2.1.2.7.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file charmofundying-forge-6.4.5+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file chat_heads-0.10.31-forge-1.20.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file chefs-delight-1.0.3-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file cherishedworlds-forge-6.1.4+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Chipped-forge-1.20.1-3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file chunksending-1.20.1-2.8.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file citadel-2.5.4-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file citresewn-1.20.1-5.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file clientcrafting-1.20.1-1.8.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file cloth-config-11.1.118-forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Clumps-forge-1.20.1-12.0.0.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file collective-1.20.1-7.30.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file comforts-forge-6.3.5+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file ConfiguredDefaults-v8.0.1-1.20.1-Forge.jar of type LANGPROVIDER with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file connectivity-1.20.1-4.9.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file ConnectorExtras-1.9.2+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file controllable-forge-1.20.1-0.20.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Controlling-forge-1.20.1-12.0.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file coroutil-forge-1.20.1-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file corpse-1.20.1-1.0.9.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file CrabbersDelight-1.20.1-1.1.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file cristellib-1.1.5-forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Cucumber-1.20.1-7.0.7.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file cuisinedelight-1.1.12.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file CullLessLeaves-Reforged-1.20.1-1.0.5.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file cupboard-1.20.1-2.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file curios-forge-5.7.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file CutThrough-v8.0.1-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Decorative Blocks-forge-1.20.1-4.0.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file deep_aether-1.20.1-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file deeperdarker-forge-1.20.1-1.2.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Delightful-1.20.1-3.4.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file despawn_tweaker-1.20.1-0.0.5.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file deuf-1.20.1-1.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file DiagonalFences-v8.1.3-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file dimensionalsycnfixes-1.20.1-0.0.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file dragonmounts-1.20.1-1.1.5.b3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file drippyloadingscreen_forge_2.2.4_MC_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file dungeons-and-taverns-3.0.3 [Forge].jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file DungeonsArise-1.20.1-2.1.57-release.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file EasyAnvils-v8.0.1-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file EasyMagic-v8.0.1-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file elevatorid-1.20.1-lex-1.9.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file elytraslot-forge-6.3.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file EnchantmentDescriptions-Forge-1.20.1-17.0.13.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file endersdelight-1.20.1-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file EndlessBiomes 1.4.2s - 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file entity_model_features_forge_1.20.1-1.2.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file entity_texture_features_forge_1.20.1-5.2.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file entityculling-forge-1.6.2-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file EuphoriaPatcher-0.3.0-forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file everycomp-1.20-2.6.29.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file explorations-forge-1.20.1-1.5.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file explorify-v1.3.0-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file extra_compat-1.4.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file fabric-api-0.91.0+1.10.8+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Fallingleaves-1.20.1-2.1.0.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file FallingTree-1.20.1-4.3.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file fancymenu_forge_2.14.13_MC_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file FarmersDelight-1.20.1-1.2.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file farsight-1.20.1-3.6.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file fast-ip-ping-mc1.20.4-forge-v1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file fastasyncworldsave-1.20.1-1.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file fastpaintings-1.20-1.2.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file ferritecore-6.0.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file flib-1.20.1-0.0.11.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file ForgeConfigScreens-v8.0.2-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file formations-1.0.2-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file formationsnether-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file formationsoverworld-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file framework-forge-1.20.1-0.6.16.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file friendsandfoes-forge-mc1.20.1-2.0.9.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file ftb-teams-forge-2001.1.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file ftb-xmod-compat-forge-2.1.0.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file fullstackwatchdog-1.0.1+1.19.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file gardens-of-the-dead-forge-4.0.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.4.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file GeckoLibOculusCompat-Forge-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file geophilic-v2.1.0-mc1.20u1.20.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file GeophilicReforged-v1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file goblintraders-forge-1.20.1-1.9.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file gpumemleakfix-1.20.1-1.8.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Grass_Overhaul-Forge-23.10.10-MC1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file guardvillagers-1.20.1-1.6.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file handcrafted-forge-1.20.1-3.0.5.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file hearth_and_home-forge-1.20.1-2.0.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file hearths-v1.0.0-mc1.20u1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Highlighter-1.20.1-forge-1.1.9.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file iceandfire-2.1.13-1.20.1-beta-4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Iceberg-1.20.1-forge-1.1.18.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file IllagerInvasion-v8.0.4-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file ImmediatelyFast-Forge-1.2.10+1.20.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file inventorypets-1.20.1-2.1.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file invhud.forge.1.20.1-3.4.18.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file ironchest-1.20.1-14.4.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file item-filters-forge-2001.1.0-build.59.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Jade-1.20.1-forge-11.8.0.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file jei-1.20.1-forge-15.2.0.27.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file JustEnoughProfessions-forge-1.20.1-3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file JustEnoughResources-1.20.1-1.4.0.247.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file justzoom_forge_1.0.2_MC_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Kambrik-6.1.1+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Kiwi-1.20.1-forge-11.5.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file kleeslabs-forge-1.20-15.0.0.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file konkrete_forge_1.8.0_MC_1.20-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file kotlinforforge-4.10.0-all.jar of type LIBRARY with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file KryptonReforged-0.2.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file L_Enders_Cataclysm-1.90 -1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file lazurite-1.0.2+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file LeavesBeGone-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file lmft-1.0.4+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Log-Begone-Forge-1.20.1-1.0.8.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file lootintegrations-1.20.1-3.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file lost_aether_content-1.20.1-1.2.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Luna-FORGE-MC1.19.X-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file MagnumTorch-v8.0.2-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file mcw-bridges-2.1.1-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file mcw-doors-1.1.0forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file mcw-fences-1.1.1-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file mcw-furniture-3.2.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file mcw-lights-1.0.6-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file mcw-paths-1.0.4forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file mcw-roofs-2.3.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file mcw-trapdoors-1.1.2-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file mcw-windows-2.2.1-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file memoryleakfix-forge-1.17+-1.1.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file memorysettings-1.20.1-5.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file MindfulDarkness-v8.0.3-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file modpack-update-checker-1.20.1-forge-0.11.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file moonlight-1.20-2.9.10-forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file MouseTweaks-forge-mc1.20-2.25.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file MutantMonsters-v8.0.7-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file MysticalAgriculture-1.20.1-7.0.10.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file NaturesCompass-1.20.1-1.11.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Necronomicon-Forge-1.4.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file neruina-1.3.0-forge+1.18.2-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file NetherChested-v8.0.3-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file netherportalfix-forge-1.20-13.0.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file nethersdelight-1.20.1-4.0.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file NightConfigFixes-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file NoChatReports-FORGE-1.20.1-v2.2.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file notenoughanimations-forge-1.7.1-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file obsidianui-0.1.2+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file oceansdelight-1.0.2-1.20.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file oculus-mc1.20.1-1.6.15.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file open-parties-and-claims-forge-1.20.1-0.20.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file OverflowingBars-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file PacketFixer-forge-1.20.1-1.2.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Paintings-forge-1.20.1-11.0.0.0.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Patchouli-1.20.1-84-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Paxi-1.20-Forge-4.0.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Philips-Ruins1.20.1-3.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file PickUpNotifier-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Ping-Wheel-1.7.1-forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Placebo-1.20.1-8.6.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file polymorph-forge-0.49.2+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file PuzzlesLib-v8.1.16-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Quark-4.0-436.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file quark_delight_1.0.0_forge_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Raided-1.20.1-0.1.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file recipeessentials-1.20.1-3.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file repurposed_structures-7.1.11+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file resourcefulconfig-forge-1.20.1-2.1.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file resourcefullib-forge-1.20.1-2.1.23.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file ResourcePackOverrides-v8.0.2-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file revampedwolf-1.20.1-5.0.0.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file right-click-harvest-3.2.3+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Ryoamiclights-0.1.7+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file sawmill-1.20-1.3.0.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Searchables-forge-1.20.1-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file SereneSeasons-1.20.1-9.0.0.46.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file ServerBrowser-1.20-FORGE-1.1.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file servercountryflags-1.9.3-1.20.1-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file ShieldExpansion-1.20.1-1.1.7a.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file SimpleDiscordRichPresence-forge-4.0.3-build.40+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file simplehats-forge-1.20.1-0.2.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file SimpleStorageNetwork-1.20.1-1.10.0.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file skinlayers3d-forge-1.6.2-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file SkyVillages-1.0.2-1.20.1-forge-release.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file SleepingOverhaul-2.0.2-Forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file smarterfarmers-1.20-1.8.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file smoothchunk-1.20.1-3.5.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file SnowRealMagic-1.20.1-forge-10.2.7.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file snowundertrees-1.20.1-1.4.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file sophisticatedbackpacks-1.20.1-3.20.3.1034.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file sophisticatedcore-1.20.1-0.6.11.578.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file soundphysics-forge-1.20.1-1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file spark-1.10.53-forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file sparsestructuresreforged-1.20.1-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file stalwart-dungeons-1.20.1-1.2.8.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Stoneworks-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file StonyCliffs-v1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Structory_1.20.2_v1.3.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Structory_Towers_1.20.4_v1.0.6.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file structure_gel-1.20.1-2.16.0.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file structureessentials-1.20.1-3.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file supermartijn642corelib-1.1.17-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file supplementaries-1.20-2.7.35.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file suppsquared-1.20-1.1.12.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file TerraBlender-forge-1.20.1-3.0.1.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file the-conjurer-1.20.1-1.1.6.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Tips-Forge-1.20.1-12.0.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file toofast-1.20-0.4.3.5.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Towns-and-Towers-1.12-Fabric+Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file TradingPost-v8.0.2-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file transparent-forge-8.0.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file travelersbackpack-forge-1.20.1-9.1.13.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Twigs-1.20.1-3.1.0.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file twilightdelight-2.0.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file twilightforest-1.20.1-4.3.2145-universal.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file umbral_skies-1.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file veinmining-forge-1.3.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file villagernames-1.20.1-7.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file VillagersPlus_3.1_(FORGE)_for_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file villagesandpillages-forge-mc1.20.1-1.0.0.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file visuality-forge-2.0.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file VisualWorkbench-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file voicechat-forge-1.20.1-2.5.9.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file voidtotem-forge-1.20-3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file watut-forge-1.20.1-1.0.13.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file waystones-forge-1.20-14.1.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file weaponmaster_ydm-forge-1.20.1-4.2.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file whatareyouvotingfor2023-1.20.1-1.2.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file witherstormmod-1.20.1-4.0.1.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file XaeroPlus-Forge-1.20.1-67-WM1.37.8-MM23.9.7.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Xaeros_Minimap_23.9.7_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file XaerosWorldMap_1.37.8_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file xenon-1.20.1-0.3.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file xptome-1.20.1-2.2.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file YeetusExperimentus-Forge-2.3.1-build.6+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file YSNS-Forge-MC1.20-1.0.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file YungsApi-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file YungsBetterDungeons-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file YungsBetterEndIsland-1.20-Forge-2.0.5.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file YungsBetterJungleTemples-1.20-Forge-2.0.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file YungsBetterMineshafts-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file YungsBetterNetherFortresses-1.20-Forge-2.0.5.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file YungsBetterStrongholds-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file YungsBetterWitchHuts-1.20-Forge-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file YungsBridges-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file YungsMenuTweaks-1.20.1-Forge-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/INFO]: Found mod file Zeta-1.0-13.jar of type MOD with provider {mods folder locator at C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods} [21:04:30] [main/WARN]: Mod file C:\Users\pinkl\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.2.17\fmlcore-1.20.1-47.2.17.jar is missing mods.toml file [21:04:30] [main/WARN]: Mod file C:\Users\pinkl\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.2.17\javafmllanguage-1.20.1-47.2.17.jar is missing mods.toml file [21:04:30] [main/WARN]: Mod file C:\Users\pinkl\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.2.17\lowcodelanguage-1.20.1-47.2.17.jar is missing mods.toml file [21:04:30] [main/WARN]: Mod file C:\Users\pinkl\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.2.17\mclanguage-1.20.1-47.2.17.jar is missing mods.toml file [21:04:30] [main/INFO]: Found mod file fmlcore-1.20.1-47.2.17.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@17a703f5 [21:04:30] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.2.17.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@17a703f5 [21:04:30] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.2.17.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@17a703f5 [21:04:30] [main/INFO]: Found mod file mclanguage-1.20.1-47.2.17.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@17a703f5 [21:04:30] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@17a703f5 [21:04:30] [main/INFO]: Found mod file forge-1.20.1-47.2.17-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@17a703f5 [21:04:31] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [21:04:31] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: terrablender. Using Mod File: C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods\TerraBlender-forge-1.20.1-3.0.1.4.jar [21:04:31] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: aeroblender. Using Mod File: C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods\aeroblender-1.20.1-1.0.1-neoforge.jar [21:04:31] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: curios. Using Mod File: C:\Users\pinkl\curseforge\minecraft\Instances\modded\mods\curios-forge-5.7.0+1.20.1.jar [21:04:31] [main/INFO]: Found 88 dependencies adding them to mods collection [21:04:31] [main/INFO]: Found mod file fabric-transfer-api-v1-3.3.3+b00938ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-dimensions-v1-2.1.53+8005d10d77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-renderer-api-v1-3.2.0+1d29b44577.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file caffeine-3.1.8.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file puzzlesapi-forge-8.1.5.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file junixsocket-common-2.6.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file extras-utils-1.9.2+1.20.1.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file libsdl4j-2.26.4-1.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-model-loading-api-v1-1.0.2+3a78c72c77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-item-api-v1-2.1.27+2272fc7f77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file kubejs-bridge-1.9.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file modmenu-bridge-1.9.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-rendering-fluids-v1-3.0.27+4ac5e37a77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-screen-handler-api-v1-1.3.29+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file junixsocket-native-common-2.6.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-resource-loader-v0-0.11.9+142e25ab77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-models-v0-0.4.1+7c3892a477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-rendering-v1-3.0.7+1c0ea72177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-renderer-indigo-1.5.0+67f9824077.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-convention-tags-v1-1.5.4+fa3d1c0177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-mining-level-api-v1-2.1.49+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-command-api-v1-1.2.33+f71b366f77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-command-api-v2-2.2.12+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-block-view-api-v2-1.0.0+0767707077.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file MixinSquared-0.1.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file mixinextras-forge-0.2.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file rei-bridge-1.9.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file geckolib-fabric-compat-1.9.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file continuity-compat-1.9.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file jankson-1.2.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file DiscordIPC-a8d6631cc9.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-screen-api-v1-2.0.7+45a670a577.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file energy-bridge-1.9.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file kfflang-4.10.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-particles-v1-1.1.1+78e1ecb877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file puzzlesaccessapi-forge-8.0.9.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-content-registries-v0-4.0.10+a670df1e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-transitive-access-wideners-v1-4.3.0+1880499877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file terrablender-bridge-1.9.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file diagonalblocks-forge-8.0.2.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file jctools-core-4.0.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-game-rule-api-v1-1.0.39+461110ab77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-api-base-0.4.30+ef105b4977.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-api-lookup-api-v1-1.6.35+67f9824077.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-blockrenderlayer-v1-1.1.40+1d0da21e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file mixinsquared-forge-0.1.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file amecsapi-1.5.3+mc1.20-pre1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file json-20210307.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file Registrate-MC1.20-1.3.11.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file spectrelib-forge-0.13.15+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-block-api-v1-1.0.10+0e6cb7f777.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file httpmime-4.5.10.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file jei-bridge-1.9.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-resource-conditions-api-v1-2.3.7+9ad825cd77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file reach-entity-attributes-2.4.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file forgeconfigapiport-1.9.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file Reflect-1.3.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file LambdaEvents-2.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file kffmod-4.10.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file architectury-bridge-1.9.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file l2serial-1.2.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file bytecodecs-1.0.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-item-group-api-v1-4.0.11+f687ac9377.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file jcpp-1.4.14.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-biome-api-v1-13.0.12+dd0389a577.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-entity-events-v1-1.5.22+b909fbe377.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file Connector-1.0.0-beta.36+1.20.1-fabricloader.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-registry-sync-v0-2.3.2+1c0ea72177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file cumulus_menus-1.20.1-1.0.0-neoforge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-recipe-api-v1-1.0.20+514a076577.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file yabn-1.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-object-builder-api-v1-11.1.2+2174fc8477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-loot-api-v2-1.2.0+eb28f93e77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-rendering-data-attachment-v1-0.3.36+a6081afc77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file nitrogen_internals-1.20.1-1.0.2-neoforge.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-networking-api-v1-1.3.10+503a202477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file l2library-2.4.16-slim.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-sound-api-v1-1.0.12+4f23bd8477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file MixinExtras-0.3.5.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-message-api-v1-5.1.8+52cc178c77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file kfflib-4.10.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file emi-bridge-1.9.2+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-lifecycle-events-v1-2.2.21+afab492177.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-data-generation-api-v1-12.3.3+369cb3a477.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-events-interaction-v0-0.6.1+0d0bd5a777.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-key-binding-api-v1-1.0.36+561530ec77.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:31] [main/INFO]: Found mod file fabric-client-tags-api-v1-1.1.1+5d6761b877.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@20999517 [21:04:32] [main/INFO]: Fabric mod metadata not found in jar ConfiguredDefaults.v8._0._1.Forge, ignoring [21:04:32] [main/INFO]: Fabric mod metadata not found in jar thedarkcolour.kotlinforforge, ignoring [21:04:33] [main/INFO]: Dependency resolution found 6 candidates to load [21:04:34] [main/INFO]: Found mod file bclib-3.0.14_mapped_srg_1.20.1.jar of type MOD with provider dev.su5ed.sinytra.connector.locator.ConnectorLocator@3a788fe0 [21:04:34] [main/INFO]: Found mod file better-end-4.0.11_mapped_srg_1.20.1.jar of type MOD with provider dev.su5ed.sinytra.connector.locator.ConnectorLocator@3a788fe0 [21:04:34] [main/INFO]: Found mod file Eldritch_End-FORGE-MC1.20.1-0.2.31_mapped_srg_1.20.1.jar of type MOD with provider dev.su5ed.sinytra.connector.locator.ConnectorLocator@3a788fe0 [21:04:34] [main/INFO]: Found mod file inventorymanagement-1.3.1+1.20_mapped_srg_1.20.1.jar of type MOD with provider dev.su5ed.sinytra.connector.locator.ConnectorLocator@3a788fe0 [21:04:34] [main/INFO]: Found mod file spawnersplus-2.0.1-1.20.1_mapped_srg_1.20.1.jar of type MOD with provider dev.su5ed.sinytra.connector.locator.ConnectorLocator@3a788fe0 [21:04:34] [main/INFO]: Found mod file bclib-3.0.14$wunderlib-1.1.5_mapped_srg_1.20.1.jar of type MOD with provider dev.su5ed.sinytra.connector.locator.ConnectorLocator@3a788fe0 [21:04:34] [main/INFO]: Applying default files... [21:04:34] [main/ERROR]: Missing or unsupported mandatory dependencies:     Mod ID: 'ftblibrary', Requested by: 'ftbxmodcompat', Expected range: '[2001.1.3,)', Actual version: '[MISSING]'     Mod ID: 'ftblibrary', Requested by: 'ftbteams', Expected range: '[2001.1.2,)', Actual version: '[MISSING]' [21:04:34] [main/INFO]: Successfully made module authlib transformable [21:04:37] [main/INFO]: Compatibility level set to JAVA_17 [21:04:38] [main/INFO]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [21:04:38] [main/INFO]: Successfully loaded Mixin Connector [de.maxhenkel.camera.MixinConnector] [21:04:38] [main/ERROR]: Skipping early mod setup due to previous error [21:04:38] [main/INFO]: Launching target 'forgeclient' with arguments [--version, forge-47.2.17, --gameDir, C:\Users\pinkl\curseforge\minecraft\Instances\modded, --assetsDir, C:\Users\pinkl\curseforge\minecraft\Install\assets, --uuid, d74afef2a81c41b0a3331afd04243d57, --username, WeepinAngel98, --assetIndex, 5, --accessToken, ????????, --clientId, ZjY2M2FkMWEtNjFhMC00ZjY4LTg0ZjMtNmJiY2Y3NTY3MWRj, --xuid, 2535431236261768, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\pinkl\curseforge\minecraft\Install\quickPlay\java\1711649064910.json] [21:04:38] [main/INFO]: Loaded configuration file for Xenon: 51 options available, 0 override(s) found [21:04:38] [main/INFO]: Searching for graphics cards... [21:04:38] [main/INFO]: Found graphics card: GraphicsAdapterInfo[vendor=NVIDIA, name=NVIDIA GeForce RTX 3060 Laptop GPU, version=DriverVersion=31.0.15.5186] [21:04:38] [main/INFO]: Found graphics card: GraphicsAdapterInfo[vendor=AMD, name=AMD Radeon(TM) Graphics, version=DriverVersion=31.0.21912.14] [21:04:38] [main/WARN]: Sodium has applied one or more workarounds to prevent crashes or other issues on your system: [NVIDIA_THREADED_OPTIMIZATIONS] [21:04:38] [main/WARN]: This is not necessarily an issue, but it may result in certain features or optimizations being disabled. You can sometimes fix these issues by upgrading your graphics driver. [21:04:39] [main/WARN]: Reference map 'lmft-common-refmap.json' for lmft-common.mixins.json could not be read. If this is a development environment you can ignore this message [21:04:39] [main/WARN]: Reference map 'handcrafted-forge-1.20.1-forge-refmap.json' for handcrafted.mixins.json could not be read. If this is a development environment you can ignore this message [21:04:39] [main/WARN]: Reference map 'ysnsforge.refmap.json' for ysns.mixins.json could not be read. If this is a development environment you can ignore this message [21:04:39] [main/WARN]: Reference map 'nitrogen_internals.refmap.json' for nitrogen_internals.mixins.json could not be read. If this is a development environment you can ignore this message [21:04:39] [main/WARN]: Reference map 'cuisinedelight.refmap.json' for cuisinedelight.mixins.json could not be read. If this is a development environment you can ignore this message [21:04:39] [main/WARN]: Reference map 'fastpaintings-forge-refmap.json' for fastpaintings-forge.mixins.json could not be read. If this is a development environment you can ignore this message [21:04:39] [main/WARN]: Failed to select mixin config: immediatelyfast-forge.mixins.json java.lang.NullPointerException: null     at java.util.Optional.orElseThrow(Optional.java:403) ~[?:?]     at net.raphimc.immediatelyfast.ImmediatelyFast.earlyInit(ImmediatelyFast.java:70) ~[ImmediatelyFast-Forge-1.2.10+1.20.4.jar%23582!/:?]     at net.raphimc.immediatelyfast.injection.ImmediatelyFastMixinPlugin.onLoad(ImmediatelyFastMixinPlugin.java:37) ~[ImmediatelyFast-Forge-1.2.10+1.20.4.jar%23582!/:?]     at org.spongepowered.asm.mixin.transformer.PluginHandle.onLoad(PluginHandle.java:119) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinConfig.onSelect(MixinConfig.java:709) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinProcessor.selectConfigs(MixinProcessor.java:498) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinProcessor.select(MixinProcessor.java:460) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinProcessor.checkSelect(MixinProcessor.java:438) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:290) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) ~[modlauncher-10.0.9.jar:10.0.9+10.0.9+main.dcd20f30]     at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.10.jar:?]     at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]     at java.lang.Class.forName0(Native Method) ~[?:?]     at java.lang.Class.forName(Class.java:467) ~[?:?]     at dev.su5ed.sinytra.connector.service.ConnectorLoaderService$1.lambda$updateModuleReads$0(ConnectorLoaderService.java:60) ~[Connector-1.0.0-beta.36+1.20.1.jar%23444!/:1.0.0-beta.36+1.20.1]     at cpw.mods.modlauncher.api.LamdbaExceptionUtils.uncheck(LamdbaExceptionUtils.java:95) ~[modlauncher-10.0.9.jar%2390!/:10.0.9+10.0.9+main.dcd20f30]     at dev.su5ed.sinytra.connector.service.ConnectorLoaderService$1.updateModuleReads(ConnectorLoaderService.java:60) ~[Connector-1.0.0-beta.36+1.20.1.jar%23444!/:1.0.0-beta.36+1.20.1]     at net.minecraftforge.fml.loading.ImmediateWindowHandler.acceptGameLayer(ImmediateWindowHandler.java:71) ~[fmlloader-1.20.1-47.2.17.jar:1.0]     at net.minecraftforge.fml.loading.FMLLoader.beforeStart(FMLLoader.java:207) ~[fmlloader-1.20.1-47.2.17.jar:1.0]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.launchService(CommonLaunchHandler.java:92) ~[fmlloader-1.20.1-47.2.17.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:?] [21:04:39] [main/INFO]: Loading 2 mods:     - forge 47.2.17     - minecraft 1.20.1 [21:04:39] [main/ERROR]: Error loading companion plugin class [dev.lambdaurora.lambdynlights.LambDynLightsMixinPlugin] for mixin config [lambdynlights.mixins.json]. The plugin may be out of date: InvocationTargetException:null java.lang.reflect.InvocationTargetException: null     at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?]     at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?]     at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?]     at org.spongepowered.asm.mixin.transformer.PluginHandle.<init>(PluginHandle.java:97) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinConfig.onSelect(MixinConfig.java:708) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinProcessor.selectConfigs(MixinProcessor.java:498) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinProcessor.select(MixinProcessor.java:460) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinProcessor.checkSelect(MixinProcessor.java:438) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:290) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) ~[modlauncher-10.0.9.jar:10.0.9+10.0.9+main.dcd20f30]     at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.10.jar:?]     at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]     at java.lang.Class.forName0(Native Method) ~[?:?]     at java.lang.Class.forName(Class.java:467) ~[?:?]     at dev.su5ed.sinytra.connector.service.ConnectorLoaderService$1.lambda$updateModuleReads$0(ConnectorLoaderService.java:60) ~[Connector-1.0.0-beta.36+1.20.1.jar%23444!/:1.0.0-beta.36+1.20.1]     at cpw.mods.modlauncher.api.LamdbaExceptionUtils.uncheck(LamdbaExceptionUtils.java:95) ~[modlauncher-10.0.9.jar%2390!/:10.0.9+10.0.9+main.dcd20f30]     at dev.su5ed.sinytra.connector.service.ConnectorLoaderService$1.updateModuleReads(ConnectorLoaderService.java:60) ~[Connector-1.0.0-beta.36+1.20.1.jar%23444!/:1.0.0-beta.36+1.20.1]     at net.minecraftforge.fml.loading.ImmediateWindowHandler.acceptGameLayer(ImmediateWindowHandler.java:71) ~[fmlloader-1.20.1-47.2.17.jar:1.0]     at net.minecraftforge.fml.loading.FMLLoader.beforeStart(FMLLoader.java:207) ~[fmlloader-1.20.1-47.2.17.jar:1.0]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.launchService(CommonLaunchHandler.java:92) ~[fmlloader-1.20.1-47.2.17.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:?] Caused by: java.lang.NullPointerException: Cannot invoke "net.minecraftforge.fml.ModList.getModContainerById(String)" because the return value of "net.minecraftforge.fml.ModList.get()" is null     at dev.lambdaurora.lambdynlights.LambDynLightsCompat.isRubidium07XInstalled(LambDynLightsCompat.java:49) ~[Ryoamiclights-0.1.7+1.20.1.jar%23659!/:?]     at dev.lambdaurora.lambdynlights.LambDynLightsMixinPlugin.<init>(LambDynLightsMixinPlugin.java:36) ~[Ryoamiclights-0.1.7+1.20.1.jar%23659!/:?]     ... 40 more [21:04:39] [main/WARN]: Reference map 'cristellib-forge-refmap.json' for cristellib.mixins.json could not be read. If this is a development environment you can ignore this message [21:04:39] [main/WARN]: Reference map 'entity_model_features_forge_1.20.1-forge-refmap.json' for entity_model_features.mixins.json could not be read. If this is a development environment you can ignore this message [21:04:39] [main/WARN]: Reference map 'suppsquared-common-refmap.json' for suppsquared-common.mixins.json could not be read. If this is a development environment you can ignore this message [21:04:39] [main/WARN]: Reference map 'suppsquared-forge-refmap.json' for suppsquared.mixins.json could not be read. If this is a development environment you can ignore this message [21:04:39] [main/WARN]: Reference map 'coroutil.refmap.json' for coroutil.mixins.json could not be read. If this is a development environment you can ignore this message [21:04:39] [main/WARN]: Reference map 'PacketFixer-forge-forge-refmap.json' for packetfixer-forge.mixins.json could not be read. If this is a development environment you can ignore this message [21:04:41] [main/WARN]: Error loading class: mods/ltr/entities/LilTaterBlockEntity (java.lang.ClassNotFoundException: mods.ltr.entities.LilTaterBlockEntity) [21:04:41] [main/WARN]: Error loading class: mods/ltr/registry/LilTaterBlocks (java.lang.ClassNotFoundException: mods.ltr.registry.LilTaterBlocks) [21:04:41] [main/INFO]: Loaded config for: recipeessentials.json [21:04:41] [main/INFO]: Loaded config for: structureessentials.json [21:04:41] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/vertex/buffer/SodiumBufferBuilder (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.vertex.buffer.SodiumBufferBuilder) [21:04:41] [main/WARN]: Error loading class: noobanidus/mods/lootr/config/ConfigManager (java.lang.ClassNotFoundException: noobanidus.mods.lootr.config.ConfigManager) [21:04:41] [main/INFO]: [MemoryLeakFix] Will be applying 3 memory leak fixes! [21:04:41] [main/INFO]: [MemoryLeakFix] Currently enabled memory leak fixes: [targetEntityLeak, biomeTemperatureLeak, hugeScreenshotLeak] [21:04:41] [main/ERROR]: Error encountered during mixin config postInit step 'xenon.mixins.json' from mod '(unknown)': Cannot invoke "net.minecraftforge.fml.loading.moddiscovery.ModFileInfo.getFile()" because the return value of "net.minecraftforge.fml.loading.LoadingModList.getModFileById(String)" is null java.lang.NullPointerException: Cannot invoke "net.minecraftforge.fml.loading.moddiscovery.ModFileInfo.getFile()" because the return value of "net.minecraftforge.fml.loading.LoadingModList.getModFileById(String)" is null     at me.jellysquid.mods.sodium.mixin.SodiumMixinPlugin.getMixins(SodiumMixinPlugin.java:104) ~[xenon-1.20.1-0.3.1.jar%23720!/:?]     at org.spongepowered.asm.mixin.transformer.PluginHandle.getMixins(PluginHandle.java:128) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinConfig.postInitialise(MixinConfig.java:796) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinProcessor.prepareConfigs(MixinProcessor.java:568) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinProcessor.select(MixinProcessor.java:462) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinProcessor.checkSelect(MixinProcessor.java:438) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:290) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]     at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) ~[modlauncher-10.0.9.jar:10.0.9+10.0.9+main.dcd20f30]     at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.10.jar:?]     at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]     at java.lang.Class.forName0(Native Method) ~[?:?]     at java.lang.Class.forName(Class.java:467) ~[?:?]     at dev.su5ed.sinytra.connector.service.ConnectorLoaderService$1.lambda$updateModuleReads$0(ConnectorLoaderService.java:60) ~[Connector-1.0.0-beta.36+1.20.1.jar%23444!/:1.0.0-beta.36+1.20.1]     at cpw.mods.modlauncher.api.LamdbaExceptionUtils.uncheck(LamdbaExceptionUtils.java:95) ~[modlauncher-10.0.9.jar%2390!/:10.0.9+10.0.9+main.dcd20f30]     at dev.su5ed.sinytra.connector.service.ConnectorLoaderService$1.updateModuleReads(ConnectorLoaderService.java:60) ~[Connector-1.0.0-beta.36+1.20.1.jar%23444!/:1.0.0-beta.36+1.20.1]     at net.minecraftforge.fml.loading.ImmediateWindowHandler.acceptGameLayer(ImmediateWindowHandler.java:71) ~[fmlloader-1.20.1-47.2.17.jar:1.0]     at net.minecraftforge.fml.loading.FMLLoader.beforeStart(FMLLoader.java:207) ~[fmlloader-1.20.1-47.2.17.jar:1.0]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.launchService(CommonLaunchHandler.java:92) ~[fmlloader-1.20.1-47.2.17.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:?] [21:04:42] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.5). [21:04:42] [main/WARN]: Found problematic active MixinExtras instance at ca.fxco.memoryleakfix.mixinextras (version 0.2.0-beta.8) [21:04:42] [main/WARN]: Versions from 0.2.0-beta.1 to 0.2.0-beta.9 have limited support and it is strongly recommended to update. [21:04:42] [main/INFO]: Mixing client.MixinMinecraft from mixins/common/nochatreports.mixins.json into net.minecraft.client.Minecraft [21:04:42] [main/WARN]: Invalid registry value type detected for PerfOS counters. Should be REG_DWORD. Ignoring: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PerfOS\Performance\Disable Performance Counters. [21:04:42] [main/INFO]: Mixing client.MixinChatScreen from mixins/common/nochatreports.mixins.json into net.minecraft.client.gui.screens.ChatScreen [21:04:42] [main/INFO]: Renaming synthetic method lambda$onInit$4()Lnet/minecraft/network/chat/Component; to md128701$lambda$onInit$4$0 in mixins/common/nochatreports.mixins.json:client.MixinChatScreen from mod (unknown) [21:04:42] [main/INFO]: Renaming synthetic method lambda$onInit$3(Lnet/minecraft/client/gui/components/Button;)V to md128701$lambda$onInit$3$1 in mixins/common/nochatreports.mixins.json:client.MixinChatScreen from mod (unknown) [21:04:42] [main/INFO]: Renaming synthetic method lambda$onInit$2()Lnet/minecraft/network/chat/Component; to md128701$lambda$onInit$2$2 in mixins/common/nochatreports.mixins.json:client.MixinChatScreen from mod (unknown) [21:04:42] [main/INFO]: Renaming synthetic method lambda$onInit$1(Lnet/minecraft/client/gui/components/Button;)V to md128701$lambda$onInit$1$3 in mixins/common/nochatreports.mixins.json:client.MixinChatScreen from mod (unknown) [21:04:42] [main/INFO]: Renaming synthetic method lambda$onBeforeMessage$0(Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lcom/aizistral/nochatreports/common/encryption/Encryptor;)V to md128701$lambda$onBeforeMessage$0$4 in mixins/common/nochatreports.mixins.json:client.MixinChatScreen from mod (unknown) [21:04:42] [main/INFO]: Mixing client.MixinTitleScreen from mixins/common/nochatreports.mixins.json into net.minecraft.client.gui.screens.TitleScreen [21:04:43] [pool-4-thread-1/INFO]: Mixing common.MixinFriendlyByteBuf from mixins/common/nochatreports.mixins.json into net.minecraft.network.FriendlyByteBuf [21:04:43] [pool-4-thread-1/INFO]: Renaming synthetic method lambda$onWriteJsonWithCodec$1(Ljava/lang/Object;Ljava/lang/String;)Lio/netty/handler/codec/EncoderException; to md128701$lambda$onWriteJsonWithCodec$1$0 in mixins/common/nochatreports.mixins.json:common.MixinFriendlyByteBuf from mod (unknown) [21:04:43] [pool-4-thread-1/INFO]: Renaming synthetic method lambda$onReadJsonWithCodec$0(Ljava/lang/String;)Lio/netty/handler/codec/DecoderException; to md128701$lambda$onReadJsonWithCodec$0$1 in mixins/common/nochatreports.mixins.json:common.MixinFriendlyByteBuf from mod (unknown) [21:04:44] [pool-4-thread-1/INFO]: Loaded config for: biomemusic.json [21:04:46] [Datafixer Bootstrap/INFO]: Loaded config for: connectivity.json [21:04:46] [Datafixer Bootstrap/INFO]: 188 Datafixer optimizations took 140 milliseconds [21:04:47] [pool-4-thread-1/WARN]: @Inject(@At("INVOKE")) Shift.BY=2 on witherstormmod.mixins.json:MixinSwellGoal from mod (unknown)::handler$dkk000$canUseInvoke exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning.  
    • Make a test with another Launcher like MultiMC or AT Launcher
    • They were already updated, and just to double check I even did a cleanup and fresh update from that same page. I'm quite sure drivers are not the problem here. 
  • Topics

×
×
  • Create New...

Important Information

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