Jump to content

Recommended Posts

Posted

 

 

good days

i been working in an elevator

and it works, welll at least part of the time

 

 

 

the rets of time i get this stupid error when the entity begins to move

 

java.lang.NullPointerException: Unexpected error

at net.minecraft.crash.CrashReportCategory.firstTwoElementsOfStackTraceMatch(Unknown Source)

 

and crash the game

actually i think the trouble has to be whith the    writeEntityToNBT | readEntityFromNBT 

coz the last time i get the same trouble whith a custome zombie

but this time can not solved so could be any other thing

 

 


package mercenarymod.entidades;

import java.util.ArrayList;
import java.util.List;

import mercenarymod.Mercenary;
import mercenarymod.blocks.MercenaryModBlocks;
import mercenarymod.blocks.multitextura.ascensor.motorDelAscensor;
import mercenarymod.blocks.multitextura.puertas.ayudanteDePuertas;
import mercenarymod.blocks.multitextura.puertas.puerta3x3t08;
import mercenarymod.eventos.mensajeMercenarioalServidor;
import mercenarymod.utilidades.chat;
import mercenarymod.utilidades.util;
import net.minecraft.block.Block;
import net.minecraft.block.state.IBlockState;
import net.minecraft.enchantment.Enchantment;
import net.minecraft.enchantment.EnchantmentHelper;
import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Blocks;
import net.minecraft.init.Items;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.AxisAlignedBB;
import net.minecraft.util.BlockPos;
import net.minecraft.util.DamageSource;
import net.minecraft.util.MathHelper;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.Vec3;
import net.minecraft.world.World;

public class entidadAscensorMercenario extends Entity {

private int ticksExisted = 0;
private int accionTick = 0;

private EntityPlayer playerIn;

private boolean dontDie = false;

private BlockPos motor;
private BlockPos origen;
private BlockPos destino;
private BlockPos puerta;

private byte dx = 0;
private byte dy = 0;
private byte dz = 0;

private int motorX = 0;
private int motorY = 0;
private int motorZ = 0;

private int origenB = 0;

private short origenX = 0;
private short origenY = 0;
private short origenZ = 0;

private int destinoB = 0;

private short destinoX = 0;
private short destinoY = 0;
private short destinoZ = 0;

private byte canPisos = 0;
private byte pisoDestino = 0;
private byte alturaPisoDestino = 0;

private boolean dezplazarse = false;
private boolean existo = false;
private boolean matar = false;
private int matarEn = -1;

private boolean descender = false;

private byte radio = 1;

private float dezp = -0.10F;// -0.05F;

private ArrayList<IBlockState> estados = new ArrayList<IBlockState>();
private ArrayList<BlockPos> posiciones = new ArrayList<BlockPos>();

private ArrayList<Byte> px = new ArrayList<Byte>();
private ArrayList<Byte> py = new ArrayList<Byte>();
private ArrayList<Byte> pz = new ArrayList<Byte>();

private List lista = null;

private BlockPos puertas[] = new BlockPos[0];
private byte lados[] = new byte[0];
private byte pisos[] = new byte[0];

// #################################################################################################################
public entidadAscensorMercenario(World worldIn) {
	super(worldIn);
	this.setSize(3.0F, 1.0F);


}

// ####################################################################################3
public entidadAscensorMercenario(World worldIn, double x, double y, double z) {
	super(worldIn);
	this.setSize(1.0F, 1.0F);
	this.renderDistanceWeight = 10.0D;
	this.setPosition(x + 0.5D, y, z + 0.5D);


}

// ####################################################################################3
public entidadAscensorMercenario(World worldIn, BlockPos motor, EntityPlayer player) {
	super(worldIn);
	this.setSize(3.0F, 1.0F);
	this.renderDistanceWeight = 100.0D;

	this.setPlayer(player);
	this.setMotor(motor);


}
// #################################################################################################################

// #################################################################################################################
@Override
protected void entityInit() {
	this.dataWatcher.addObject(16, Byte.valueOf((byte) 0));

	this.dataWatcher.addObject(17, 0.0F); // this.posX
	this.dataWatcher.addObject(18, 0.0F); // this.posY
	this.dataWatcher.addObject(19, 0.0F); // this.posZ

	this.dataWatcher.addObject(20, 0); // this.motorX
	this.dataWatcher.addObject(21, 0); // this.motorY
	this.dataWatcher.addObject(22, 0); // this.motorZ

	// this.origen in byte x 0000 0000 00 byte y 0000 0000 00 byte z 0000
	// 0000 0
	this.dataWatcher.addObject(23, 0);
	// this.destino in byte x 0000 0000 00 byte y 0000 0000 00 byte z 0000
	// 0000 0 //511 max value
	this.dataWatcher.addObject(24, 0);

	this.dataWatcher.addObject(25, 0); // cantidad de pisos x 0000 0000 00
										// //piso destino x 0000 0000 00
										// this.andar | detenerse y todas
										// esa cosas 0000

}

// #################################################################################################################
public void escribirAlDatawacher() {

	// if (dezplazarse)
	{
		this.dataWatcher.updateObject(17, (float) this.posX); // this.posX
		this.dataWatcher.updateObject(18, (float) this.posY); // this.posY
		this.dataWatcher.updateObject(19, (float) this.posZ); // this.posZ
	}

	this.dataWatcher.updateObject(20, this.motorX); // this.motorX
	this.dataWatcher.updateObject(21, this.motorY); // this.motorY
	this.dataWatcher.updateObject(22, this.motorZ); // this.motorZ

	origenB = 0;
	origenB = (((origenX + 512) & 1023) << 20) + (((origenY + 512) & 1023) << 10) + ((origenZ + 512) & 1023);
	this.dataWatcher.updateObject(23, origenB);

	// System.out.println("@@@@@@@@ this.origenX ="+this.origenX);

	destinoB = 0;
	destinoB = (((destinoX + 512) & 1023) << 20) + (((destinoY + 512) & 1023) << 10) + ((destinoZ + 512) & 1023);
	this.dataWatcher.updateObject(24, destinoB);

	descender = (dezp < 0.0F ? true : false);
	float desp = (descender ? (dezp * -1) : (dezp));

	int v00 = 0;

	v00 += (this.dezplazarse ? 1 : 0); // 0
	v00 += (this.existo ? 2 : 0); // 00
	v00 += (this.matar ? 4 : 0); // 000
	v00 += (this.descender ? 8 : 0); // 0000

	v00 += ((canPisos & 63) << 4); // 000000 0000 //max 63
	v00 += ((pisoDestino & 63) << 10); // 000000 000000 0000
	v00 += ((radio & 15) << 16); // 0000 000000 000000 0000

	v00 += ((((int) (desp * 100)) & 1023) << 20); // 0000000000 000000 0000
													// 000000 000000 0000

	this.dataWatcher.updateObject(25, v00);

}

// #################################################################################################################
public void leerDelDatawacher() {
	// if (dezplazarse)
	{
		this.posX = this.dataWatcher.getWatchableObjectFloat(17); // this.posX
		this.posY = this.dataWatcher.getWatchableObjectFloat(18); // this.posY
		this.posZ = this.dataWatcher.getWatchableObjectFloat(19); // this.posZ
	}

	this.motorX = this.dataWatcher.getWatchableObjectInt(20); // this.motorX
	this.motorY = this.dataWatcher.getWatchableObjectInt(21); // this.motorY
	this.motorZ = this.dataWatcher.getWatchableObjectInt(22); // this.motorZ

	this.origenB = this.dataWatcher.getWatchableObjectInt(23); // this.origenB

	this.origenX = (byte) (((origenB >> 20) & 1023) - 512);
	this.origenY = (byte) (((origenB >> 10) & 1023) - 512);
	this.origenZ = (byte) (((origenB) & 1023) - 512);

	this.destinoB = this.dataWatcher.getWatchableObjectInt(24); // this.destinoB

	this.destinoX = (byte) (((destinoB >> 20) & 1023) - 512);
	this.destinoY = (byte) (((destinoB >> 10) & 1023) - 512);
	this.destinoZ = (byte) (((destinoB) & 1023) - 512);

	// System.out.println("@@@@@@@@ this.origenX ="+this.origenX);

	int v00 = this.dataWatcher.getWatchableObjectInt(25); // this.varuables
															// varias

	this.dezplazarse = ((v00 & 1) > 0 ? true : false);
	this.existo = (((v00 >> 1) & 1) > 0 ? true : false);
	this.matar = (((v00 >> 2) & 1) > 0 ? true : false);
	this.descender = (((v00 >> 3) & 1) > 0 ? true : false);

	this.canPisos = (byte) ((v00 >> 4) & 63);
	this.pisoDestino = (byte) ((v00 >> 10) & 63);
	this.radio = (byte) ((v00 >> 16) & 15);
	this.dezp = (float) (((v00 >> 20) & 1023) / 100.0F); // max 1023

	if (this.descender) {
		this.dezp *= (-1);
	}

}

// #################################################################################################################
@Override
/**
 * Called to update the entity's position/logic.
 */
public void onUpdate() {
	super.onUpdate();


                 //every 10 ticks read write the datawacher  to update variables from server to local entity
	// ### leer y escribir en el datawacher
	if ((accionTick % 10) == 0 | (accionTick < 10)) {
		if (this.worldObj.isRemote) {
			leerDelDatawacher();
		} else {
			escribirAlDatawacher();
		}

	}

	//search entityes to be afecte by elevator
	if (this.origen != null){
	detectarEntidades(this.worldObj, this.origen);
	}


                //Check if entity has been spawned in the local world for 12 ticks if not kill and abort everyting
	// ### existe en los dos mundos ?
	if (!existo) {

		if ((accionTick < 10)) {

			System.out.println("Mundo=" + this.worldObj.isRemote + " @@Matar= " + this.matar + " t=" + accionTick);

			if (this.worldObj.isRemote) {

				System.out.println("###Mensaje enviado al Servidor t=" + accionTick + "ID=" + this.getEntityId());

				String mensaje = "ASCEN_" + "97" + this.getEntityId();

				Mercenary.network.sendToServer(new mensajeMercenarioalServidor(mensaje));

			} else {

				System.out.println("### la entidad No ha Respondidio Aun" + accionTick);

			}
		}

	}

	// ############################3
                // kill the server side entity if the local world entity has not send the package to turn existo to true
	// matar la entidad del servidor si no existe en el mundo local
	if ((accionTick == 12) & (!this.worldObj.isRemote)) {

		if (!existo) {
			System.out.println("\n\n\n\n\n###No existe en el mundo local ");
			this.setMatar(true);
		} else {
			System.out.println("\n\n\n\n\n###Entidad Respondio desde el mundo local ");
		}
	}


	// ############################3
                // if values are no loaded kill and abort everyting
	// si las variables son nulas
	if (!this.worldObj.isRemote) {
		if ((accionTick < 12) & (this.motor == null)) {

			this.setOrigen(this.getPosition());
			this.crearAsensor(this.worldObj, origen);
			this.detectarEntidades(this.worldObj, origen);
			this.telePortarEntidades(this.worldObj, origen);
			this.setMatar(true);
			this.escribirAlDatawacher();

		}
	}

	// ############################3
	// desplazamiento del bloque ascensor
               // move the elevator origen block  
	if (dezplazarse & existo) {

		this.setPosition(this.posX, this.posY + dezp, this.posZ);

		if ((accionTick % 10) == 0) {
			if (descender) {
				this.origen = this.origen.down();
			} else {
				this.origen = this.origen.up();
			}

			this.setOrigen(this.origen); // actualizar la posicion de la
											// entidad

			if (!this.worldObj.isRemote) {
				this.eliminarAsensor(this.worldObj, this.origen);
			}

		}
	}

	// ############################3
                // check if origen block has reach destino blockPos
	// revizar cuando el ascensor llegue asu destino

	if (dezplazarse & existo) {

		if ((accionTick % 10) == 0) {

			//		detectarEntidades(this.worldObj, this.getPosition());
			//		moverEntidades(this.worldObj, this.getPosition());

			if (descender) {
				if ((this.origen.getY() + 2) <= this.destino.getY()) {

					this.setOrigen(this.destino.down(2));

					dezplazarse = false;

					if (!this.worldObj.isRemote) {
						this.crearAsensor(this.worldObj, this.destino.down(2));
						this.abrirPuertas(this.worldObj, this.destino.down(2));
						this.setMatar(true);
					}

					this.telePortarEntidades(this.worldObj, this.destino.down(2));

				}

			}

			if (!descender) {
				if ((this.origen.getY() + 2) >= this.destino.getY()) {

					this.setOrigen(this.destino.down(2));

					dezplazarse = false;

					if (!this.worldObj.isRemote) {
						this.crearAsensor(this.worldObj, this.destino.down(2));
						this.abrirPuertas(this.worldObj, this.destino.down(2));
						this.setMatar(true);
					}


					this.telePortarEntidades(this.worldObj, this.destino.down(2));

				}

			}
		}
	}

	// ############################3
	//


                // move the afected entityes 
	if (this.origen != null){
	moverEntidades(this.worldObj, this.origen);
	}


                //kill
	if (this.matar) {
		System.out.println("XXX Mundo=" + this.worldObj.isRemote + " Matar=" + accionTick);
		this.setDead();
	}

                //kill afther amount of ticks
	if (matarEn == accionTick) {
		System.out.println("XXX Mundo=" + this.worldObj.isRemote + " MatarEn=" + matarEn + " at=" + accionTick);
		this.setMatar(true);
	}

	accionTick++;
	ticksExisted++;



}

// #################################################################################################################
        //detect the entityes in elevator range
public void detectarEntidades(World worldIn, BlockPos centro) {

	int f = 2;

	BlockPos posMin = centro.add(-f, -3, -f);
	BlockPos posMax = centro.add(f, 6, f);

	double centroY = centro.getY();

	AxisAlignedBB boundingBox = new AxisAlignedBB(posMin, posMax);
	lista = worldIn.getEntitiesWithinAABB(Entity.class, boundingBox);

	int llist = lista.size();

}

// #################################################################################################################
        //detect blocks in elevator range
void leerBlockes(World worldIn, BlockPos centro) {

	BlockPos dpos = centro;

	int x = 0;// centro.getX();
	int y = 0;// centro.getY();
	int z = 0;// centro.getZ();

	int dxmin = x - radio, dxmax = x + radio;
	int dymin = y - 0, dymax = y + 4;
	int dzmin = z - radio, dzmax = z + radio;

	int count = 0;

	for (int dxi = dxmin; dxi <= dxmax; dxi++) {
		for (int dyi = dymin; dyi <= dymax; dyi++) {
			for (int dzi = dzmin; dzi <= dzmax; dzi++) {

				dpos = centro.add(dxi, dyi, dzi);

				posiciones.add(dpos);
				px.add((byte) dxi);
				py.add((byte) dyi);
				pz.add((byte) dzi);

				estados.add(worldIn.getBlockState(dpos));
				worldIn.setBlockToAir(dpos);

			}
		}
	}

}

// #################################################################################################################
        // set detected blocks in new position
void crearBlockes(World worldIn, BlockPos centro) {

	// IBlockState aire = Blocks.air.getDefaultState();

	// util.cuadradoRellenoDosPuntos(worldIn, null, centro.add(-1, -3, -1),
	// centro.add(1, 3, 1), aire);

	for (int dbi = 0; dbi < posiciones.size(); dbi++) {
		worldIn.setBlockState(centro.add(px.get(dbi), py.get(dbi), pz.get(dbi)), estados.get(dbi));
	}

	for (int dbi = 0; dbi < posiciones.size(); dbi++) {
		worldIn.setBlockState(centro.add(px.get(dbi), py.get(dbi), pz.get(dbi)), estados.get(dbi));
	}

}

// #################################################################################################################
void moverEntidades(World worldIn, BlockPos centro) {

	double centroY = centro.getY();

	int mobId = 0;
	int ascensorID = this.getEntityId();
	float dezpD = 0.0F;

	if (this.dezplazarse) {
		dezpD = dezp;
	}

	System.out.println("======>  moverEntidades(" + worldIn.isRemote + ", " + centro + " dezpD=" + dezpD + ")");

	for (int l = 0; l < lista.size(); l++) {

		Entity mob = (Entity) lista.get(l);

		if (mob != null) {

			double ascPosY = this.posY;

			double mobPosX = 0.0D;
			double mobPosY = 0.0D;
			double mobPosZ = 0.0D;

			mobId = mob.getEntityId();
			if (mobId != ascensorID) {

				mob.onGround = true;
				mob.motionY = dezpD;// 0.05F;
				mob.fallDistance = 0.0F;

				mobPosX = mob.posX;
				mobPosY = mob.posY;
				mobPosZ = mob.posZ;

				if (((mobPosY) > (ascPosY - 1)) & ((mobPosY) < (ascPosY + 4))) {
					mob.setPosition(mobPosX, ascPosY + 1.2D, mobPosZ);
				}

				if ((mobPosY) > (centroY + 4)) {
					mob.setPosition(mobPosX, ascPosY + 5.2D, mobPosZ);
				}

			}
		}
	}
}

// #################################################################################################################
void telePortarEntidades(World worldIn, BlockPos centro) {

	System.out.println("))))))   telePortarEntidades(" + worldIn.isRemote + ", " + centro + ")");

	double centroY = centro.getY();

	double mobPosX = 0.0D;
	double mobPosY = 0.0D;
	double mobPosZ = 0.0D;
	int mobId = 0;
	int ascensorID = this.getEntityId();

	for (int l = 0; l < lista.size(); l++) {
		Entity mob = (Entity) lista.get(l);

		if (mob != null) {
			mobId = mob.getEntityId();
			if (mobId != ascensorID) {
				mobPosX = mob.posX;
				mobPosY = mob.posY;
				mobPosZ = mob.posZ;

				mob.motionY = 0.0F;
				mob.fallDistance = 0.0F;

				if (((mobPosY) > (centroY - 1)) & ((mobPosY) < (centroY + 4))) {
					mob.setPosition(mobPosX, centroY + 1.2D, mobPosZ);
				}

				if ((mobPosY) > (centroY + 4)) {
					mob.setPosition(mobPosX, centroY + 5.2D, mobPosZ);
				}

			}
		}
	}
}

// #########################################################################3
public BlockPos buscarAscensor(World worldIn, BlockPos pos) {

	System.out.println("buscarAscensor(" + worldIn.isRemote + ", " + pos + ")");

	BlockPos ascensor = null;
	BlockPos dpos = pos;

	for (int as = 0; as < 255; as++) {

		dpos = dpos.add(0, -1, 0);

		if (ayudanteDePuertas.isAscensorBlock(worldIn, dpos)) {
			return dpos;
		}

		if (ayudanteDePuertas.isAscensorLimiteBlock(worldIn, dpos)) {
			as = 256;
		}

		if (dpos.getY() < 2) {
			as = 256;
		}

	}

	crearAsensor(worldIn, pos.down(5));

	ascensor = pos.down(5);

	return ascensor;
}

// #########################################################################3
public ArrayList<BlockPos> buscarPuertas(World worldIn, BlockPos motorPos) {
	ArrayList<BlockPos> puertas = new ArrayList<BlockPos>();
	ArrayList<Byte> lados = new ArrayList<Byte>();
	ArrayList<Byte> pisos = new ArrayList<Byte>();

	BlockPos dpos = motorPos;

	for (int as = 0; as < 250; as++) {
		dpos = dpos.add(0, -1, 0);
		boolean puerta = false;

		byte lado = 0; // binario para tambier guardar el lado de la puerta

		if (ayudanteDePuertas.esUnaPuerta(worldIn, dpos.north(2))) {
			puerta = true;
			lado += 1;
			// puertas.add(dpos.north(2));
		}

		if (ayudanteDePuertas.esUnaPuerta(worldIn, dpos.south(2))) {
			puerta = true;
			lado += 2;
			// puertas.add(dpos.south(2));
		}

		if (ayudanteDePuertas.esUnaPuerta(worldIn, dpos.east(2))) {
			puerta = true;
			lado += 4;
			// puertas.add(dpos.east(2));
		}

		if (ayudanteDePuertas.esUnaPuerta(worldIn, dpos.west(2))) {
			puerta = true;
			lado += 8;
			// puertas.add(dpos.west(2));
		}

		if (puerta) {
			puertas.add(dpos);
			lados.add(lado);
			pisos.add((byte) dpos.getY());
		}

		if (ayudanteDePuertas.isAscensorLimiteBlock(worldIn, dpos)) {
			as = 256;
		}

	}

	this.puertas = new BlockPos[puertas.size()];

	for (byte l = 0; l < puertas.size(); l++) {
		this.puertas[l] = puertas.get(l);
	}

	this.lados = new byte[lados.size()];

	for (byte l = 0; l < lados.size(); l++) {
		this.lados[l] = lados.get(l);
	}

	this.pisos = new byte[pisos.size()];

	for (byte l = 0; l < pisos.size(); l++) {
		this.pisos[l] = pisos.get(l);
	}

	this.canPisos = (byte) pisos.size();

	return puertas;
}

// #########################################################################3
public static BlockPos buscarPuertasEnArea3x3x3(World worldIn, BlockPos centro) {

	int radio = 1;

	int x = 0;// centro.getX();
	int y = 0;// centro.getY();
	int z = 0;// centro.getZ();

	int dxmin = x - radio, dxmax = x + radio;
	int dymin = y - radio, dymax = y + radio;
	int dzmin = z - radio, dzmax = z + radio;

	BlockPos dpos;

	for (int dxi = dxmin; dxi <= dxmax; dxi++) {
		for (int dyi = dymin; dyi <= dymax; dyi++) {
			for (int dzi = dzmin; dzi <= dzmax; dzi++) {

				dpos = centro.add(dxi, dyi, dzi);

				if (ayudanteDePuertas.esUnaPuerta(worldIn, dpos)) {
					return dpos;
				}
			}
		}
	}

	return null;

}

// #########################################################################3
public void abrirPuertas(World worldIn, BlockPos centro) {

	System.out.println("abrirPuertas(" + worldIn.isRemote + ", " + centro + ")");
	// this.abrirPuertas(this.worldObj, origen);

	BlockPos dpos = centro.up(2);

	BlockPos dpuertas[] = new BlockPos[4];

	dpuertas[0] = dpos.north(2);
	dpuertas[1] = dpos.south(2);
	dpuertas[2] = dpos.west(2);
	dpuertas[3] = dpos.east(2);

	System.out.println("abrirPuertas(00)");

	for (byte p = 0; p < 4; p++) {

		IBlockState puertaSt = this.worldObj.getBlockState(dpuertas[p]);
		Block puertaBlk = puertaSt.getBlock();

		if (puertaBlk instanceof puerta3x3t08) {

			System.out.println("abrirPuertas(01)" + p);

			puerta3x3t08 puertaAscensor = (puerta3x3t08) puertaBlk;

			System.out.println("abrirPuertas(02)");

			puertaAscensor.toggleDoor(this.worldObj, puerta, false); // abrir

		}

	}

}

// #########################################################################3
public byte enquePisoEstoy(BlockPos puerta) {
	byte p = -1;
	int lp = pisos.length;

	byte altura = (byte) puerta.getY();

	if (lp < 1) {
		this.buscarPuertas(this.worldObj, this.getMotor());
	}

	lp = pisos.length;

	if (lp > 0) {

		for (byte l = 0; l < lp; l++) {
			if (altura == pisos[l]) {
				return (byte) (l + 1);
			}
		}
	}

	return p;
}

// #########################################################################3
public static void crearAsensor(World worldIn, BlockPos pos) {

	System.out.println("crearAsensor(" + worldIn.isRemote + ", " + pos + ")");

	IBlockState base = MercenaryModBlocks.baseDelAsensor.getDefaultState();
	IBlockState techo = Blocks.iron_trapdoor.getDefaultState();// MercenaryModBlocks.cuarzoBlanco.getDefaultState();

	worldIn.setBlockState(pos.up(4).north(), base);
	worldIn.setBlockState(pos.up(4).east(), base);
	worldIn.setBlockState(pos.up(4).west(), base);
	worldIn.setBlockState(pos.up(4).north().east(), base);
	worldIn.setBlockState(pos.up(4).north().west(), base);

	worldIn.setBlockState(pos.up(4).south(), base);
	worldIn.setBlockState(pos.up(4).south().east(), base);
	worldIn.setBlockState(pos.up(4).south().west(), base);
	worldIn.setBlockState(pos.up(4), techo);

	worldIn.setBlockState(pos.north(), base);
	worldIn.setBlockState(pos.east(), base);
	worldIn.setBlockState(pos.west(), base);
	worldIn.setBlockState(pos.north().east(), base);
	worldIn.setBlockState(pos.north().west(), base);

	worldIn.setBlockState(pos.south(), base);
	worldIn.setBlockState(pos.south().east(), base);
	worldIn.setBlockState(pos.south().west(), base); // .down(5)

	worldIn.setBlockState(pos, base);
}

// #########################################################################3
public static void eliminarAsensor(World worldIn, BlockPos pos) {
	IBlockState base = Blocks.air.getDefaultState();
	IBlockState techo = Blocks.air.getDefaultState();

	worldIn.setBlockState(pos.up(4), techo);
	worldIn.setBlockState(pos.up(4).north(), base);
	worldIn.setBlockState(pos.up(4).east(), base);
	worldIn.setBlockState(pos.up(4).west(), base);
	worldIn.setBlockState(pos.up(4).north().east(), base);
	worldIn.setBlockState(pos.up(4).north().west(), base);

	worldIn.setBlockState(pos.up(4).south(), base);
	worldIn.setBlockState(pos.up(4).south().east(), base);
	worldIn.setBlockState(pos.up(4).south().west(), base);

	worldIn.setBlockState(pos, base);

	worldIn.setBlockState(pos.north(), base);
	worldIn.setBlockState(pos.east(), base);
	worldIn.setBlockState(pos.west(), base);
	worldIn.setBlockState(pos.north().east(), base);
	worldIn.setBlockState(pos.north().west(), base);

	worldIn.setBlockState(pos.south(), base);
	worldIn.setBlockState(pos.south().east(), base);
	worldIn.setBlockState(pos.south().west(), base); // .down(5)
}

// #########################################################################3

// #################################################################################################################
@Override
public float getEyeHeight() {
	return 1.74F;
}

// #########
public void setPlayer(EntityPlayer player) {
	this.playerIn = player;
}

public EntityPlayer getPlayer() {
	return this.playerIn;
}

// #########
public BlockPos getMotor() {
	return this.motor;
}

public boolean setMotor(BlockPos M00) {
	this.motor = M00;

	System.out.println("setMotor(" + M00 + ")" + "Mundo=" + this.worldObj.isRemote);

	if (ayudanteDePuertas.esMotordeAscensor(this.worldObj, M00)) {

		this.motorX = motor.getX();
		this.motorY = motor.getY();
		this.motorZ = motor.getZ();

		System.out.println("es un Motor");

		if (!this.worldObj.isBlockPowered(M00)) {

			System.out.println("el Motor no tinen energia");

			if (playerIn != null) {

				System.out.println("el player no es nulo");
				chat.chatr(playerIn, "There is no power");
				chat.chatr(playerIn, "El asensor no tiene Energia");
			}

		} else {

			System.out.println("El motor si tiene energia");
			this.setOrigen(this.buscarAscensor(this.worldObj, M00));
			this.buscarPuertas(this.worldObj, M00);

		}

		return true;
	}

	return false;
}

// #########

// #########
public BlockPos getOrigen() {
	return origen;
}

public void setOrigen(BlockPos p) {
	this.origen = p;

	this.origenX = (short) (this.origen.getX() - this.motorX);
	this.origenY = (short) (this.origen.getY() - this.motorY);
	this.origenZ = (short) (this.origen.getZ() - this.motorZ);

	this.setPosition(this.origen.getX() + 0.5D, this.origen.getY(), this.origen.getZ() + 0.5D);

	if (!this.worldObj.isRemote) {
		escribirAlDatawacher();
	}

}

// #########
public BlockPos getDestino() {
	return destino;
}

public void setDestino(BlockPos d) {
	destino = d;

	System.out.println("))))) setDestino(" + d + ")");

	this.destinoX = (short) (this.destino.getX() - this.motorX);
	this.destinoY = (short) (this.destino.getY() - this.motorY);
	this.destinoZ = (short) (this.destino.getZ() - this.motorZ);
}

// #########
public BlockPos getPuerta() {
	return puerta;
}

public void setPuerta(BlockPos d) {
	this.puerta = d;
}

// #########
public byte getCanPisos() {
	return this.canPisos;
}

public void setCanPisos(byte b) {
	this.canPisos = b;
}

// #########
public byte getPisoDestino() {
	return this.pisoDestino;
}

public void setPisoDestino(byte b) {
	if (canPisos > 0)

	{

		if (b < 1) {
			b = 1;
		}

		if (b > this.canPisos) {
			b = (byte) (this.canPisos);
		}

		b -= 1;

		byte alturaDelPiso = this.pisos[b];
		byte alturaDelAscensor = (byte) (this.origen.getY() + 2);

		this.pisoDestino = (byte) (b + 1);
		this.setPuerta(this.puertas[b]);

		this.descender = (alturaDelPiso <= alturaDelAscensor ? true : false);

		if (this.descender) {
			if (dezp > 0.0F) {
				dezp *= -1;
			}
		}

		if (!this.descender) {
			if (dezp < 0.0F) {
				dezp *= -1;
			}
		}

		BlockPos dpos = new BlockPos(this.getMotor().getX(), alturaDelPiso, this.getMotor().getZ());

		this.setDestino(dpos);

	} else {
		this.pisoDestino = 0;
	}

	if (!this.worldObj.isRemote) {
		escribirAlDatawacher();
	}

}

// #########
public byte getAlturaPisoDestino() {
	return this.alturaPisoDestino;
}

public void setAlturaPisoDestino(byte b) {
	this.alturaPisoDestino = b;
}

// #########
public byte getRadio() {
	return this.radio;
}

public void setRadio(byte b) {
	this.radio = b;
}

// #########
public boolean getDezplazarse() {
	return this.dezplazarse;
}

public void setDezplazarse(boolean b) {
	this.dezplazarse = b;

	if (!this.worldObj.isRemote) {
		escribirAlDatawacher();
	}

}

// #########
public boolean getExisto() {
	return this.existo;
}

public void setExisto(boolean b) {
	this.existo = b;
}

// #########
public boolean getMatar() {
	return this.matar;
}

public void setMatar(boolean m) {
	this.matar = m;
}

public void setMatar(int m) {
	this.matarEn = m;
}

// #########
public float getDezp() {
	return this.dezp;
}

public void setDezp(float f) {
	this.dezp = f;
}


public int getFacing() {
	// TODO Auto-generated method stub
	return 0;
}

public int getTipo() {
	// TODO Auto-generated method stub
	return 0;
}

public int getTicksInGround() {
	// TODO Auto-generated method stub
	return 100;
}

public void setStapp(boolean b) {
	this.matar = b;

}




/**
 * (abstract) Protected helper method to write subclass entity data to NBT.
 */
public void writeEntityToNBT(NBTTagCompound tagCompound) {

}

// #########################################################################################################################3
/**
 * (abstract) Protected helper method to read subclass entity data from NBT.
 */
public void readEntityFromNBT(NBTTagCompound tagCompund) {

}



// #################################################################################################################
}


 

 

 

 

 

ERROR

 

[Console output redirected to file:/home/usuario/eclipseOutput.txt]
Picked up _JAVA_OPTIONS: -Xmx2g
Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release
[20:29:17] [main/INFO] [GradleStart]: Extra: []
[20:29:17] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, /home/usuario/.gradle/caches/minecraft/assets, --assetIndex, 1.8, --accessToken{REDACTED}, --version, 1.8, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker]
[20:29:17] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[20:29:17] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[20:29:17] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[20:29:17] [main/INFO] [FML]: Forge Mod Loader version 11.14.3.1520 for Minecraft 1.8 loading
[20:29:17] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_65, running on Linux:amd64:3.16.0-4-amd64, installed at /opt/jdk1.8.0_65/jre
[20:29:17] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[20:29:17] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[20:29:17] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[20:29:17] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[20:29:17] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[20:29:17] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[20:29:18] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[20:29:18] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[20:29:18] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[20:29:18] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[20:29:19] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[20:29:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[20:29:19] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[20:29:20] [Client thread/INFO]: Setting user: Player113
[20:29:24] [Client thread/INFO]: LWJGL Version: 2.9.1
[20:29:25] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:-1]: ---- Minecraft Crash Report ----
// I'm sorry, Dave.

Time: 28/02/16 08:29 PM
Description: Loading screen debug info

This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- System Details --
Details:
Minecraft Version: 1.8
Operating System: Linux (amd64) version 3.16.0-4-amd64
Java Version: 1.8.0_65, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 871571728 bytes (831 MB) / 1056309248 bytes (1007 MB) up to 2130051072 bytes (2031 MB)
JVM Flags: 4 total; -Xincgc -Xmx1024M -Xms1024M -Xmx2g
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: 
Loaded coremods (and transformers): 
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.4.0 NVIDIA 340.93' Renderer: 'GeForce GT 520/PCIe/SSE2'
[20:29:25] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
[20:29:25] [Client thread/INFO] [FML]: MinecraftForge v11.14.3.1520 Initialized
[20:29:25] [Client thread/INFO] [FML]: Replaced 204 ore recipies
[20:29:26] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
[20:29:26] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[20:29:26] [Client thread/INFO] [FML]: Searching /home/usuario/Modding/forge-1.8-1520-modmercenario/run/mods for mods
[20:29:26] [Client thread/INFO] [modmercenario]: Mod modmercenario is missing the required element 'name'. Substituting modmercenario
[20:29:30] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
[20:29:30] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, modmercenario] at CLIENT
[20:29:30] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, modmercenario] at SERVER
[20:29:31] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:modmercenario
[20:29:31] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
[20:29:31] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations
[20:29:31] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
[20:29:31] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
[20:29:31] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[20:29:33] [Client thread/INFO] [FML]: Applying holder lookups
[20:29:33] [Client thread/INFO] [FML]: Holder lookups applied
[20:29:33] [Client thread/INFO] [FML]: Injecting itemstacks
[20:29:33] [Client thread/INFO] [FML]: Itemstack injection complete
[20:29:33] [Client thread/INFO] [sTDOUT]: [tv.twitch.StandardCoreAPI:<init>:16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's.
[20:29:33] [Client thread/ERROR]: Couldn't initialize twitch stream
[20:29:34] [sound Library Loader/INFO]: Starting up SoundSystem...
[20:29:34] [Thread-8/INFO]: Initializing LWJGL OpenAL
[20:29:34] [Thread-8/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[20:29:34] [Thread-8/INFO]: OpenAL initialized.
[20:29:34] [sound Library Loader/INFO]: Sound engine started
[20:29:36] [Client thread/WARN] [FML]: Unable to load block model: 'modmercenario:block/callBlock00' for variant: 'modmercenario:callBlock#level=0,powered=false': java.io.FileNotFoundException: modmercenario:models/block/callBlock00.json
[20:29:36] [Client thread/WARN] [FML]: Unable to load block model: 'modmercenario:block/callBlock00' for variant: 'modmercenario:callBlock#level=0,powered=true': java.lang.IllegalStateException: circular model dependencies involving model modmercenario:block/callBlock00
[20:29:36] [Client thread/INFO] [FML]: Max texture size: 16384
[20:29:37] [Client thread/INFO]: Created: 16x16 textures-atlas
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaFM92_9mm#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:copiarExtructura#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistola1911colt_Dummy#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:revolverMagnum_Dummy#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#normal not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:lanzagranadas79M_Dummy#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:verticalTrapdoorM00#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusilMP5T5_9mm#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin01#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t01#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:aireSolido01#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t06#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistola1911colt_45acp#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:radioMercenario00#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:arcoMercenarioDeMadera_Dummy#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limpiarCirculo#normal not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:esmeraldaMediana#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:vallestaMercenaria_Dummy#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:aireNoSolido00#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:esmeraldaGrande#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:callBlock#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:escopetaSPAS12_Dummy#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabRobleOscuro00#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:arcoMercenario_Dummy#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#powered=false not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaDesertEagle_45acp#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t02#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin00_blocke#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t03#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:revolverMagnum_45acp#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pantalonDeMercader00#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:vallestaMercenariaDeMadera_Dummy#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t07#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabAbedul00#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limpiarCirculo#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:copiarExtructura#normal not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocom_Dummy#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabAcacia00#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusil57ar_5728#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabRoble00#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabPicea00#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocomS#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#powered=true not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack00#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabJungla00#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaFM93R_9mm#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaMauserC92#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusilAresFMG_Dummy#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaDesertEagle_Dummy#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t04#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaMauserC92_Dummy#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusil90PNF_5728#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t08#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoCarcaj#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaRedClub_Dummy#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:taladroPerforador#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack01#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:aireSolido00#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:esmeraldaGrandeBlocke#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:bandanaRoja#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocom#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t00#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin01_blocke#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:baseDelAsensor#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin00#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t05#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:c4#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puertaMercenaria3x3#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t09#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:escopetaWinchester1200_Dummy#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:idDeBlockes#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack02#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistola57NF_5728#inventory not found
[20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocomS_Dummy#inventory not found
[20:29:38] [Client thread/INFO] [FML]: Injecting itemstacks
[20:29:38] [Client thread/INFO] [FML]: Itemstack injection complete
[20:29:39] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
[20:29:39] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:modmercenario
[20:29:39] [Client thread/INFO]: SoundSystem shutting down...
[20:29:39] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
[20:29:39] [sound Library Loader/INFO]: Starting up SoundSystem...
[20:29:39] [Thread-10/INFO]: Initializing LWJGL OpenAL
[20:29:39] [Thread-10/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[20:29:39] [Thread-10/INFO]: OpenAL initialized.
[20:29:40] [sound Library Loader/INFO]: Sound engine started
[20:29:41] [Client thread/WARN] [FML]: Unable to load block model: 'modmercenario:block/callBlock00' for variant: 'modmercenario:callBlock#level=0,powered=false': java.io.FileNotFoundException: modmercenario:models/block/callBlock00.json
[20:29:41] [Client thread/WARN] [FML]: Unable to load block model: 'modmercenario:block/callBlock00' for variant: 'modmercenario:callBlock#level=0,powered=true': java.lang.IllegalStateException: circular model dependencies involving model modmercenario:block/callBlock00
[20:29:41] [Client thread/INFO] [FML]: Max texture size: 16384
[20:29:43] [Client thread/WARN]: Texture modmercenario:textures/blocks/ascensor/ascensorbase.png with size 24x24 limits mip level from 4 to 3
[20:29:46] [Client thread/INFO]: Created: 4096x4096 textures-atlas
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:copiarExtructura#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistola1911colt_Dummy#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:revolverMagnum_Dummy#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#normal not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:fusil200akg/fusilM4A1G_CC_LA01#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:lanzagranadas79M_Dummy#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:verticalTrapdoorM00#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin01#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t01#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:aireSolido01#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t06#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:fusil200akg/fusilM4A1G_CL_LA00#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:radioMercenario00#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:arcoMercenarioDeMadera_Dummy#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limpiarCirculo#normal not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:esmeraldaMediana#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:vallestaMercenaria_Dummy#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:aireNoSolido00#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:esmeraldaGrande#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:fusil200akg/fusilM4A1G_CC_LA00#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:callBlock#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:escopetaSPAS12_Dummy#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabRobleOscuro00#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:arcoMercenario_Dummy#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#powered=false not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:extructuras/pegarExtructura#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t02#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:armaduras/pantalonDeMercader00#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin00_blocke#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t03#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:fusil200akg/fusilM4A1G_CL_LA01#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pantalonDeMercader00#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:vallestaMercenariaDeMadera_Dummy#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t07#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabAbedul00#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limpiarCirculo#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:copiarExtructura#normal not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocom_Dummy#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabAcacia00#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabRoble00#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabPicea00#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocomS#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#powered=true not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack00#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabJungla00#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusilAresFMG_Dummy#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaDesertEagle_Dummy#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t04#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaMauserC92_Dummy#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t08#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoCarcaj#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaRedClub_Dummy#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:fusil200akg/fusilM4A1G_CL_LA02#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:itemblockes/girable#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:extructuras/copiarExtructura#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack01#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:aireSolido00#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:esmeraldaGrandeBlocke#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:bandanaRoja#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:fusil200akg/fusilM4A1G_CC_LA02#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t00#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin01_blocke#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:baseDelAsensor#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin00#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t05#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:c4#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t09#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:escopetaWinchester1200_Dummy#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:idDeBlockes#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack02#inventory not found
[20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocomS_Dummy#inventory not found
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]:   DOMAIN modmercenario
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: --------------------------------------------------
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]:   domain modmercenario is missing 6 textures
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]:     domain modmercenario has 1 location:
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]:       mod modmercenario resources at /home/usuario/Modding/forge-1.8-1520-modmercenario/bin
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]:     The missing resources for domain modmercenario are:
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/puertas/spruce_Borde00.png
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/puertas/spruce_Doble00.png
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/explosivos/perforacionConExplosivo.png
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/charcoal.png
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/armasdefuego/COLT1911/fire_layer_1.png
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/armasdefuego/cargador76239/cargador76239_CG.png
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain modmercenario
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[20:29:55] [server thread/INFO]: Starting integrated minecraft server version 1.8
[20:29:55] [server thread/INFO]: Generating keypair
[20:29:55] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance
[20:29:55] [server thread/INFO] [FML]: Applying holder lookups
[20:29:55] [server thread/INFO] [FML]: Holder lookups applied
[20:29:55] [server thread/INFO] [FML]: Loading dimension 0 (Copy of New World) (net.minecraft.server.integrated.IntegratedServer@242b7e00)
[20:29:55] [server thread/INFO] [FML]: Loading dimension 1 (Copy of New World) (net.minecraft.server.integrated.IntegratedServer@242b7e00)
[20:29:56] [server thread/INFO] [FML]: Loading dimension -1 (Copy of New World) (net.minecraft.server.integrated.IntegratedServer@242b7e00)
[20:29:56] [server thread/INFO]: Preparing start region for level 0
[20:29:57] [server thread/INFO]: Preparing spawn area: 13%
[20:29:58] [server thread/INFO]: Preparing spawn area: 57%
[20:30:00] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:286]: Mundo=false @@Matar= false t=0
[20:30:00] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:298]: ### la entidad No ha Respondidio Aun0
[20:30:00] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:crearAsensor:808]: crearAsensor(false, BlockPos{x=-5, y=80, z=99})
[20:30:00] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:telePortarEntidades:568]: ))))))   telePortarEntidades(false, BlockPos{x=-5, y=80, z=99})
[20:30:00] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-5, y=80, z=99} dezpD=0.0)
[20:30:00] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:426]: XXX Mundo=false Matar=0
[20:30:00] [server thread/INFO]: Changing view distance to 2, from 10
[20:30:02] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2
[20:30:02] [Netty Server IO #1/INFO] [FML]: Client protocol version 2
[20:30:02] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]
[20:30:02] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established
[20:30:02] [server thread/INFO] [FML]: [server thread] Server side modded connection established
[20:30:02] [server thread/INFO]: Player113[local:E:2fc9ff97] logged in with entity id 585 at (-5.001053786649635, 80.99999999701977, 99.72515080212197)
[20:30:02] [server thread/INFO]: Player113 joined the game
[20:30:02] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:281]: 









[20:30:02] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:282]: dif=NORMAL
[20:30:02] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:281]: 









[20:30:02] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:282]: dif=NORMAL
[20:30:04] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 4571ms behind, skipping 91 tick(s)
[20:30:09] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:setMotor:891]: setMotor(BlockPos{x=-5, y=86, z=99})Mundo=false
[20:30:09] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:setMotor:899]: es un Motor
[20:30:09] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:setMotor:914]: El motor si tiene energia
[20:30:09] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:buscarAscensor:607]: buscarAscensor(false, BlockPos{x=-5, y=86, z=99})
[20:30:09] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:286]: Mundo=true @@Matar= false t=0
[20:30:09] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:290]: ###Mensaje enviado al Servidor t=0ID=823
[20:30:09] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:515]: ###Mensaje recivido en el Servidor ASCEN_97823 PD=97 ID=823
[20:30:09] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:529]:  es instancia de entidadAscensorMercenario
[20:30:09] [Client thread/INFO] [sTDOUT]: [mercenarymod.gui.guis.guiMenuMercenario05:<init>:58]: 




pisosN2
[20:30:09] [Client thread/INFO] [sTDOUT]: [mercenarymod.gui.guis.guiMenuMercenario05:<init>:59]: 
ascensorID823
[20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:286]: Mundo=true @@Matar= false t=1
[20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:290]: ###Mensaje enviado al Servidor t=1ID=823
[20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:286]: Mundo=true @@Matar= false t=2
[20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:290]: ###Mensaje enviado al Servidor t=2ID=823
[20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:515]: ###Mensaje recivido en el Servidor ASCEN_97823 PD=97 ID=823
[20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:529]:  es instancia de entidadAscensorMercenario
[20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:515]: ###Mensaje recivido en el Servidor ASCEN_97823 PD=97 ID=823
[20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:529]:  es instancia de entidadAscensorMercenario
[20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:286]: Mundo=true @@Matar= false t=3
[20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:290]: ###Mensaje enviado al Servidor t=3ID=823
[20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:515]: ###Mensaje recivido en el Servidor ASCEN_97823 PD=97 ID=823
[20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:529]:  es instancia de entidadAscensorMercenario
[20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:286]: Mundo=true @@Matar= false t=4
[20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:290]: ###Mensaje enviado al Servidor t=4ID=823
[20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:515]: ###Mensaje recivido en el Servidor ASCEN_97823 PD=97 ID=823
[20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:529]:  es instancia de entidadAscensorMercenario
[20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:286]: Mundo=true @@Matar= false t=5
[20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:290]: ###Mensaje enviado al Servidor t=5ID=823
[20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:515]: ###Mensaje recivido en el Servidor ASCEN_97823 PD=97 ID=823
[20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:529]:  es instancia de entidadAscensorMercenario
[20:30:10] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=0.0)
[20:30:10] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=0.0)
[20:30:10] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=0.0)
[20:30:10] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=0.0)
[20:30:10] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=0.0)
[20:30:10] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=0.0)
[20:30:10] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=0.0)
[20:30:10] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=0.0)
[20:30:10] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=0.0)
[20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:515]: ###Mensaje recivido en el Servidor ASCEN_02823 PD=2 ID=823
[20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:529]:  es instancia de entidadAscensorMercenario
[20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:setDestino:956]: ))))) setDestino(BlockPos{x=-5, y=75, z=99})
[20:30:11] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=-0.1)
[20:30:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-5, y=80, z=99} dezpD=-0.1)
[20:30:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-5, y=80, z=99} dezpD=-0.1)
[20:30:14] [server thread/INFO]: Stopping server
[20:30:14] [server thread/INFO]: Saving players
[20:30:14] [server thread/INFO]: Saving worlds
[20:30:14] [server thread/INFO]: Saving chunks for level 'Copy of New World'/Overworld
[20:30:15] [server thread/INFO]: Saving chunks for level 'Copy of New World'/Nether
[20:30:15] [server thread/INFO]: Saving chunks for level 'Copy of New World'/The End
[20:30:16] [server thread/INFO] [FML]: Unloading dimension 0
[20:30:16] [server thread/INFO] [FML]: Unloading dimension -1
[20:30:16] [server thread/INFO] [FML]: Unloading dimension 1
[20:30:16] [server thread/INFO] [FML]: Applying holder lookups
[20:30:16] [server thread/INFO] [FML]: Holder lookups applied
[20:30:17] [Client thread/FATAL]: Unreported exception thrown!
java.lang.NullPointerException
at net.minecraft.crash.CrashReportCategory.firstTwoElementsOfStackTraceMatch(Unknown Source) ~[CrashReportCategory.class:?]
at net.minecraft.crash.CrashReport.makeCategoryDepth(Unknown Source) ~[CrashReport.class:?]
at net.minecraft.crash.CrashReport.makeCategory(Unknown Source) ~[CrashReport.class:?]
at net.minecraft.world.World.updateEntities(Unknown Source) ~[World.class:?]
at net.minecraft.client.Minecraft.runTick(Unknown Source) ~[Minecraft.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Unknown Source) ~[Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Unknown Source) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Unknown Source) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_65]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_65]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_65]
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_65]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_65]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_65]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_65]
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_65]
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
at GradleStart.main(Unknown Source) [start/:?]
[20:30:17] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:-1]: ---- Minecraft Crash Report ----
// Oh - I know what I did wrong!

Time: 28/02/16 08:30 PM
Description: Unexpected error

java.lang.NullPointerException: Unexpected error
at net.minecraft.crash.CrashReportCategory.firstTwoElementsOfStackTraceMatch(Unknown Source)
at net.minecraft.crash.CrashReport.makeCategoryDepth(Unknown Source)
at net.minecraft.crash.CrashReport.makeCategory(Unknown Source)
at net.minecraft.world.World.updateEntities(Unknown Source)
at net.minecraft.client.Minecraft.runTick(Unknown Source)
at net.minecraft.client.Minecraft.runGameLoop(Unknown Source)
at net.minecraft.client.Minecraft.run(Unknown Source)
at net.minecraft.client.main.Main.main(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
at GradleStart.main(Unknown Source)


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- Head --
Stacktrace:
at net.minecraft.crash.CrashReportCategory.firstTwoElementsOfStackTraceMatch(Unknown Source)
at net.minecraft.crash.CrashReport.makeCategoryDepth(Unknown Source)
at net.minecraft.crash.CrashReport.makeCategory(Unknown Source)
at net.minecraft.world.World.updateEntities(Unknown Source)

-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityPlayerSP['Player113'/585, l='MpServer', x=-5,00, y=73,00, z=99,73]]
Chunk stats: MultiplayerChunkCache: 25, 25
Level seed: 0
Level generator: ID 00 - default, ver 1. Features enabled: false
Level generator options: 
Level spawn location: -124,00,64,00,-56,00 - World: (-124,64,-56), Chunk: (at 4,4,8 in -8,-4; contains blocks -128,0,-64 to -113,255,-49), Region: (-1,-1; contains chunks -32,-32 to -1,-1, blocks -512,0,-512 to -1,255,-1)
Level time: 22524 game time, 41283 day time
Level dimension: 0
Level storage version: 0x00000 - Unknown?
Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
Forced entities: 60 total; [aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/392, l='MpServer', x=0,28, y=75,00, z=87,69], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/394, l='MpServer', x=-1,50, y=76,00, z=87,69], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/396, l='MpServer', x=-12,81, y=85,00, z=99,28], aldeanaMercenaria['entity.modmercenario.aldeanaMercenaria.name'/397, l='MpServer', x=-10,56, y=85,00, z=99,91], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/398, l='MpServer', x=-6,47, y=85,00, z=126,28], aldeanoMercenario['entity.modmercenario.aldeanoMercenario.name'/399, l='MpServer', x=-3,47, y=86,00, z=124,81], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/400, l='MpServer', x=-1,69, y=85,00, z=128,47], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/402, l='MpServer', x=-4,66, y=88,00, z=125,47], zombieMercenario['entity.modmercenario.zombieMercenario.name'/404, l='MpServer', x=-1,59, y=35,00, z=141,78], zombieMercenario['entity.modmercenario.zombieMercenario.name'/405, l='MpServer', x=-2,44, y=31,56, z=144,56], zombieMercenario['entity.modmercenario.zombieMercenario.name'/406, l='MpServer', x=-8,50, y=38,00, z=132,50], zombieMercenario['entity.modmercenario.zombieMercenario.name'/407, l='MpServer', x=-11,63, y=34,00, z=130,69], zombiaMercenaria['entity.modmercenario.zombiaMercenaria.name'/408, l='MpServer', x=-10,31, y=35,00, z=131,69], zombieMercenario['entity.modmercenario.zombieMercenario.name'/409, l='MpServer', x=-11,19, y=34,00, z=131,13], zombiaMercenaria['entity.modmercenario.zombiaMercenaria.name'/410, l='MpServer', x=-15,16, y=38,00, z=131,75], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/411, l='MpServer', x=1,28, y=82,00, z=126,50], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/428, l='MpServer', x=7,31, y=75,00, z=89,69], EntityItem['item.tile.ironTrapdoor'/430, l='MpServer', x=3,41, y=78,00, z=93,22], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/431, l='MpServer', x=6,31, y=75,00, z=88,25], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/432, l='MpServer', x=6,63, y=75,00, z=89,34], EntityBat['Bat'/561, l='MpServer', x=14,01, y=10,28, z=143,95], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/434, l='MpServer', x=8,06, y=75,00, z=89,69], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/435, l='MpServer', x=15,69, y=74,00, z=110,50], aldeanoMercenario['entity.modmercenario.aldeanoMercenario.name'/436, l='MpServer', x=2,06, y=79,00, z=102,42], fantasmaMercenario['entity.modmercenario.fantasmaMercenario.name'/820, l='MpServer', x=27,03, y=74,00, z=129,30], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/437, l='MpServer', x=8,28, y=75,00, z=94,69], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/438, l='MpServer', x=15,34, y=73,97, z=110,50], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/439, l='MpServer', x=9,13, y=76,00, z=94,69], entidadAscensorMercenario['entity.modmercenario.entidadAscensorMercenario.name'/823, l='MpServer', x=-4,50, y=80,90, z=99,50], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/440, l='MpServer', x=14,63, y=77,00, z=111,50], fantasmaMercenario['entity.modmercenario.fantasmaMercenario.name'/568, l='MpServer', x=23,30, y=67,00, z=102,70], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/441, l='MpServer', x=5,44, y=79,00, z=99,69], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/442, l='MpServer', x=6,41, y=70,55, z=94,28], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/443, l='MpServer', x=2,86, y=79,00, z=102,69], aldeanoMercenario['entity.modmercenario.aldeanoMercenario.name'/444, l='MpServer', x=4,41, y=79,00, z=103,97], aldeanoMercenario['entity.modmercenario.aldeanoMercenario.name'/445, l='MpServer', x=8,60, y=76,97, z=94,55], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/446, l='MpServer', x=8,28, y=75,43, z=94,69], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/447, l='MpServer', x=6,69, y=79,00, z=101,19], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/448, l='MpServer', x=7,38, y=78,02, z=95,19], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/450, l='MpServer', x=9,76, y=76,14, z=108,36], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/451, l='MpServer', x=13,44, y=76,02, z=113,19], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/452, l='MpServer', x=5,75, y=76,00, z=113,53], aldeanoMercenario['entity.modmercenario.aldeanoMercenario.name'/453, l='MpServer', x=11,03, y=76,00, z=107,41], aldeanoMercenario['entity.modmercenario.aldeanoMercenario.name'/454, l='MpServer', x=3,47, y=76,00, z=116,47], aldeanaMercenaria['entity.modmercenario.aldeanaMercenaria.name'/455, l='MpServer', x=14,63, y=77,00, z=112,50], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/456, l='MpServer', x=5,78, y=81,00, z=124,47], zombieMercenario['entity.modmercenario.zombieMercenario.name'/457, l='MpServer', x=7,50, y=32,00, z=141,50], EntityBat['Bat'/463, l='MpServer', x=27,22, y=29,28, z=80,04], zombieMercenario['entity.modmercenario.zombieMercenario.name'/464, l='MpServer', x=22,50, y=38,00, z=91,50], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/465, l='MpServer', x=22,28, y=72,75, z=109,47], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/466, l='MpServer', x=15,13, y=74,00, z=108,59], zombieMercenario['entity.modmercenario.zombieMercenario.name'/467, l='MpServer', x=23,28, y=67,00, z=102,69], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/469, l='MpServer', x=26,28, y=68,00, z=113,06], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/470, l='MpServer', x=21,25, y=74,16, z=109,50], EntityZombie['Zombie'/734, l='MpServer', x=-52,47, y=41,00, z=155,09], zombieMercenarioE['entity.modmercenario.zombieMercenarioE.name'/754, l='MpServer', x=26,97, y=72,00, z=129,25], zombieMercenario['entity.modmercenario.zombieMercenario.name'/371, l='MpServer', x=-18,66, y=13,00, z=143,84], EntityMinecartChest['container.minecart'/372, l='MpServer', x=-20,50, y=13,00, z=143,72], EntityZombie['Zombie'/757, l='MpServer', x=31,41, y=72,00, z=133,09], EntityPlayerSP['Player113'/585, l='MpServer', x=-5,00, y=73,00, z=99,73]]
Retry entities: 0 total; []
Server brand: fml,forge
Server type: Integrated singleplayer server
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(Unknown Source)
at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Unknown Source)
at net.minecraft.client.Minecraft.run(Unknown Source)
at net.minecraft.client.main.Main.main(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
at GradleStart.main(Unknown Source)

-- System Details --
Details:
Minecraft Version: 1.8
Operating System: Linux (amd64) version 3.16.0-4-amd64
Java Version: 1.8.0_65, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 405520400 bytes (386 MB) / 1056309248 bytes (1007 MB) up to 2130051072 bytes (2031 MB)
JVM Flags: 4 total; -Xincgc -Xmx1024M -Xms1024M -Xmx2g
IntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 95
FML: MCP v9.10 FML v8.0.99.99 Minecraft Forge 11.14.3.1520 4 mods loaded, 4 mods active
States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
UCHIJAAAA	mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) 
UCHIJAAAA	FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.8-11.14.3.1520.jar) 
UCHIJAAAA	Forge{11.14.3.1520} [Minecraft Forge] (forgeSrc-1.8-11.14.3.1520.jar) 
UCHIJAAAA	modmercenario{1.8} [modmercenario] (bin) 
Loaded coremods (and transformers): 
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.4.0 NVIDIA 340.93' Renderer: 'GeForce GT 520/PCIe/SSE2'
Launched Version: 1.8
LWJGL: 2.9.1
OpenGL: GeForce GT 520/PCIe/SSE2 GL version 4.4.0 NVIDIA 340.93, NVIDIA Corporation
GL Caps: Using GL 1.3 multitexturing.
Using GL 1.3 texture combiners.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Shaders are available because OpenGL 2.1 is supported.
VBOs are available because OpenGL 1.5 is supported.

Using VBOs: No
Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Resource Packs: []
Current Language: English (US)
Profiler Position: N/A (disabled)
[20:30:17] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:-1]: #@!@# Game crashed! Crash report saved to: #@!@# /home/usuario/Modding/forge-1.8-1520-modmercenario/run/./crash-reports/crash-2016-02-28_20.30.17-client.txt
AL lib: (EE) alc_cleanup: 1 device not closed

 

 

 

Thanks for reading

 

 

 

 

 

 

 

Posted
java.lang.NullPointerException: Unexpected error

  at net.minecraft.crash.CrashReportCategory.firstTwoElementsOfStackTraceMatch(Unknown Source)

 

This exception is caused by ForgeGradle not rebuilding Minecraft with debug information (see this issue). There is another exception being thrown that's the initial cause of the crash, but the missing debug information causes the crash report system to crash the game (hiding the initial cause).

 

Make sure you're running either ForgeGradle 2.0.2 or the latest 2.0 snapshot (2532819 at the time of this post), delete the ~/.gradle/caches/minecraft/net/minecraftforge/forge/<forge_version> directory (replace ~ with %USERPROFILE on Windows) and then re-run

gradlew setupDecompWorkspace

. This should rebuild Minecraft with debug information, revealing the initial cause of the crash.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

good days

 

 

aparently i have

 

#################################################

        ForgeGradle 2.0-SNAPSHOT       

  https://github.com/MinecraftForge/ForgeGradle 

#################################################

 

i delete the .gradlew folder and do he graddle thing

but there is no change the levator still comitting the same crash whith the same java.lang.NullPointerException: Unexpected error

this is whith forge forge-1.8-11.14.3.1520-mdk

 

i wanna try whith forge-1.8-11.14.4.1577-mdk

but for some reason before i du the

./gradlew setupDecompWorkspace --refresh-dependencies

./gradlew eclipse

 

end whith an empty eclipse folder soo eclipse don't works whith 1577,    trying to solve and issue i end stuck whith another

someone have some idea how to solve this 1577 forge issue

 

thanks for reading

 

Posted

"ForgeGradle 2.0-SNAPSHOT" without a number after it means you're either running an old snapshot or one of the stable versions. In your build.gradle script, have you got a

buildscript

block followed by

apply plugin: 'net.minecraftforge.gradle.forge'

(the snapshot) or have you got a

plugins

block (the stable version)? Most recent versions of the MDK have both of these, with one commented out.

 

If you're not sure, upload your build.gradle script to Gist and link it here. Make sure you keep the .gradle extension so it has syntax highlighting.

 

The eclipse folder isn't generated by Gradle, it's only included in the MDK download. I don't use Eclipse myself, but from what I understand you can create a workspace yourself and import the project generated by the

eclipse

Gradle task. The eclipse folder shouldn't be required.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

You're using 2.0.2 stable, which includes the fix. Once you've set up the ForgeGradle workspace and imported the project into your Eclipse workspace, the crash in the OP should no longer happen.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

jum

 

well i got something new

iwas working in the  forge-1.8-11.14.3.1520-mdk that uses

id "net.minecraftforge.gradle.forge" version "2.0.1"

 

the build gradle i post was from the forge-1.8-11.14.4.1577-mdk has

id "net.minecraftforge.gradle.forge" version "2.0.2"

this is the one im trying to get to work

 

then the at net.minecraft.crash.CrashReportCategory.firstTwoElementsOfStackTraceMatch(Unknown Source)

  Error come from and issue in graddle 2.0.1

 

but now i can see  the error

and just remeber why i hate so much the  forge-1.8-11.14.4.1577-mdk and throw it away and keep developing in 1520

the mod, the same code thah runs so nice in 1520 becomes terribly heavy and laggy in 1577 for no aparent reason and the forge-1.8.8-11.15.0.1655-mdk version is little bether whith mi mod 

 

soo could be a way to force 1520 to work whith graddle 2.0.2 ??

 

[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabRoble00: 239 (init) -> 239 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:charcoal: 232 (init) -> 232 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoRandom: 198 (init) -> 198 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:aireSolido00: 225 (init) -> 225 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:aireSolido01: 226 (init) -> 226 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabJungla00: 242 (init) -> 242 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoZombye: 199 (init) -> 199 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabPicea00: 243 (init) -> 243 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaAzul_blocke: 248 (init) -> 248 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaRoja_blocke: 250 (init) -> 250 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:esmeraldaGrandeBlocke: 234 (init) -> 234 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cuarzoNegro: 236 (init) -> 236 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoAldeano00: 204 (init) -> 204 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoAldeano01: 205 (init) -> 205 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabRobleOscuro00: 244 (init) -> 244 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:copiarExtructura: 245 (init) -> 245 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoZombye00: 202 (init) -> 202 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoZombye01: 203 (init) -> 203 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cuarzoBlancoColumna: 237 (init) -> 237 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabAbedul00: 240 (init) -> 240 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:maletin00_blocke: 211 (init) -> 211 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:callBlock: 228 (init) -> 228 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabAcacia00: 241 (init) -> 241 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaVerde_blocke: 249 (init) -> 249 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:verticalTrapdoorM00: 224 (init) -> 224 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoReja01: 201 (init) -> 201 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoNinoRata01: 207 (init) -> 207 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoNinoRata00: 206 (init) -> 206 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_piedra: 4508 (init) -> 4508 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_hierro: 4345 (init) -> 4345 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:papa: 4278 (init) -> 4278 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_nokia: 4321 (init) -> 4321 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_hierro: 4357 (init) -> 4357 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_hierro: 4382 (init) -> 4382 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:redstonemercenaria: 4141 (init) -> 4141 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:reja00: 208 (init) -> 208 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilM4A1_Dummy: 4225 (init) -> 4225 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:reja01: 209 (init) -> 209 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:granadaMercenaria_Obsidiana: 4277 (init) -> 4277 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_diamante: 4369 (init) -> 4369 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoBackpack02: 4127 (init) -> 4127 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_piedra: 4420 (init) -> 4420 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaSocom: 4210 (init) -> 4210 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_acero: 4422 (init) -> 4422 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:botasDeCarbono: 4116 (init) -> 4116 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoBackpack00: 4125 (init) -> 4125 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoBackpack01: 4126 (init) -> 4126 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:subfusilAresFMG_blocke: 210 (init) -> 210 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:vallestaMercenariaDeMadera_Dummy: 4181 (init) -> 4181 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilMarkLancer: 4251 (init) -> 4251 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_nokia: 4347 (init) -> 4347 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_piedra: 4453 (init) -> 4453 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pantalonDeCarbono: 4115 (init) -> 4115 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_piedra: 4409 (init) -> 4409 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_oro: 4386 (init) -> 4386 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:vallestaMercenaria: 4178 (init) -> 4178 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaAmarilla_blocke: 247 (init) -> 247 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_redstone: 4377 (init) -> 4377 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cartucho12G_venomous: 4264 (init) -> 4264 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala45acp_standar: 4265 (init) -> 4265 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_nokia: 4310 (init) -> 4310 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoDeAcero: 4118 (init) -> 4118 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_piedra: 4475 (init) -> 4475 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_obsidiana: 4429 (init) -> 4429 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_hierro: 4492 (init) -> 4492 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_hierro: 4319 (init) -> 4319 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_acero: 4455 (init) -> 4455 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_madera: 4438 (init) -> 4438 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espadaB_madera_diamante: 4366 (init) -> 4366 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaMauserC92_Dummy: 4195 (init) -> 4195 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala55645mm_Obsidiana: 4271 (init) -> 4271 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_acero: 4353 (init) -> 4353 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cargador5728: 4203 (init) -> 4203 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_obsidiana: 4418 (init) -> 4418 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_carbono: 4379 (init) -> 4379 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilSCARH: 4240 (init) -> 4240 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_acero: 4378 (init) -> 4378 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaRedClub_Dummy: 4215 (init) -> 4215 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_esmeralda: 4392 (init) -> 4392 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_acero: 4293 (init) -> 4293 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoZombye00: 202 (init) -> 202 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoZombye01: 203 (init) -> 203 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaDesertEagle_Dummy: 4207 (init) -> 4207 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabAbedul00: 240 (init) -> 240 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_piedra: 4302 (init) -> 4302 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_oro: 4474 (init) -> 4474 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:verticalTrapdoorM00: 224 (init) -> 224 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:subfusilAresFMG: 4188 (init) -> 4188 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_diamante: 4402 (init) -> 4402 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_madera: 4372 (init) -> 4372 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoNinoRata01: 207 (init) -> 207 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cascoDeAcero: 4117 (init) -> 4117 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoNinoRata00: 206 (init) -> 206 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_hierro: 4514 (init) -> 4514 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_carbono: 4294 (init) -> 4294 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaVerdePlanta: 4104 (init) -> 4104 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonMaderaMediano: 4157 (init) -> 4157 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_carbono: 4368 (init) -> 4368 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_esmeralda: 4458 (init) -> 4458 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cuarzoBlanco: 235 (init) -> 235 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonHierroMediano: 4154 (init) -> 4154 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cargador55645: 4246 (init) -> 4246 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_carbono: 4401 (init) -> 4401 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaSocomS: 4212 (init) -> 4212 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:subfusil90PNF_5728: 4197 (init) -> 4197 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_carbono: 4489 (init) -> 4489 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cargador45acp: 4216 (init) -> 4216 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:granadaMercenaria_Redstone: 4276 (init) -> 4276 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_diamante: 4355 (init) -> 4355 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaFM93R_9mm: 4187 (init) -> 4187 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_esmeralda: 4344 (init) -> 4344 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil47AK_Dummy: 4237 (init) -> 4237 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:barrilExplosivo: 213 (init) -> 213 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_redstone: 4410 (init) -> 4410 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_acero: 4488 (init) -> 4488 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_nokia: 4332 (init) -> 4332 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:maletin01_blocke: 212 (init) -> 212 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_oro: 4419 (init) -> 4419 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espadaB_carbono_diamante: 4365 (init) -> 4365 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilSCARHB: 4241 (init) -> 4241 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistola1911colt_45acp: 4204 (init) -> 4204 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaRojaSemilla: 4105 (init) -> 4105 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_esmeralda: 4329 (init) -> 4329 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilSCARHG: 4242 (init) -> 4242 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_carbono: 4467 (init) -> 4467 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_obsidiana: 4484 (init) -> 4484 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_carbono: 4412 (init) -> 4412 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_nokia: 4483 (init) -> 4483 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil200AKG: 4230 (init) -> 4230 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_oro: 4349 (init) -> 4349 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_nokia: 4494 (init) -> 4494 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_oro: 4518 (init) -> 4518 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:taladroPerforador: 4283 (init) -> 4283 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_acero: 4510 (init) -> 4510 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierroalrojo: 4133 (init) -> 4133 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilMark2Lancer_Dummy01: 4250 (init) -> 4250 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_obsidiana: 4360 (init) -> 4360 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala55645mm_Redstone: 4270 (init) -> 4270 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_redstone: 4314 (init) -> 4314 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_carbono: 4316 (init) -> 4316 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonHierroCorto: 4152 (init) -> 4152 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_piedra: 4464 (init) -> 4464 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:coalcompreso: 4134 (init) -> 4134 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:granadaMercenaria_Standar: 4275 (init) -> 4275 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:tijeraslargasMercenarias: 4281 (init) -> 4281 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_nokia: 4395 (init) -> 4395 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala5728mm_standar: 4259 (init) -> 4259 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_madera: 4460 (init) -> 4460 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_nokia: 4516 (init) -> 4516 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pantalonDeMercader00: 4128 (init) -> 4128 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_acero: 4400 (init) -> 4400 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_acero: 4477 (init) -> 4477 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_esmeralda: 4403 (init) -> 4403 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:revolverMagnum_45acp: 4208 (init) -> 4208 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_diamante: 4343 (init) -> 4343 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_redstone: 4336 (init) -> 4336 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_redstone: 4363 (init) -> 4363 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil200AKB: 4229 (init) -> 4229 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala76239mm_Redstone: 4273 (init) -> 4273 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:yuca_blocke: 251 (init) -> 251 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:flechaMercenariaObsidiana: 4184 (init) -> 4184 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilM4A1G_Dummy: 4227 (init) -> 4227 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_oro: 4312 (init) -> 4312 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilMarkLancer_Dummy01: 4253 (init) -> 4253 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_oro: 4375 (init) -> 4375 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_esmeralda: 4414 (init) -> 4414 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:barradehierro: 4131 (init) -> 4131 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil47AKB_Dummy: 4238 (init) -> 4238 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:radioMercenario00: 4285 (init) -> 4285 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cuchilloTactico: 4340 (init) -> 4340 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:aireNoSolido00: 227 (init) -> 227 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_madera: 4427 (init) -> 4427 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_hierro: 4470 (init) -> 4470 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_redstone: 4498 (init) -> 4498 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_esmeralda: 4318 (init) -> 4318 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:extintorMercenario: 4280 (init) -> 4280 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_piedra: 4486 (init) -> 4486 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_madera: 4405 (init) -> 4405 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:escopetaSPAS12: 4218 (init) -> 4218 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_carbono: 4500 (init) -> 4500 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_redstone: 4303 (init) -> 4303 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_diamante: 4468 (init) -> 4468 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:mangoCarbono: 4163 (init) -> 4163 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_carbono: 4423 (init) -> 4423 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:botasDeLana: 4109 (init) -> 4109 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pantalonDeLanaNegra: 4113 (init) -> 4113 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:yuca: 4096 (init) -> 4096 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:charcoal: 232 (init) -> 232 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:esmeraldaMediana: 4144 (init) -> 4144 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_hierro: 4415 (init) -> 4415 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_diamante: 4328 (init) -> 4328 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:aireSolido00: 225 (init) -> 225 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:aireSolido01: 226 (init) -> 226 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cargador76239: 4247 (init) -> 4247 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espadaB_hierro_diamante: 4364 (init) -> 4364 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_esmeralda: 4296 (init) -> 4296 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala5728mm_redstone: 4260 (init) -> 4260 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_acero: 4466 (init) -> 4466 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabPicea00: 243 (init) -> 243 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:subfusilAresFMG_Dummy: 4194 (init) -> 4194 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:esmeraldaGrandeBlocke: 234 (init) -> 234 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_obsidiana: 4385 (init) -> 4385 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_acero: 4499 (init) -> 4499 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:arcoMercenario: 4174 (init) -> 4174 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_carbono: 4354 (init) -> 4354 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_carbono: 4478 (init) -> 4478 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaRojaPlanta: 4106 (init) -> 4106 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_nokia: 4359 (init) -> 4359 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:mangoMadera: 4165 (init) -> 4165 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:arcoMercenarioDeMadera: 4176 (init) -> 4176 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaVerde_blocke: 249 (init) -> 249 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil47AK: 4234 (init) -> 4234 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierba: 4098 (init) -> 4098 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilM4A1B_Dummy: 4226 (init) -> 4226 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_piedra: 4335 (init) -> 4335 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaFM92_9mm: 4186 (init) -> 4186 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_oro: 4408 (init) -> 4408 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_diamante: 4490 (init) -> 4490 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_madera: 4504 (init) -> 4504 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_piedra: 4442 (init) -> 4442 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaAzulSemilla: 4101 (init) -> 4101 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:vallestaMercenaria_Dummy: 4179 (init) -> 4179 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaDesertEagle_45acp: 4206 (init) -> 4206 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_madera: 4298 (init) -> 4298 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_obsidiana: 4396 (init) -> 4396 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_piedra: 4313 (init) -> 4313 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil47AKB: 4235 (init) -> 4235 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:lanzagranadas79M: 4254 (init) -> 4254 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonMaderaCorto: 4155 (init) -> 4155 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil200AKG_Dummy: 4233 (init) -> 4233 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_obsidiana: 4407 (init) -> 4407 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:redstoneCompresa: 4136 (init) -> 4136 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_nokia: 4472 (init) -> 4472 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:FN40GL: 4171 (init) -> 4171 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_oro: 4441 (init) -> 4441 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t08: 222 (init) -> 222 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t09: 223 (init) -> 223 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaAmarillaPlanta: 4100 (init) -> 4100 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t04: 218 (init) -> 218 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t05: 219 (init) -> 219 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:taladroMercenario: 4282 (init) -> 4282 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t06: 220 (init) -> 220 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t07: 221 (init) -> 221 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t00: 214 (init) -> 214 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t01: 215 (init) -> 215 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t02: 216 (init) -> 216 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t03: 217 (init) -> 217 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:prueba: 4289 (init) -> 4289 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:lanzagranadas79M_Dummy: 4255 (init) -> 4255 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_madera: 4331 (init) -> 4331 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala76239mm_Obsidiana: 4274 (init) -> 4274 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonHierroLargo: 4153 (init) -> 4153 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:escopetaSPAS12_Dummy: 4219 (init) -> 4219 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_obsidiana: 4300 (init) -> 4300 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_esmeralda: 4356 (init) -> 4356 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoPuerta: 200 (init) -> 200 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:limpiarCirculo: 246 (init) -> 246 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_madera: 4309 (init) -> 4309 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_diamante: 4457 (init) -> 4457 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabRoble00: 239 (init) -> 239 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:charcoalcompreso: 4135 (init) -> 4135 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilSCARH_Dummy: 4243 (init) -> 4243 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaFM93R_Dummy: 4192 (init) -> 4192 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:revolverMagnum_Dummy: 4209 (init) -> 4209 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:flechaMercenariaRedstone: 4183 (init) -> 4183 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_nokia: 4373 (init) -> 4373 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaAmarillaSemilla: 4099 (init) -> 4099 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:flechaMercenariaExplosiva: 4185 (init) -> 4185 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_esmeralda: 4307 (init) -> 4307 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_obsidiana: 4322 (init) -> 4322 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puertaMercenaria3x3: 4521 (init) -> 4521 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_redstone: 4465 (init) -> 4465 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoTacticoS: 4121 (init) -> 4121 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoTacticoG: 4122 (init) -> 4122 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaAzul_blocke: 248 (init) -> 248 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_hierro: 4448 (init) -> 4448 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_piedra: 4431 (init) -> 4431 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_redstone: 4476 (init) -> 4476 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_carbono: 4342 (init) -> 4342 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:papa_cocida: 4279 (init) -> 4279 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espadaB_acero_diamante: 4352 (init) -> 4352 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala9mm_redstone: 4257 (init) -> 4257 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabAcacia00: 241 (init) -> 241 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistola57NF_Dummy: 4201 (init) -> 4201 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:camael: 4337 (init) -> 4337 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:culataCarbon: 4159 (init) -> 4159 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_acero: 4367 (init) -> 4367 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil47AKG: 4236 (init) -> 4236 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_obsidiana: 4333 (init) -> 4333 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cuerdamercenaria: 4143 (init) -> 4143 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_hierro: 4393 (init) -> 4393 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_obsidiana: 4495 (init) -> 4495 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:flechaMercenariaAcero: 4182 (init) -> 4182 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_madera: 4493 (init) -> 4493 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:acero: 233 (init) -> 233 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:limiteDelAsensor: 231 (init) -> 231 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_madera: 4515 (init) -> 4515 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:arcoMercenarioDeMadera_Dummy: 4177 (init) -> 4177 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilSCARHG_Dummy: 4245 (init) -> 4245 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonCarbonCorto: 4149 (init) -> 4149 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:barradeacero: 4130 (init) -> 4130 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_esmeralda: 4381 (init) -> 4381 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil200AK_Dummy: 4231 (init) -> 4231 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilSCARHB_Dummy: 4244 (init) -> 4244 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:arcoMercenario_Dummy: 4175 (init) -> 4175 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_madera: 4482 (init) -> 4482 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:barrelAssemblyHierro: 4167 (init) -> 4167 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_oro: 4323 (init) -> 4323 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_diamante: 4380 (init) -> 4380 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:subfusilMP5T5_9mm: 4189 (init) -> 4189 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:barrelAssembly: 4166 (init) -> 4166 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_madera: 4358 (init) -> 4358 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonAceroLargo: 4147 (init) -> 4147 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:inertebarradecarbon: 4132 (init) -> 4132 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoRandom: 198 (init) -> 198 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_carbono: 4434 (init) -> 4434 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilMarkLancer_Dummy: 4252 (init) -> 4252 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil200AKB_Dummy: 4232 (init) -> 4232 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_diamante: 4424 (init) -> 4424 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_redstone: 4399 (init) -> 4399 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:culataHierro: 4161 (init) -> 4161 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_esmeralda: 4436 (init) -> 4436 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonCarbonLargo: 4150 (init) -> 4150 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_hierro: 4371 (init) -> 4371 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:sierraMercenaria: 4284 (init) -> 4284 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:copiarExtructura: 245 (init) -> 245 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_nokia: 4461 (init) -> 4461 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_obsidiana: 4311 (init) -> 4311 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cuarzoBlancoColumna: 237 (init) -> 237 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_esmeralda: 4502 (init) -> 4502 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:maletin00_blocke: 211 (init) -> 211 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_obsidiana: 4517 (init) -> 4517 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_obsidiana: 4462 (init) -> 4462 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_piedra: 4324 (init) -> 4324 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:obsidianamercenaria: 4138 (init) -> 4138 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_carbono: 4327 (init) -> 4327 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:yuca_cocida: 4097 (init) -> 4097 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_madera: 4320 (init) -> 4320 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_oro: 4361 (init) -> 4361 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_hierro: 4437 (init) -> 4437 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_nokia: 4406 (init) -> 4406 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilM4A1G: 4224 (init) -> 4224 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_nokia: 4439 (init) -> 4439 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cuarzoNegroColumna: 238 (init) -> 238 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilM4A1B: 4223 (init) -> 4223 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_acero: 4389 (init) -> 4389 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:subfusilMP5T5_Dummy: 4193 (init) -> 4193 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:patadecabra: 4338 (init) -> 4338 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:balaRedClub: 4268 (init) -> 4268 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_oro: 4507 (init) -> 4507 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_acero: 4304 (init) -> 4304 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_oro: 4334 (init) -> 4334 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala45acp_obsidiana: 4267 (init) -> 4267 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_redstone: 4487 (init) -> 4487 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_oro: 4397 (init) -> 4397 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_nokia: 4428 (init) -> 4428 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_hierro: 4459 (init) -> 4459 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cargadorRedClub: 4217 (init) -> 4217 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_obsidiana: 4374 (init) -> 4374 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoCarcaj: 4123 (init) -> 4123 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonAceroMediano: 4148 (init) -> 4148 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaVerdeSemilla: 4103 (init) -> 4103 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_acero: 4326 (init) -> 4326 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_oro: 4452 (init) -> 4452 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_piedra: 4350 (init) -> 4350 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_esmeralda: 4491 (init) -> 4491 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_nokia: 4505 (init) -> 4505 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:subfusil90PNF_Dummy: 4200 (init) -> 4200 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_oro: 4430 (init) -> 4430 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_esmeralda: 4469 (init) -> 4469 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_madera: 4346 (init) -> 4346 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_obsidiana: 4440 (init) -> 4440 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabJungla00: 242 (init) -> 242 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:carbonomercenario: 4140 (init) -> 4140 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala45acp_redstone: 4266 (init) -> 4266 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:movingParts: 4168 (init) -> 4168 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_redstone: 4443 (init) -> 4443 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala9mm_standar: 4256 (init) -> 4256 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_oro: 4485 (init) -> 4485 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoZombye: 199 (init) -> 199 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil47AKG_Dummy: 4239 (init) -> 4239 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:dinamita: 4287 (init) -> 4287 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:GP25: 4170 (init) -> 4170 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala55645mm_Standar: 4269 (init) -> 4269 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_acero: 4341 (init) -> 4341 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_redstone: 4432 (init) -> 4432 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_oro: 4496 (init) -> 4496 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabRobleOscuro00: 244 (init) -> 244 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pantalonDeAcero: 4119 (init) -> 4119 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_redstone: 4388 (init) -> 4388 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_diamante: 4391 (init) -> 4391 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_diamante: 4479 (init) -> 4479 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoReja01: 201 (init) -> 201 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:esmeraldaGrande: 4145 (init) -> 4145 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_carbono: 4305 (init) -> 4305 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_madera: 4416 (init) -> 4416 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_redstone: 4351 (init) -> 4351 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_piedra: 4497 (init) -> 4497 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_esmeralda: 4513 (init) -> 4513 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:vacio: 4142 (init) -> 4142 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:obsidianaCompresa: 4137 (init) -> 4137 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilMark2Lancer_Dummy: 4249 (init) -> 4249 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:mangoHierro: 4164 (init) -> 4164 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_hierro: 4426 (init) -> 4426 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaFM92_Dummy: 4191 (init) -> 4191 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_diamante: 4295 (init) -> 4295 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_madera: 4471 (init) -> 4471 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaMauserC92: 4190 (init) -> 4190 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala5728mm_obsidiana: 4261 (init) -> 4261 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:culataAcero: 4158 (init) -> 4158 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_carbono: 4445 (init) -> 4445 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:suspensionderedstone: 4173 (init) -> 4173 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_redstone: 4421 (init) -> 4421 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala76239mm_Standar: 4272 (init) -> 4272 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonMaderaLargo: 4156 (init) -> 4156 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoDeCarbono: 4114 (init) -> 4114 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_diamante: 4501 (init) -> 4501 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_hierro: 4404 (init) -> 4404 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil200AK: 4228 (init) -> 4228 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_esmeralda: 4370 (init) -> 4370 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:escopetaWinchester1200: 4220 (init) -> 4220 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_nokia: 4299 (init) -> 4299 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:subfusil57ar_5728: 4199 (init) -> 4199 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_hierro: 4308 (init) -> 4308 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaRedClub: 4214 (init) -> 4214 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_diamante: 4317 (init) -> 4317 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_diamante: 4435 (init) -> 4435 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_hierro: 4330 (init) -> 4330 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_carbono: 4511 (init) -> 4511 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilM4A1: 4222 (init) -> 4222 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_acero: 4444 (init) -> 4444 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:botasDeAcero: 4120 (init) -> 4120 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonCarbonMediano: 4151 (init) -> 4151 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_diamante: 4306 (init) -> 4306 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_hierro: 4503 (init) -> 4503 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaRoja_blocke: 250 (init) -> 250 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_redstone: 4509 (init) -> 4509 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_acero: 4433 (init) -> 4433 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_piedra: 4376 (init) -> 4376 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_diamante: 4512 (init) -> 4512 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_acero: 4315 (init) -> 4315 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_hierro: 4297 (init) -> 4297 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:callBlock: 228 (init) -> 228 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaAzulPlanta: 4102 (init) -> 4102 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_obsidiana: 4451 (init) -> 4451 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_diamante: 4413 (init) -> 4413 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:M203: 4169 (init) -> 4169 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:maletin01: 4292 (init) -> 4292 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_esmeralda: 4480 (init) -> 4480 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:vallestaMercenariaDeMadera: 4180 (init) -> 4180 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_nokia: 4384 (init) -> 4384 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_piedra: 4519 (init) -> 4519 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:maletin00: 4291 (init) -> 4291 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:suspensionderedstoneactivada: 4172 (init) -> 4172 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_esmeralda: 4425 (init) -> 4425 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonAceroCorto: 4146 (init) -> 4146 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cargadorFM9X: 4196 (init) -> 4196 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistola57NF_5728: 4198 (init) -> 4198 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:culataMadera: 4160 (init) -> 4160 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:baseDelAsensor: 230 (init) -> 230 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_obsidiana: 4506 (init) -> 4506 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:nokiamercenaria: 4139 (init) -> 4139 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_carbono: 4456 (init) -> 4456 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistola1911colt_Dummy: 4205 (init) -> 4205 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:aceromercenario: 4129 (init) -> 4129 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_diamante: 4446 (init) -> 4446 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pantalonDeLanaAzul: 4108 (init) -> 4108 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoDeLanaNegra: 4112 (init) -> 4112 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:subfusil57ar_Dummy: 4202 (init) -> 4202 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:motorDelAscensor: 229 (init) -> 229 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoDeLanaRoja: 4110 (init) -> 4110 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaSocomS_Dummy: 4213 (init) -> 4213 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bandanaRoja: 4124 (init) -> 4124 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:escopetaWinchester1200_Dummy: 4221 (init) -> 4221 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_oro: 4463 (init) -> 4463 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_nokia: 4450 (init) -> 4450 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_hierro: 4481 (init) -> 4481 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:c4: 4288 (init) -> 4288 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cartucho12G_antiEnder: 4263 (init) -> 4263 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_piedra: 4362 (init) -> 4362 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_redstone: 4325 (init) -> 4325 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_carbono: 4390 (init) -> 4390 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_esmeralda: 4447 (init) -> 4447 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaSocom_Dummy: 4211 (init) -> 4211 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_oro: 4301 (init) -> 4301 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_madera: 4383 (init) -> 4383 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cuarzoNegro: 236 (init) -> 236 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilMark2Lancer: 4248 (init) -> 4248 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pantalonDeLanaRoja: 4111 (init) -> 4111 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_obsidiana: 4348 (init) -> 4348 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoAldeano00: 204 (init) -> 204 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoAldeano01: 205 (init) -> 205 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_piedra: 4398 (init) -> 4398 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:baculo: 4286 (init) -> 4286 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_nokia: 4417 (init) -> 4417 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_redstone: 4454 (init) -> 4454 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_redstone: 4520 (init) -> 4520 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cuchillomercenario: 4339 (init) -> 4339 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:idDeBlockes: 4290 (init) -> 4290 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_madera: 4449 (init) -> 4449 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_piedra: 4387 (init) -> 4387 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_madera: 4394 (init) -> 4394 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:mangoAcero: 4162 (init) -> 4162 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cartucho12G_standar: 4262 (init) -> 4262 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoDeLanaAzul: 4107 (init) -> 4107 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala9mm_obsidiana: 4258 (init) -> 4258 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_acero: 4411 (init) -> 4411 (map).
[18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_obsidiana: 4473 (init) -> 4473 (map).
[18:39:58] [server thread/INFO] [FML]: Applying holder lookups
[18:39:58] [server thread/INFO] [FML]: Holder lookups applied
[18:39:59] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@376f2e1f)
[18:39:59] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@376f2e1f)
[18:39:59] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@376f2e1f)
[18:39:59] [server thread/INFO]: Preparing start region for level 0
[18:40:00] [server thread/INFO]: Preparing spawn area: 10%
[18:40:01] [server thread/INFO]: Preparing spawn area: 40%
[18:40:02] [server thread/INFO]: Preparing spawn area: 93%
[18:40:03] [server thread/INFO]: Changing view distance to 12, from 10
[18:40:05] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2
[18:40:05] [Netty Server IO #1/INFO] [FML]: Client protocol version 2
[18:40:05] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 5 mods : [email protected],[email protected],[email protected],[email protected],[email protected]
[18:40:05] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established
[18:40:05] [server thread/INFO] [FML]: [server thread] Server side modded connection established
[18:40:05] [server thread/INFO]: Player132[local:E:1032f365] logged in with entity id 378 at (48.61527714437633, 83.0, 260.29962608266794)
[18:40:06] [server thread/INFO]: Player132 joined the game
[18:40:06] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:281]: 









[18:40:06] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:282]: dif=NORMAL
[18:40:06] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:281]: 









[18:40:06] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:282]: dif=NORMAL
[18:40:11] [server thread/INFO]: Saving and pausing game...
[18:40:11] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[18:40:12] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[18:40:12] [server thread/INFO]: Saving chunks for level 'New World'/The End
[18:40:12] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 7421ms behind, skipping 148 tick(s)
[18:40:26] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 3573ms behind, skipping 71 tick(s)
[18:40:26] [server thread/INFO]: Player132 has just earned the achievement [Taking Inventory]
[18:40:26] [Client thread/INFO]: [CHAT] Player132 has just earned the achievement [Taking Inventory]
[18:40:33] [Client thread/INFO]: [CHAT] You do not have permission to use this command
[18:40:34] [server thread/INFO]: Saving and pausing game...
[18:40:34] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[18:40:35] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[18:40:35] [server thread/INFO]: Saving chunks for level 'New World'/The End
[18:40:36] [server thread/INFO]: Stopping server
[18:40:36] [server thread/INFO]: Saving players
[18:40:36] [server thread/INFO]: Saving worlds
[18:40:36] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[18:40:36] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[18:40:36] [server thread/INFO]: Saving chunks for level 'New World'/The End
[18:40:37] [server thread/INFO] [FML]: Unloading dimension 0
[18:40:37] [server thread/INFO] [FML]: Unloading dimension -1
[18:40:37] [server thread/INFO] [FML]: Unloading dimension 1
[18:40:41] [server thread/INFO] [FML]: Applying holder lookups
[18:40:41] [server thread/INFO] [FML]: Holder lookups applied
[18:40:45] [Client thread/INFO]: Deleting level New World
[18:40:45] [Client thread/INFO]: Attempt 1...
[18:40:59] [server thread/INFO]: Starting integrated minecraft server version 1.8
[18:40:59] [server thread/INFO]: Generating keypair
[18:40:59] [server thread/INFO]: Converting map!
[18:40:59] [server thread/INFO]: Scanning folders...
[18:40:59] [server thread/INFO]: Total conversion count is 0
[18:40:59] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance
[18:41:00] [server thread/INFO] [FML]: Applying holder lookups
[18:41:00] [server thread/INFO] [FML]: Holder lookups applied
[18:41:00] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@2eda3c85)
[18:41:00] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@2eda3c85)
[18:41:00] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@2eda3c85)
[18:41:00] [server thread/INFO]: Preparing start region for level 0
[18:41:01] [server thread/INFO]: Preparing spawn area: 4%
[18:41:02] [server thread/INFO]: Preparing spawn area: 6%
[18:41:03] [server thread/INFO]: Preparing spawn area: 8%
[18:41:04] [server thread/INFO]: Preparing spawn area: 10%
[18:41:05] [server thread/INFO]: Preparing spawn area: 13%
[18:41:06] [server thread/INFO]: Preparing spawn area: 15%
[18:41:07] [server thread/INFO]: Preparing spawn area: 18%
[18:41:08] [server thread/INFO]: Preparing spawn area: 21%
[18:41:09] [server thread/INFO]: Preparing spawn area: 25%
[18:41:10] [server thread/INFO]: Preparing spawn area: 28%
[18:41:11] [server thread/INFO]: Preparing spawn area: 32%
[18:41:12] [server thread/INFO]: Preparing spawn area: 36%
[18:41:13] [server thread/INFO]: Preparing spawn area: 42%
[18:41:14] [server thread/INFO]: Preparing spawn area: 47%
[18:41:15] [server thread/INFO]: Preparing spawn area: 53%
[18:41:16] [server thread/INFO]: Preparing spawn area: 59%
[18:41:17] [server thread/INFO]: Preparing spawn area: 64%
[18:41:18] [server thread/INFO]: Preparing spawn area: 68%
[18:41:19] [server thread/INFO]: Preparing spawn area: 73%
[18:41:20] [server thread/INFO]: Preparing spawn area: 80%
[18:41:21] [server thread/INFO]: Preparing spawn area: 88%
[18:41:22] [server thread/INFO]: Preparing spawn area: 94%
[18:41:23] [server thread/INFO]: Preparing spawn area: 98%
[18:41:24] [server thread/INFO]: Changing view distance to 12, from 10
[18:41:24] [Netty Local Client IO #1/INFO] [FML]: Server protocol version 2
[18:41:24] [Netty Server IO #3/INFO] [FML]: Client protocol version 2
[18:41:24] [Netty Server IO #3/INFO] [FML]: Client attempting to join with 5 mods : [email protected],[email protected],[email protected],[email protected],[email protected]
[18:41:24] [Netty Local Client IO #1/INFO] [FML]: [Netty Local Client IO #1] Client side modded connection established
[18:41:24] [server thread/INFO] [FML]: [server thread] Server side modded connection established
[18:41:24] [server thread/INFO]: Player132[local:E:c343b60f] logged in with entity id 684 at (166.5, 91.0, 242.5)
[18:41:24] [server thread/INFO]: Player132 joined the game
[18:41:24] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:281]: 









[18:41:24] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:282]: dif=NORMAL
[18:41:24] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:281]: 









[18:41:24] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:282]: dif=NORMAL
[18:41:33] [server thread/INFO]: Saving and pausing game...
[18:41:33] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[18:41:42] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[18:41:42] [server thread/INFO]: Saving chunks for level 'New World'/The End
[18:41:42] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 17632ms behind, skipping 352 tick(s)
[18:42:47] [server thread/INFO]: Player132 has just earned the achievement [Taking Inventory]
[18:42:47] [Client thread/INFO]: [CHAT] Player132 has just earned the achievement [Taking Inventory]
[18:42:50] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 2536ms behind, skipping 50 tick(s)
[18:43:35] [Chunk Batcher 1/WARN]: Needed to grow BufferBuilder buffer: Old size 524288 bytes, new size 2621440 bytes.
[18:43:41] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.WorldGenSingleMinable:generate:48]: !!!!!!!!!!!!!!!!!!!!!!  generar en =BlockPos{x=-93, y=63, z=-204}
[18:43:41] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:54]: !!!!!!!!!!!!!!!!!!!!!!  generar en =BlockPos{x=-93, y=63, z=-204}
[18:43:44] [Chunk Batcher 1/WARN]: Needed to grow BufferBuilder buffer: Old size 524288 bytes, new size 2621440 bytes.
[18:43:44] [Chunk Batcher 0/WARN]: Needed to grow BufferBuilder buffer: Old size 524288 bytes, new size 2621440 bytes.
[18:44:11] [Chunk Batcher 0/WARN]: Needed to grow BufferBuilder buffer: Old size 524288 bytes, new size 2621440 bytes.
[18:44:29] [Chunk Batcher 0/WARN]: Needed to grow BufferBuilder buffer: Old size 524288 bytes, new size 2621440 bytes.
[18:44:44] [Client thread/WARN]: Needed to grow BufferBuilder buffer: Old size 524288 bytes, new size 2621440 bytes.
[18:45:36] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.WorldGenSingleMinable:generate:48]: !!!!!!!!!!!!!!!!!!!!!!  generar en =BlockPos{x=-329, y=77, z=-613}
[18:45:36] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:54]: !!!!!!!!!!!!!!!!!!!!!!  generar en =BlockPos{x=-329, y=77, z=-613}
[18:45:36] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:127]: 



############################
[18:45:36] [server thread/INFO] [sTDOUT]: [mercenarymod.utilidades.util:ordenarPorAltura:293]: min=62
[18:45:36] [server thread/INFO] [sTDOUT]: [mercenarymod.utilidades.util:ordenarPorAltura:294]: max=76
[18:45:36] [server thread/INFO] [sTDOUT]: [mercenarymod.utilidades.util:ordenarPorAltura:341]: lista=[blockPos{x=-331, y=76, z=-614}, BlockPos{x=-330, y=76, z=-625}, BlockPos{x=-330, y=69, z=-602}, BlockPos{x=-320, y=73, z=-612}, BlockPos{x=-339, y=76, z=-613}, BlockPos{x=-319, y=74, z=-624}, BlockPos{x=-317, y=62, z=-602}, BlockPos{x=-339, y=74, z=-626}, BlockPos{x=-339, y=72, z=-602}]
[18:45:36] [server thread/INFO] [sTDOUT]: [mercenarymod.utilidades.util:ordenarPorAltura:342]: orden=[6, 2, 8, 3, 5, 7, 0, 1, 4]
[18:45:36] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:146]: bpos=BlockPos{x=-339, y=76, z=-613}
[18:45:37] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:146]: bpos=BlockPos{x=-330, y=76, z=-625}
[18:45:37] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:146]: bpos=BlockPos{x=-331, y=76, z=-614}
[18:45:37] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:146]: bpos=BlockPos{x=-339, y=74, z=-626}
[18:45:37] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:146]: bpos=BlockPos{x=-319, y=74, z=-624}
[18:45:37] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:146]: bpos=BlockPos{x=-320, y=73, z=-612}
[18:45:37] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:146]: bpos=BlockPos{x=-339, y=72, z=-602}
[18:45:37] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:146]: bpos=BlockPos{x=-330, y=70, z=-602}
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:146]: bpos=BlockPos{x=-317, y=69, z=-602}
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.utilidades.util:ordenarPorAltura:293]: min=62
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.utilidades.util:ordenarPorAltura:294]: max=76
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.utilidades.util:ordenarPorAltura:341]: lista=[blockPos{x=-331, y=76, z=-614}, BlockPos{x=-330, y=76, z=-625}, BlockPos{x=-330, y=69, z=-602}, BlockPos{x=-320, y=73, z=-612}, BlockPos{x=-339, y=76, z=-613}, BlockPos{x=-319, y=74, z=-624}, BlockPos{x=-317, y=62, z=-602}, BlockPos{x=-339, y=74, z=-626}, BlockPos{x=-339, y=72, z=-602}]
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.utilidades.util:ordenarPorAltura:342]: orden=[6, 2, 8, 3, 5, 7, 0, 1, 4]
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generar11p:623]: ###   generar11p=2
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.blocks.multitextura.puertas.verticalTrapdoorM00:onBlockAdded:158]: onBlockAdded
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generar11p:623]: ###   generar11p=4
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.blocks.multitextura.puertas.verticalTrapdoorM00:onBlockAdded:158]: onBlockAdded
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generar1p:488]: ###   generar1p=2
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.blocks.multitextura.puertas.verticalTrapdoorM00:onBlockAdded:158]: onBlockAdded
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarCorral:770]: ###   generarCorral=5
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generar2p:290]: ###   generar2p=4
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.blocks.multitextura.puertas.verticalTrapdoorM00:onBlockAdded:158]: onBlockAdded
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generar1p:488]: ###   generar1p=2
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.blocks.multitextura.puertas.verticalTrapdoorM00:onBlockAdded:158]: onBlockAdded
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarCorral:770]: ###   generarCorral=0
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarCorral:770]: ###   generarCorral=2
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generar1p:488]: ###   generar1p=3
[18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.blocks.multitextura.puertas.verticalTrapdoorM00:onBlockAdded:158]: onBlockAdded
[18:46:53] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 202561ms behind, skipping 4051 tick(s)
[18:47:06] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 13795ms behind, skipping 275 tick(s)
[18:47:07] [server thread/INFO]: Saving and pausing game...
[18:47:07] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[18:47:08] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[18:47:08] [server thread/INFO]: Saving chunks for level 'New World'/The End
[18:47:16] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 4474ms behind, skipping 89 tick(s)
[18:47:49] [server thread/INFO]: Changing view distance to 4, from 12
[18:47:57] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 5439ms behind, skipping 108 tick(s)
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:setMotor:891]: setMotor(BlockPos{x=-339, y=79, z=-626})Mundo=false
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:setMotor:899]: es un Motor
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:setMotor:914]: El motor si tiene energia
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:buscarAscensor:607]: buscarAscensor(false, BlockPos{x=-339, y=79, z=-626})
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:crearAsensor:808]: crearAsensor(false, BlockPos{x=-339, y=74, z=-626})
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:setDestino:956]: ))))) setDestino(BlockPos{x=-339, y=76, z=-626})
[18:50:12] [Client thread/INFO]: [CHAT] §3In which Floor am I =1 / 1
[18:50:12] [Client thread/INFO]: [CHAT] §3En que piso estoy =1 / 1
[18:50:12] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:286]: Mundo=true @@Matar= false t=0
[18:50:12] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:290]: ###Mensaje enviado al Servidor t=0ID=26409
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:286]: Mundo=false @@Matar= false t=0
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:298]: ### la entidad No ha Respondidio Aun0
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1)
[18:50:12] [Netty Server IO #3/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:515]: ###Mensaje recivido en el Servidor ASCEN_9726409 PD=97 ID=26409
[18:50:12] [Netty Server IO #3/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:529]:  es instancia de entidadAscensorMercenario
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1)
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1)
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1)
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1)
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1)
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1)
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1)
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1)
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======>  moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1)
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:crearAsensor:808]: crearAsensor(false, BlockPos{x=-339, y=74, z=-626})
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:abrirPuertas:745]: abrirPuertas(false, BlockPos{x=-339, y=74, z=-626})
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:abrirPuertas:757]: abrirPuertas(00)
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:abrirPuertas:766]: abrirPuertas(01)1
[18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:abrirPuertas:770]: abrirPuertas(02)
[18:50:12] [server thread/ERROR]: Encountered an unexpected exception
net.minecraft.util.ReportedException: Ticking entity
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:781) ~[MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669) ~[MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171) ~[integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540) [MinecraftServer.class:?]
at java.lang.Thread.run(Thread.java:745) [?:1.8.0_65]
Caused by: java.lang.IllegalArgumentException: Cannot get property PropertyBool{name=powered, clazz=class java.lang.Boolean, values=[true, false]} as it does not exist in BlockState{block=minecraft:air, properties=[]}
at net.minecraft.block.state.BlockState$StateImplementation.getValue(BlockState.java:174) ~[blockState$StateImplementation.class:?]
at mercenarymod.blocks.multitextura.puertas.puerta3x3t08.estaEnergizada(puerta3x3t08.java:1078) ~[puerta3x3t08.class:?]
at mercenarymod.blocks.multitextura.puertas.puerta3x3t08.toggleDoor(puerta3x3t08.java:768) ~[puerta3x3t08.class:?]
at mercenarymod.entidades.entidadAscensorMercenario.abrirPuertas(entidadAscensorMercenario.java:772) ~[entidadAscensorMercenario.class:?]
at mercenarymod.entidades.entidadAscensorMercenario.onUpdate(entidadAscensorMercenario.java:375) ~[entidadAscensorMercenario.class:?]
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2031) ~[World.class:?]
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:758) ~[WorldServer.class:?]
at net.minecraft.world.World.updateEntity(World.java:1997) ~[World.class:?]
at net.minecraft.world.World.updateEntities(World.java:1823) ~[World.class:?]
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:587) ~[WorldServer.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:775) ~[MinecraftServer.class:?]
... 4 more
[18:50:17] [server thread/ERROR]: This crash report has been saved to: /home/usuario/Modding/forge-1.8-1577-modmercenario/run/./crash-reports/crash-2016-02-29_18.50.17-server.txt
[18:50:17] [server thread/INFO]: Stopping server
[18:50:17] [server thread/INFO]: Saving players
[18:50:17] [server thread/INFO]: Saving worlds
[18:50:17] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[18:50:17] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[18:50:17] [server thread/INFO]: Saving chunks for level 'New World'/The End
[18:50:18] [server thread/INFO] [FML]: Unloading dimension 0
[18:50:18] [server thread/INFO] [FML]: Unloading dimension -1
[18:50:18] [server thread/INFO] [FML]: Unloading dimension 1
[18:50:18] [server thread/INFO] [FML]: Applying holder lookups
[18:50:18] [server thread/INFO] [FML]: Holder lookups applied
[18:50:18] [server thread/INFO] [FML]: The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded.

Posted

You can probably use ForgeGradle 2.0.2 with Forge 1.8-11.14.3.1520, just change the version number in your build.gradle.

 

You'll probably have to update to a newer version of Forge eventually, so I'd recommend trying the latest 1.8.9 version and seeing if you can narrow down the performance issues.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

 

i change the build.graddle  to

 

    dependencies {
    classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT'
       // classpath 'net.minecraftforge.gradle:ForgeGradle:2.0-SNAPSHOT'
    }
}
apply plugin: 'net.minecraftforge.gradle.forge'
*/

// for people who want stable
plugins {
    //id "net.minecraftforge.gradle.forge" version "2.0.1"
    id "net.minecraftforge.gradle.forge" version "2.0.2"
}

 

and i could narrow all the error and fixit but

 

 

 

 

i found a little issue a disturbing one i think is some change made in the code, but i change the graddle version not the forge version still 1520

1577 do the same, for i think has to be whith the graddle but not understand why or how

 

in orden to move the entityes whith the elevator i check for all the entityes in range

then i nullified the fall making

 

mob.motionY = 0.0F;

mob.fallDistance = 0.0F;

and then setting the motionY i need to make the entity go down or up whith the elevator

 

                                        mob.motionY = dezpD;

 

is working for mobs and for the itemEntityes i throw inside the elevator but now its not afecting the entity player that falls from elevator

i say is rare coze before it works

 

 


// #################################################################################################################
        //detec entityes in elevators range
public void detectarEntidades(World worldIn, BlockPos centro) {

	int f = 2;

	BlockPos posMin = centro.add(-f, -3, -f);
	BlockPos posMax = centro.add(f, 6, f);

	double centroY = centro.getY();

	AxisAlignedBB boundingBox = new AxisAlignedBB(posMin, posMax);
	lista = worldIn.getEntitiesWithinAABB(Entity.class, boundingBox);

	int llist = lista.size();

}

// #################################################################################################################
        //move entityes detected whith the elevator 
void moverEntidades(World worldIn, BlockPos centro) {

	double centroY = centro.getY();

	int mobId = 0;
	int ascensorID = this.getEntityId();
	float dezpD = 0.0F;

	if (this.dezplazarse) {
		dezpD = dezp;
	}

	//System.out.println("======>  moverEntidades(" + worldIn.isRemote + ", " + centro + " dezpD=" + dezpD + ")");

	for (int l = 0; l < lista.size(); l++) {

		Entity mob = (Entity) lista.get(l);

		if ( mob != null ) {



			double ascPosY = this.posY;

			double mobPosX = 0.0D;
			double mobPosY = 0.0D;
			double mobPosZ = 0.0D;

			mobId = mob.getEntityId();
			if (mobId != ascensorID) {

				System.out.println("# "+l+" mob="+mob.getName() ) ;  //system out i set to see if player gets here


				mob.onGround = true;
				mob.motionY = dezpD;// 0.05F;
				mob.fallDistance = 0.0F;

				mobPosX = mob.posX;
				mobPosY = mob.posY;
				mobPosZ = mob.posZ;

				if (((mobPosY) > (ascPosY - 1)) & ((mobPosY) < (ascPosY + 4))) {
					mob.setPosition(mobPosX, ascPosY + 1.02D, mobPosZ);
				}

				if ((mobPosY) > (centroY + 4)) {
					mob.setPosition(mobPosX, ascPosY + 5.02D, mobPosZ);
				}

			}
		}
	}
}

// #################################################################################################################

 

i put a system out to check if player gets in and

 

[07:11:54] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:560]: # 0 mob=Player129

[07:11:54] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:560]: # 1 mob=entity.modmercenario.aldeanoMercader.name

[07:11:54] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:560]: # 2 mob=entity.modmercenario.aldeanoMercader.name

 

yes it is in the list of entiyes to move

 

 

##############

soo far this is a new diferent bug ?

or has been change the way to aply an motionY to the playerEntity

 

 

thanks for reading

 

 

 

 

 

 

 

 

 

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

    • [01:52:34] [Server thread/WARN] [neruina/]: Neruina caught an exception, see below for cause java.lang.RuntimeException: Attempted to load class net/minecraft/client/Minecraft for invalid dist DEDICATED_SERVER         at net.minecraftforge.fml.loading.RuntimeDistCleaner.processClassWithFlags(RuntimeDistCleaner.java:57) ~[fmlloader-1.20.1-47.4.0.jar%2369!/:1.0] {}         at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.9.jar%2355!/:?] {}         at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.9.jar%2355!/:?] {}         at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar%2355!/:?] {}         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 net.minecraftforge.network.simple.SimpleChannel.sendToServer(SimpleChannel.java:87) ~[forge-1.20.1-47.4.0-universal.jar%23670!/:?] {re:mixin,re:classloading,pl:mixin:APP:connectivity.mixins.json:SimpleChannelMixin from mod connectivity,pl:mixin:A}         at com.dplayend.justleveling.network.ServerNetworking.sendToServer(ServerNetworking.java:36) ~[justleveling-forge-1.20.x-v1.7.jar%23542!/:forge-1.20.x-v1.7] {re:classloading}         at com.dplayend.justleveling.network.packet.common.CounterAttackSP.send(CounterAttackSP.java:51) ~[justleveling-forge-1.20.x-v1.7.jar%23542!/:forge-1.20.x-v1.7] {re:classloading}         at com.dplayend.justleveling.registry.RegistryCommonEvents.lambda$onAttackEntity$8(RegistryCommonEvents.java:315) ~[justleveling-forge-1.20.x-v1.7.jar%23542!/:forge-1.20.x-v1.7] {re:classloading}         at net.minecraftforge.common.util.LazyOptional.ifPresent(LazyOptional.java:137) ~[forge-1.20.1-47.4.0-universal.jar%23670!/:?] {re:mixin,re:classloading}         at com.dplayend.justleveling.registry.RegistryCommonEvents.onAttackEntity(RegistryCommonEvents.java:315) ~[justleveling-forge-1.20.x-v1.7.jar%23542!/:forge-1.20.x-v1.7] {re:classloading}         at com.dplayend.justleveling.registry.__RegistryCommonEvents_onAttackEntity_LivingHurtEvent.invoke(.dynamic) ~[justleveling-forge-1.20.x-v1.7.jar%23542!/:forge-1.20.x-v1.7] {re:classloading,pl:eventbus:B}         at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:73) ~[eventbus-6.0.5.jar%2352!/:?] {}         at net.minecraftforge.eventbus.EventBus.post(EventBus.java:315) ~[eventbus-6.0.5.jar%2352!/:?] {}         at net.minecraftforge.eventbus.EventBus.post(EventBus.java:296) ~[eventbus-6.0.5.jar%2352!/:?] {}         at net.minecraftforge.common.ForgeHooks.onLivingHurt(ForgeHooks.java:292) ~[forge-1.20.1-47.4.0-universal.jar%23670!/:?] {re:mixin,re:classloading,pl:mixin:APP:mixins.redirected_forge_1.20.1.json:forge.net.minecraftforge.common.ForgeHooksMixin from mod redirected,pl:mixin:APP:modernfix-forge.mixins.json:perf.faster_ingredients.ForgeHooksMixin from mod modernfix,pl:mixin:APP:apotheosis.mixins.json:ForgeHooksMixin from mod apotheosis,pl:mixin:APP:connectormod.mixins.json:ForgeHooksMixin from mod connectormod,pl:mixin:APP:connectormod.mixins.json:item.ForgeHooksMixin from mod connectormod,pl:mixin:A}         at net.minecraft.world.entity.player.Player.m_6475_(Player.java:909) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:computing_frames,pl:accesstransformer:B,pl:connector_pre_launch:A,re:mixin,pl:accesstransformer:B,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:baguettelib.mixins.json:PlayerDeathMixin from mod baguettelib,pl:mixin:APP:pehkui.mixins.json:reach.PlayerEntityMixin from mod pehkui,pl:mixin:APP:openpartiesandclaims.mixins.json:MixinPlayer from mod openpartiesandclaims,pl:mixin:APP:paraglider.mixins.json:MixinPlayer from mod paraglider,pl:mixin:APP:attributeslib.mixins.json:PlayerMixin from mod attributeslib,pl:mixin:APP:fabric-entity-events-v1.mixins.json:PlayerEntityMixin from mod fabric_entity_events_v1,pl:mixin:APP:fabric-entity-events-v1.mixins.json:elytra.PlayerEntityMixin from mod fabric_entity_events_v1,pl:mixin:APP:tipsylib.mixins.json:server.PlayerMixin from mod tipsylib,pl:mixin:APP:pehkui.mixins.json:PlayerEntityMixin from mod pehkui,pl:mixin:APP:pehkui.mixins.json:compat117plus.PlayerEntityMixin from mod pehkui,pl:mixin:APP:pehkui.mixins.json:compat1194plus.PlayerEntityMixin from mod pehkui,pl:mixin:APP:pehkui.mixins.json:compat1201minus.EntityVehicleHeightOffsetMixin from mod pehkui,pl:mixin:APP:pehkui.mixins.json:compat1204minus.PlayerEntityMixin from mod pehkui,pl:mixin:APP:mixins.travelersbackpack.json:PlayerMixin from mod travelersbackpack,pl:mixin:APP:alltheleaks.mixins.json:main.PlayerMixin from mod alltheleaks,pl:mixin:APP:baguettelib.mixins.json:PlayerEquipmentMixin from mod baguettelib,pl:mixin:APP:dummmmmmy-common.mixins.json:PlayerMixin from mod dummmmmmy,pl:mixin:APP:soulsweapons.mixins.json:PlayerEntityMixin from mod soulsweapons,pl:mixin:APP:endergetic.mixins.json:PlayerMixin from mod endergetic,pl:mixin:APP:friendsandfoes-common.mixins.json:PlayerEntityMixin from mod friendsandfoes,pl:mixin:APP:justleveling.mixins.json:MixPlayer from mod justleveling,pl:mixin:APP:skilltree.mixins.json:minecraft/PlayerMixin from mod skilltree,pl:mixin:APP:supplementaries-common.mixins.json:PlayerMixin from mod supplementaries,pl:mixin:APP:supplementaries.mixins.json:PlayerProjectileMixin from mod supplementaries,pl:mixin:APP:mixins.irons_spellbooks.json:PlayerMixin from mod irons_spellbooks,pl:mixin:APP:mixins.epicfight.json:MixinPlayer from mod epicfight,pl:mixin:APP:create.mixins.json:PlayerMixin from mod create,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.world.entity.LivingEntity.m_6469_(LivingEntity.java:1112) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:connectormod:insertInjectionTarget,xf:fml:connectormod:updateItemUseStartTreshold,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,xf:fml:connectormod:insertInjectionTarget,xf:fml:connectormod:updateItemUseStartTreshold,pl:mixin:APP:baguettelib.mixins.json:LivingEntityDeathMixin from mod baguettelib,pl:mixin:APP:subtle_effects.mixins.json:common.CommonLivingEntityMixin from mod subtle_effects,pl:mixin:APP:modernfix-forge.mixins.json:perf.forge_cap_retrieval.LivingEntityMixin from mod modernfix,pl:mixin:APP:armorcurve.mixins.json:ValueUpdateMixin from mod armorcurve,pl:mixin:APP:apotheosis.mixins.json:LivingEntityInvoker from mod apotheosis,pl:mixin:APP:apotheosis.mixins.json:LivingEntityMixin from mod apotheosis,pl:mixin:APP:apotheosis.mixins.json:MHFMixinLivingEntity from mod apotheosis,pl:mixin:APP:projectile_damage.mixins.json:LivingEntityMixin from mod projectile_damage,pl:mixin:APP:autoleveling.mixins.json:LivingEntityAccessor from mod autoleveling,pl:mixin:APP:curios.mixins.json:MixinLivingEntity from mod curios,pl:mixin:APP:attributeslib.mixins.json:LivingEntityMixin from mod attributeslib,pl:mixin:APP:fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod fabric_entity_events_v1,pl:mixin:APP:fabric-entity-events-v1.mixins.json:elytra.LivingEntityMixin from mod fabric_entity_events_v1,pl:mixin:APP:lithium.mixins.json:alloc.enum_values.living_entity.LivingEntityMixin from mod radium,pl:mixin:APP:lithium.mixins.json:entity.collisions.unpushable_cramming.LivingEntityMixin from mod radium,pl:mixin:APP:lithium.mixins.json:entity.fast_elytra_check.LivingEntityMixin from mod radium,pl:mixin:APP:lithium.mixins.json:entity.fast_hand_swing.LivingEntityMixin from mod radium,pl:mixin:APP:lithium.mixins.json:entity.fast_powder_snow_check.LivingEntityMixin from mod radium,pl:mixin:APP:lithium.mixins.json:entity.skip_equipment_change_check.LivingEntityMixin from mod radium,pl:mixin:APP:questkilltask.mixins.json:LivingEntityMixin from mod questkilltask,pl:mixin:APP:tipsylib.mixins.json:server.LivingEntityAttributesMixin from mod tipsylib,pl:mixin:APP:tipsylib.mixins.json:server.LivingEntityEffectsMixin from mod tipsylib,pl:mixin:APP:pehkui.mixins.json:LivingEntityMixin from mod pehkui,pl:mixin:APP:pehkui.mixins.json:compat117plus.LivingEntityMixin from mod pehkui,pl:mixin:APP:pehkui.mixins.json:compat1194plus.LivingEntityMixin from mod pehkui,pl:mixin:APP:pehkui.mixins.json:compat1204minus.LivingEntityMixin from mod pehkui,pl:mixin:APP:caelus.mixins.json:MixinLivingEntity from mod caelus,pl:mixin:APP:simply_swords_overhaul.mixins.json:MixinLivingEntity from mod simply_swords_overhaul,pl:mixin:APP:idas.mixins.json:LabyrinthBossKilledMixin from mod idas,pl:mixin:APP:citadel.mixins.json:LivingEntityMixin from mod citadel,pl:mixin:APP:bookshelf.common.mixins.json:accessors.entity.AccessorLivingEntity from mod bookshelf,pl:mixin:APP:bookshelf.common.mixins.json:patches.entity.MixinLivingEntity from mod bookshelf,pl:mixin:APP:dummmmmmy-common.mixins.json:LivingEntityMixin from mod dummmmmmy,pl:mixin:APP:cataclysm.mixins.json:LivingEntityMixin from mod cataclysm,pl:mixin:APP:fabric-lifecycle-events-v1.mixins.json:LivingEntityMixin from mod fabric_lifecycle_events_v1,pl:mixin:APP:soulsweapons.mixins.json:LivingEntityInvoker from mod soulsweapons,pl:mixin:APP:soulsweapons.mixins.json:LivingEntityMixin from mod soulsweapons,pl:mixin:APP:endergetic.mixins.json:LivingEntityMixin from mod endergetic,pl:mixin:APP:friendsandfoes-common.mixins.json:BlazeLivingEntityMixin from mod friendsandfoes,pl:mixin:APP:friendsandfoes-common.mixins.json:LivingEntityMixin from mod friendsandfoes,pl:mixin:APP:simplyswords-common.mixins.json:LivingEntityMixin from mod simplyswords,pl:mixin:APP:knavesneeds-common.mixins.json:LivingEntityMixin from mod knavesneeds,pl:mixin:APP:justleveling.mixins.json:MixLivingEntity from mod justleveling,pl:mixin:APP:skilltree.mixins.json:minecraft/LivingEntityMixin from mod skilltree,pl:mixin:APP:skilltree.mixins.json:LivingEntityAccessor from mod skilltree,pl:mixin:APP:quark.mixins.json:accessor.AccessorLivingEntity from mod quark,pl:mixin:APP:supplementaries-common.mixins.json:LivingEntityAccessor from mod supplementaries,pl:mixin:APP:supplementaries-common.mixins.json:LivingEntityMixin from mod supplementaries,pl:mixin:APP:supplementaries.mixins.json:LivingEntityMixin from mod supplementaries,pl:mixin:APP:mixins.irons_spellbooks.json:LivingEntityMixin from mod irons_spellbooks,pl:mixin:APP:additional_attributes.mixins.json:LivingEntityMixin from mod additional_attributes,pl:mixin:APP:particle_effects.mixins.json:LivingEntityMixin from mod particle_effects,pl:mixin:APP:improvedmobs.mixins.json:LivingEntityMixin from mod improvedmobs,pl:mixin:APP:mixins.epicfight.json:MixinLivingEntity from mod epicfight,pl:mixin:APP:create.mixins.json:CustomItemUseEffectsMixin from mod create,pl:mixin:APP:create.mixins.json:LavaSwimmingMixin from mod create,pl:mixin:APP:create.mixins.json:accessor.LivingEntityAccessor from mod create,pl:mixin:APP:pehkui.mixins.json:compat115plus.LivingEntityMixin from mod pehkui,pl:mixin:APP:obscure_api.mixins.json:LivingEntityMixin from mod obscure_api,pl:mixin:APP:maxhealthfix.common.mixins.json:MixinLivingEntity from mod maxhealthfix,pl:mixin:APP:openpartiesandclaims.mixins.json:MixinLivingEntity from mod openpartiesandclaims,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.world.entity.player.Player.m_6469_(Player.java:840) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:computing_frames,pl:accesstransformer:B,pl:connector_pre_launch:A,re:mixin,pl:accesstransformer:B,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:baguettelib.mixins.json:PlayerDeathMixin from mod baguettelib,pl:mixin:APP:pehkui.mixins.json:reach.PlayerEntityMixin from mod pehkui,pl:mixin:APP:openpartiesandclaims.mixins.json:MixinPlayer from mod openpartiesandclaims,pl:mixin:APP:paraglider.mixins.json:MixinPlayer from mod paraglider,pl:mixin:APP:attributeslib.mixins.json:PlayerMixin from mod attributeslib,pl:mixin:APP:fabric-entity-events-v1.mixins.json:PlayerEntityMixin from mod fabric_entity_events_v1,pl:mixin:APP:fabric-entity-events-v1.mixins.json:elytra.PlayerEntityMixin from mod fabric_entity_events_v1,pl:mixin:APP:tipsylib.mixins.json:server.PlayerMixin from mod tipsylib,pl:mixin:APP:pehkui.mixins.json:PlayerEntityMixin from mod pehkui,pl:mixin:APP:pehkui.mixins.json:compat117plus.PlayerEntityMixin from mod pehkui,pl:mixin:APP:pehkui.mixins.json:compat1194plus.PlayerEntityMixin from mod pehkui,pl:mixin:APP:pehkui.mixins.json:compat1201minus.EntityVehicleHeightOffsetMixin from mod pehkui,pl:mixin:APP:pehkui.mixins.json:compat1204minus.PlayerEntityMixin from mod pehkui,pl:mixin:APP:mixins.travelersbackpack.json:PlayerMixin from mod travelersbackpack,pl:mixin:APP:alltheleaks.mixins.json:main.PlayerMixin from mod alltheleaks,pl:mixin:APP:baguettelib.mixins.json:PlayerEquipmentMixin from mod baguettelib,pl:mixin:APP:dummmmmmy-common.mixins.json:PlayerMixin from mod dummmmmmy,pl:mixin:APP:soulsweapons.mixins.json:PlayerEntityMixin from mod soulsweapons,pl:mixin:APP:endergetic.mixins.json:PlayerMixin from mod endergetic,pl:mixin:APP:friendsandfoes-common.mixins.json:PlayerEntityMixin from mod friendsandfoes,pl:mixin:APP:justleveling.mixins.json:MixPlayer from mod justleveling,pl:mixin:APP:skilltree.mixins.json:minecraft/PlayerMixin from mod skilltree,pl:mixin:APP:supplementaries-common.mixins.json:PlayerMixin from mod supplementaries,pl:mixin:APP:supplementaries.mixins.json:PlayerProjectileMixin from mod supplementaries,pl:mixin:APP:mixins.irons_spellbooks.json:PlayerMixin from mod irons_spellbooks,pl:mixin:APP:mixins.epicfight.json:MixinPlayer from mod epicfight,pl:mixin:APP:create.mixins.json:PlayerMixin from mod create,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.server.level.ServerPlayer.m_6469_(ServerPlayer.java:695) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:computing_frames,pl:accesstransformer:B,pl:connector_pre_launch:A,re:mixin,pl:accesstransformer:B,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.world.entity.Mob.m_7327_(Mob.java:1410) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,pl:accesstransformer:B,pl:connector_pre_launch:A,re:computing_frames,pl:accesstransformer:B,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.redirected_forge_1.20.1.json:net.minecraft.world.entity.MobMixin from mod redirected,pl:mixin:APP:subtle_effects.mixins.json:common.MobMixin from mod subtle_effects,pl:mixin:APP:fabric-entity-events-v1.mixins.json:MobEntityMixin from mod fabric_entity_events_v1,pl:mixin:APP:lithium.mixins.json:entity.inactive_navigations.MobEntityMixin from mod radium,pl:mixin:APP:lithium.mixins.json:entity.skip_equipment_change_check.MobEntityMixin from mod radium,pl:mixin:APP:pehkui.mixins.json:MobEntityMixin from mod pehkui,pl:mixin:APP:bookshelf.common.mixins.json:accessors.entity.AccessorMob from mod bookshelf,pl:mixin:APP:despawn_tweaker.mixins.json:MobMixin from mod despawn_tweaker,pl:mixin:APP:otherworldapoth.mixins.json:MobMixin from mod otherworldapoth,pl:mixin:APP:letmedespawn.mixins.json:MobMixin from mod letmedespawn,pl:mixin:APP:endergetic.mixins.json:MobMixin from mod endergetic,pl:mixin:APP:moonlight-common.mixins.json:EntityMixin from mod moonlight,pl:mixin:APP:improvedmobs.mixins.json:MobEntityMixin from mod improvedmobs,pl:mixin:APP:improvedmobs.mixins.json:MobMixin from mod improvedmobs,pl:mixin:APP:mixins.epicfight.json:MixinMob from mod epicfight,pl:mixin:APP:pehkui.mixins.json:compat116plus.MobEntityMixin from mod pehkui,pl:mixin:APP:openpartiesandclaims.forge.mixins.json:MixinForgeMob from mod openpartiesandclaims,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.world.entity.monster.Zombie.m_7327_(Zombie.java:315) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,xf:fml:forge:forge_method_redirector,pl:connector_pre_launch:A,re:classloading,xf:fml:forge:forge_method_redirector,pl:mixin:APP:pehkui.mixins.json:compat1201minus.EntityVehicleHeightOffsetMixin from mod pehkui,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.world.entity.monster.Husk.m_7327_(Husk.java:57) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,pl:connector_pre_launch:A,re:classloading,pl:connector_pre_launch:A}         at yesman.epicfight.world.capabilities.entitypatch.MobPatch.attack(MobPatch.java:179) ~[epicfight-forge-20.9.7-1.20.1.jar%23476!/:20.9.7] {re:mixin,re:classloading}         at yesman.epicfight.api.animation.types.AttackAnimation.hurtCollidingEntities(AttackAnimation.java:241) ~[epicfight-forge-20.9.7-1.20.1.jar%23476!/:20.9.7] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:A,pl:runtimedistcleaner:A}         at yesman.epicfight.api.animation.types.AttackAnimation.attackTick(AttackAnimation.java:216) ~[epicfight-forge-20.9.7-1.20.1.jar%23476!/:20.9.7] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:A,pl:runtimedistcleaner:A}         at yesman.epicfight.api.animation.types.AttackAnimation.tick(AttackAnimation.java:169) ~[epicfight-forge-20.9.7-1.20.1.jar%23476!/:20.9.7] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:A,pl:runtimedistcleaner:A}         at yesman.epicfight.api.animation.ServerAnimator.tick(ServerAnimator.java:85) ~[epicfight-forge-20.9.7-1.20.1.jar%23476!/:20.9.7] {re:classloading}         at yesman.epicfight.world.capabilities.entitypatch.LivingEntityPatch.tick(LivingEntityPatch.java:154) ~[epicfight-forge-20.9.7-1.20.1.jar%23476!/:20.9.7] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:runtimedistcleaner:A}         at yesman.epicfight.events.EntityEvents.updateEvent(EntityEvents.java:103) ~[epicfight-forge-20.9.7-1.20.1.jar%23476!/:20.9.7] {re:classloading}         at yesman.epicfight.events.__EntityEvents_updateEvent_LivingTickEvent.invoke(.dynamic) ~[epicfight-forge-20.9.7-1.20.1.jar%23476!/:20.9.7] {re:classloading,pl:eventbus:B}         at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:73) ~[eventbus-6.0.5.jar%2352!/:?] {}         at net.minecraftforge.eventbus.EventBus.post(EventBus.java:315) ~[eventbus-6.0.5.jar%2352!/:?] {}         at net.minecraftforge.eventbus.EventBus.post(EventBus.java:296) ~[eventbus-6.0.5.jar%2352!/:?] {}         at net.minecraftforge.common.ForgeHooks.onLivingTick(ForgeHooks.java:264) ~[forge-1.20.1-47.4.0-universal.jar%23670!/:?] {re:mixin,re:classloading,pl:mixin:APP:mixins.redirected_forge_1.20.1.json:forge.net.minecraftforge.common.ForgeHooksMixin from mod redirected,pl:mixin:APP:modernfix-forge.mixins.json:perf.faster_ingredients.ForgeHooksMixin from mod modernfix,pl:mixin:APP:apotheosis.mixins.json:ForgeHooksMixin from mod apotheosis,pl:mixin:APP:connectormod.mixins.json:ForgeHooksMixin from mod connectormod,pl:mixin:APP:connectormod.mixins.json:item.ForgeHooksMixin from mod connectormod,pl:mixin:A}         at net.minecraft.world.entity.LivingEntity.m_8119_(LivingEntity.java:2258) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:connectormod:insertInjectionTarget,xf:fml:connectormod:updateItemUseStartTreshold,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,xf:fml:connectormod:insertInjectionTarget,xf:fml:connectormod:updateItemUseStartTreshold,pl:mixin:APP:baguettelib.mixins.json:LivingEntityDeathMixin from mod baguettelib,pl:mixin:APP:subtle_effects.mixins.json:common.CommonLivingEntityMixin from mod subtle_effects,pl:mixin:APP:modernfix-forge.mixins.json:perf.forge_cap_retrieval.LivingEntityMixin from mod modernfix,pl:mixin:APP:armorcurve.mixins.json:ValueUpdateMixin from mod armorcurve,pl:mixin:APP:apotheosis.mixins.json:LivingEntityInvoker from mod apotheosis,pl:mixin:APP:apotheosis.mixins.json:LivingEntityMixin from mod apotheosis,pl:mixin:APP:apotheosis.mixins.json:MHFMixinLivingEntity from mod apotheosis,pl:mixin:APP:projectile_damage.mixins.json:LivingEntityMixin from mod projectile_damage,pl:mixin:APP:autoleveling.mixins.json:LivingEntityAccessor from mod autoleveling,pl:mixin:APP:curios.mixins.json:MixinLivingEntity from mod curios,pl:mixin:APP:attributeslib.mixins.json:LivingEntityMixin from mod attributeslib,pl:mixin:APP:fabric-entity-events-v1.mixins.json:LivingEntityMixin from mod fabric_entity_events_v1,pl:mixin:APP:fabric-entity-events-v1.mixins.json:elytra.LivingEntityMixin from mod fabric_entity_events_v1,pl:mixin:APP:lithium.mixins.json:alloc.enum_values.living_entity.LivingEntityMixin from mod radium,pl:mixin:APP:lithium.mixins.json:entity.collisions.unpushable_cramming.LivingEntityMixin from mod radium,pl:mixin:APP:lithium.mixins.json:entity.fast_elytra_check.LivingEntityMixin from mod radium,pl:mixin:APP:lithium.mixins.json:entity.fast_hand_swing.LivingEntityMixin from mod radium,pl:mixin:APP:lithium.mixins.json:entity.fast_powder_snow_check.LivingEntityMixin from mod radium,pl:mixin:APP:lithium.mixins.json:entity.skip_equipment_change_check.LivingEntityMixin from mod radium,pl:mixin:APP:questkilltask.mixins.json:LivingEntityMixin from mod questkilltask,pl:mixin:APP:tipsylib.mixins.json:server.LivingEntityAttributesMixin from mod tipsylib,pl:mixin:APP:tipsylib.mixins.json:server.LivingEntityEffectsMixin from mod tipsylib,pl:mixin:APP:pehkui.mixins.json:LivingEntityMixin from mod pehkui,pl:mixin:APP:pehkui.mixins.json:compat117plus.LivingEntityMixin from mod pehkui,pl:mixin:APP:pehkui.mixins.json:compat1194plus.LivingEntityMixin from mod pehkui,pl:mixin:APP:pehkui.mixins.json:compat1204minus.LivingEntityMixin from mod pehkui,pl:mixin:APP:caelus.mixins.json:MixinLivingEntity from mod caelus,pl:mixin:APP:simply_swords_overhaul.mixins.json:MixinLivingEntity from mod simply_swords_overhaul,pl:mixin:APP:idas.mixins.json:LabyrinthBossKilledMixin from mod idas,pl:mixin:APP:citadel.mixins.json:LivingEntityMixin from mod citadel,pl:mixin:APP:bookshelf.common.mixins.json:accessors.entity.AccessorLivingEntity from mod bookshelf,pl:mixin:APP:bookshelf.common.mixins.json:patches.entity.MixinLivingEntity from mod bookshelf,pl:mixin:APP:dummmmmmy-common.mixins.json:LivingEntityMixin from mod dummmmmmy,pl:mixin:APP:cataclysm.mixins.json:LivingEntityMixin from mod cataclysm,pl:mixin:APP:fabric-lifecycle-events-v1.mixins.json:LivingEntityMixin from mod fabric_lifecycle_events_v1,pl:mixin:APP:soulsweapons.mixins.json:LivingEntityInvoker from mod soulsweapons,pl:mixin:APP:soulsweapons.mixins.json:LivingEntityMixin from mod soulsweapons,pl:mixin:APP:endergetic.mixins.json:LivingEntityMixin from mod endergetic,pl:mixin:APP:friendsandfoes-common.mixins.json:BlazeLivingEntityMixin from mod friendsandfoes,pl:mixin:APP:friendsandfoes-common.mixins.json:LivingEntityMixin from mod friendsandfoes,pl:mixin:APP:simplyswords-common.mixins.json:LivingEntityMixin from mod simplyswords,pl:mixin:APP:knavesneeds-common.mixins.json:LivingEntityMixin from mod knavesneeds,pl:mixin:APP:justleveling.mixins.json:MixLivingEntity from mod justleveling,pl:mixin:APP:skilltree.mixins.json:minecraft/LivingEntityMixin from mod skilltree,pl:mixin:APP:skilltree.mixins.json:LivingEntityAccessor from mod skilltree,pl:mixin:APP:quark.mixins.json:accessor.AccessorLivingEntity from mod quark,pl:mixin:APP:supplementaries-common.mixins.json:LivingEntityAccessor from mod supplementaries,pl:mixin:APP:supplementaries-common.mixins.json:LivingEntityMixin from mod supplementaries,pl:mixin:APP:supplementaries.mixins.json:LivingEntityMixin from mod supplementaries,pl:mixin:APP:mixins.irons_spellbooks.json:LivingEntityMixin from mod irons_spellbooks,pl:mixin:APP:additional_attributes.mixins.json:LivingEntityMixin from mod additional_attributes,pl:mixin:APP:particle_effects.mixins.json:LivingEntityMixin from mod particle_effects,pl:mixin:APP:improvedmobs.mixins.json:LivingEntityMixin from mod improvedmobs,pl:mixin:APP:mixins.epicfight.json:MixinLivingEntity from mod epicfight,pl:mixin:APP:create.mixins.json:CustomItemUseEffectsMixin from mod create,pl:mixin:APP:create.mixins.json:LavaSwimmingMixin from mod create,pl:mixin:APP:create.mixins.json:accessor.LivingEntityAccessor from mod create,pl:mixin:APP:pehkui.mixins.json:compat115plus.LivingEntityMixin from mod pehkui,pl:mixin:APP:obscure_api.mixins.json:LivingEntityMixin from mod obscure_api,pl:mixin:APP:maxhealthfix.common.mixins.json:MixinLivingEntity from mod maxhealthfix,pl:mixin:APP:openpartiesandclaims.mixins.json:MixinLivingEntity from mod openpartiesandclaims,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.world.entity.Mob.m_8119_(Mob.java:337) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,pl:accesstransformer:B,pl:connector_pre_launch:A,re:computing_frames,pl:accesstransformer:B,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.redirected_forge_1.20.1.json:net.minecraft.world.entity.MobMixin from mod redirected,pl:mixin:APP:subtle_effects.mixins.json:common.MobMixin from mod subtle_effects,pl:mixin:APP:fabric-entity-events-v1.mixins.json:MobEntityMixin from mod fabric_entity_events_v1,pl:mixin:APP:lithium.mixins.json:entity.inactive_navigations.MobEntityMixin from mod radium,pl:mixin:APP:lithium.mixins.json:entity.skip_equipment_change_check.MobEntityMixin from mod radium,pl:mixin:APP:pehkui.mixins.json:MobEntityMixin from mod pehkui,pl:mixin:APP:bookshelf.common.mixins.json:accessors.entity.AccessorMob from mod bookshelf,pl:mixin:APP:despawn_tweaker.mixins.json:MobMixin from mod despawn_tweaker,pl:mixin:APP:otherworldapoth.mixins.json:MobMixin from mod otherworldapoth,pl:mixin:APP:letmedespawn.mixins.json:MobMixin from mod letmedespawn,pl:mixin:APP:endergetic.mixins.json:MobMixin from mod endergetic,pl:mixin:APP:moonlight-common.mixins.json:EntityMixin from mod moonlight,pl:mixin:APP:improvedmobs.mixins.json:MobEntityMixin from mod improvedmobs,pl:mixin:APP:improvedmobs.mixins.json:MobMixin from mod improvedmobs,pl:mixin:APP:mixins.epicfight.json:MixinMob from mod epicfight,pl:mixin:APP:pehkui.mixins.json:compat116plus.MobEntityMixin from mod pehkui,pl:mixin:APP:openpartiesandclaims.forge.mixins.json:MixinForgeMob from mod openpartiesandclaims,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.world.entity.monster.Zombie.m_8119_(Zombie.java:210) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,xf:fml:forge:forge_method_redirector,pl:connector_pre_launch:A,re:classloading,xf:fml:forge:forge_method_redirector,pl:mixin:APP:pehkui.mixins.json:compat1201minus.EntityVehicleHeightOffsetMixin from mod pehkui,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.server.level.ServerLevel.m_8647_(ServerLevel.java:694) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:libx:level_load,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,xf:fml:libx:level_load,pl:mixin:APP:cupboard.mixins.json:ServerAddEntityMixin from mod cupboard,pl:mixin:APP:betterendisland.mixins.json:ServerLevelMixin from mod betterendisland,pl:mixin:APP:modernfix-common.mixins.json:bugfix.chunk_deadlock.ServerLevelMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.faster_structure_location.ServerLevelMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.cache_strongholds.ServerLevelMixin from mod modernfix,pl:mixin:APP:projectile_damage.mixins.json:ServerWorldMixin from mod projectile_damage,pl:mixin:APP:ysns.mixins.json:ServerWorldMixin from mod ysns,pl:mixin:APP:lithium.mixins.json:alloc.chunk_random.ServerWorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:chunk.entity_class_groups.ServerWorldAccessor from mod radium,pl:mixin:APP:lithium.mixins.json:entity.inactive_navigations.ServerWorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:profiler.ServerWorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:util.entity_movement_tracking.ServerWorldAccessor from mod radium,pl:mixin:APP:pehkui.mixins.json:compat117plus.ServerWorldMixin from mod pehkui,pl:mixin:APP:immersive_weathering-common.mixins.json:ServerLevelMixin from mod immersive_weathering,pl:mixin:APP:immersive_optimization.mixins.json:ServerLevelAccessor from mod immersive_optimization,pl:mixin:APP:immersive_optimization.mixins.json:ServerLevelMixin from mod immersive_optimization,pl:mixin:APP:neruina.mixins.json:catchers.ServerWorldMixin from mod neruina,pl:mixin:APP:idas.mixins.json:ServerLevelMixin from mod idas,pl:mixin:APP:corgilib-common.mixins.json:MixinServerLevel from mod corgilib,pl:mixin:APP:citadel.mixins.json:ServerLevelMixin from mod citadel,pl:mixin:APP:fabric-data-attachment-api-v1.mixins.json:ServerWorldMixin from mod fabric_data_attachment_api_v1,pl:mixin:APP:fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin from mod fabric_api_lookup_api_v1,pl:mixin:APP:dataanchor-common.mixins.json:ServerLevelMixin from mod dataanchor,pl:mixin:APP:fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod fabric_lifecycle_events_v1,pl:mixin:APP:blueprint.mixins.json:ServerLevelMixin from mod blueprint,pl:mixin:APP:endergetic.mixins.json:ServerLevelMixin from mod endergetic,pl:mixin:APP:friendsandfoes-common.mixins.json:ServerWorldAccessor from mod friendsandfoes,pl:mixin:APP:friendsandfoes-common.mixins.json:ServerWorldMixin from mod friendsandfoes,pl:mixin:APP:moonlight-common.mixins.json:ServerLevelMixin from mod moonlight,pl:mixin:APP:supplementaries-common.mixins.json:ServerLevelMixin from mod supplementaries,pl:mixin:APP:create.mixins.json:accessor.ServerLevelAccessor from mod create,pl:mixin:APP:betterendisland.mixins.json:EndergeticExpansionMixins from mod betterendisland,pl:mixin:APP:openpartiesandclaims.mixins.json:MixinServerLevel from mod openpartiesandclaims,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.world.level.Level.mixinextras$bridge$accept$186(Level.java) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,pl:accesstransformer:B,pl:connector_pre_launch:A,re:computing_frames,pl:accesstransformer:B,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.redirected_forge_1.20.1.json:forge.net.minecraft.world.level.LevelMixin from mod redirected,pl:mixin:APP:lithium.mixins.json:alloc.chunk_random.WorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:entity.collisions.intersection.WorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:util.block_entity_retrieval.WorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:util.block_tracking.block_listening.WorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:world.chunk_access.WorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:world.inline_block_access.WorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:world.inline_height.WorldMixin from mod radium,pl:mixin:APP:immersive_optimization.mixins.json:LevelMixin from mod immersive_optimization,pl:mixin:APP:alltheleaks.mixins.json:main.LevelMixin from mod alltheleaks,pl:mixin:APP:citadel.mixins.json:LevelMixin from mod citadel,pl:mixin:APP:fabric-data-attachment-api-v1.mixins.json:AttachmentTargetsMixin from mod fabric_data_attachment_api_v1,pl:mixin:APP:dataanchor-common.mixins.json:LevelMixin from mod dataanchor,pl:mixin:APP:fabric-lifecycle-events-v1.mixins.json:WorldMixin from mod fabric_lifecycle_events_v1,pl:mixin:APP:neruina.mixins.json:catchers.WorldMixin from mod neruina,pl:mixin:APP:openpartiesandclaims.mixins.json:MixinLevel from mod openpartiesandclaims,pl:mixin:A,pl:connector_pre_launch:A}         at com.bawnorton.neruina.handler.TickHandler.safelyTickEntities(TickHandler.java:92) ~[Neruina-2.1.2-forge+1.20.1.jar%23574!/:?] {re:mixin,re:classloading}         at net.minecraft.world.level.Level.wrapOperation$cgb000$neruina$catchTickingEntities$notTheCauseOfTickLag(Level.java:8040) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,pl:accesstransformer:B,pl:connector_pre_launch:A,re:computing_frames,pl:accesstransformer:B,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.redirected_forge_1.20.1.json:forge.net.minecraft.world.level.LevelMixin from mod redirected,pl:mixin:APP:lithium.mixins.json:alloc.chunk_random.WorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:entity.collisions.intersection.WorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:util.block_entity_retrieval.WorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:util.block_tracking.block_listening.WorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:world.chunk_access.WorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:world.inline_block_access.WorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:world.inline_height.WorldMixin from mod radium,pl:mixin:APP:immersive_optimization.mixins.json:LevelMixin from mod immersive_optimization,pl:mixin:APP:alltheleaks.mixins.json:main.LevelMixin from mod alltheleaks,pl:mixin:APP:citadel.mixins.json:LevelMixin from mod citadel,pl:mixin:APP:fabric-data-attachment-api-v1.mixins.json:AttachmentTargetsMixin from mod fabric_data_attachment_api_v1,pl:mixin:APP:dataanchor-common.mixins.json:LevelMixin from mod dataanchor,pl:mixin:APP:fabric-lifecycle-events-v1.mixins.json:WorldMixin from mod fabric_lifecycle_events_v1,pl:mixin:APP:neruina.mixins.json:catchers.WorldMixin from mod neruina,pl:mixin:APP:openpartiesandclaims.mixins.json:MixinLevel from mod openpartiesandclaims,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.world.level.Level.m_46653_(Level.java:479) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,pl:accesstransformer:B,pl:connector_pre_launch:A,re:computing_frames,pl:accesstransformer:B,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.redirected_forge_1.20.1.json:forge.net.minecraft.world.level.LevelMixin from mod redirected,pl:mixin:APP:lithium.mixins.json:alloc.chunk_random.WorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:entity.collisions.intersection.WorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:util.block_entity_retrieval.WorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:util.block_tracking.block_listening.WorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:world.chunk_access.WorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:world.inline_block_access.WorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:world.inline_height.WorldMixin from mod radium,pl:mixin:APP:immersive_optimization.mixins.json:LevelMixin from mod immersive_optimization,pl:mixin:APP:alltheleaks.mixins.json:main.LevelMixin from mod alltheleaks,pl:mixin:APP:citadel.mixins.json:LevelMixin from mod citadel,pl:mixin:APP:fabric-data-attachment-api-v1.mixins.json:AttachmentTargetsMixin from mod fabric_data_attachment_api_v1,pl:mixin:APP:dataanchor-common.mixins.json:LevelMixin from mod dataanchor,pl:mixin:APP:fabric-lifecycle-events-v1.mixins.json:WorldMixin from mod fabric_lifecycle_events_v1,pl:mixin:APP:neruina.mixins.json:catchers.WorldMixin from mod neruina,pl:mixin:APP:openpartiesandclaims.mixins.json:MixinLevel from mod openpartiesandclaims,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.server.level.ServerLevel.m_184063_(ServerLevel.java:343) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:libx:level_load,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,xf:fml:libx:level_load,pl:mixin:APP:cupboard.mixins.json:ServerAddEntityMixin from mod cupboard,pl:mixin:APP:betterendisland.mixins.json:ServerLevelMixin from mod betterendisland,pl:mixin:APP:modernfix-common.mixins.json:bugfix.chunk_deadlock.ServerLevelMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.faster_structure_location.ServerLevelMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.cache_strongholds.ServerLevelMixin from mod modernfix,pl:mixin:APP:projectile_damage.mixins.json:ServerWorldMixin from mod projectile_damage,pl:mixin:APP:ysns.mixins.json:ServerWorldMixin from mod ysns,pl:mixin:APP:lithium.mixins.json:alloc.chunk_random.ServerWorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:chunk.entity_class_groups.ServerWorldAccessor from mod radium,pl:mixin:APP:lithium.mixins.json:entity.inactive_navigations.ServerWorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:profiler.ServerWorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:util.entity_movement_tracking.ServerWorldAccessor from mod radium,pl:mixin:APP:pehkui.mixins.json:compat117plus.ServerWorldMixin from mod pehkui,pl:mixin:APP:immersive_weathering-common.mixins.json:ServerLevelMixin from mod immersive_weathering,pl:mixin:APP:immersive_optimization.mixins.json:ServerLevelAccessor from mod immersive_optimization,pl:mixin:APP:immersive_optimization.mixins.json:ServerLevelMixin from mod immersive_optimization,pl:mixin:APP:neruina.mixins.json:catchers.ServerWorldMixin from mod neruina,pl:mixin:APP:idas.mixins.json:ServerLevelMixin from mod idas,pl:mixin:APP:corgilib-common.mixins.json:MixinServerLevel from mod corgilib,pl:mixin:APP:citadel.mixins.json:ServerLevelMixin from mod citadel,pl:mixin:APP:fabric-data-attachment-api-v1.mixins.json:ServerWorldMixin from mod fabric_data_attachment_api_v1,pl:mixin:APP:fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin from mod fabric_api_lookup_api_v1,pl:mixin:APP:dataanchor-common.mixins.json:ServerLevelMixin from mod dataanchor,pl:mixin:APP:fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod fabric_lifecycle_events_v1,pl:mixin:APP:blueprint.mixins.json:ServerLevelMixin from mod blueprint,pl:mixin:APP:endergetic.mixins.json:ServerLevelMixin from mod endergetic,pl:mixin:APP:friendsandfoes-common.mixins.json:ServerWorldAccessor from mod friendsandfoes,pl:mixin:APP:friendsandfoes-common.mixins.json:ServerWorldMixin from mod friendsandfoes,pl:mixin:APP:moonlight-common.mixins.json:ServerLevelMixin from mod moonlight,pl:mixin:APP:supplementaries-common.mixins.json:ServerLevelMixin from mod supplementaries,pl:mixin:APP:create.mixins.json:accessor.ServerLevelAccessor from mod create,pl:mixin:APP:betterendisland.mixins.json:EndergeticExpansionMixins from mod betterendisland,pl:mixin:APP:openpartiesandclaims.mixins.json:MixinServerLevel from mod openpartiesandclaims,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.world.level.entity.EntityTickList.m_156910_(EntityTickList.java:54) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,pl:connector_pre_launch:A,re:classloading,pl:mixin:APP:lithium.mixins.json:collections.entity_ticking.EntityListMixin from mod radium,pl:mixin:APP:immersive_optimization.mixins.json:EntityTickListAccessor from mod immersive_optimization,pl:mixin:APP:alltheleaks.mixins.json:main.EntityTickListMixin from mod alltheleaks,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.server.level.ServerLevel.m_8793_(ServerLevel.java:323) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:libx:level_load,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,xf:fml:libx:level_load,pl:mixin:APP:cupboard.mixins.json:ServerAddEntityMixin from mod cupboard,pl:mixin:APP:betterendisland.mixins.json:ServerLevelMixin from mod betterendisland,pl:mixin:APP:modernfix-common.mixins.json:bugfix.chunk_deadlock.ServerLevelMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.faster_structure_location.ServerLevelMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.cache_strongholds.ServerLevelMixin from mod modernfix,pl:mixin:APP:projectile_damage.mixins.json:ServerWorldMixin from mod projectile_damage,pl:mixin:APP:ysns.mixins.json:ServerWorldMixin from mod ysns,pl:mixin:APP:lithium.mixins.json:alloc.chunk_random.ServerWorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:chunk.entity_class_groups.ServerWorldAccessor from mod radium,pl:mixin:APP:lithium.mixins.json:entity.inactive_navigations.ServerWorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:profiler.ServerWorldMixin from mod radium,pl:mixin:APP:lithium.mixins.json:util.entity_movement_tracking.ServerWorldAccessor from mod radium,pl:mixin:APP:pehkui.mixins.json:compat117plus.ServerWorldMixin from mod pehkui,pl:mixin:APP:immersive_weathering-common.mixins.json:ServerLevelMixin from mod immersive_weathering,pl:mixin:APP:immersive_optimization.mixins.json:ServerLevelAccessor from mod immersive_optimization,pl:mixin:APP:immersive_optimization.mixins.json:ServerLevelMixin from mod immersive_optimization,pl:mixin:APP:neruina.mixins.json:catchers.ServerWorldMixin from mod neruina,pl:mixin:APP:idas.mixins.json:ServerLevelMixin from mod idas,pl:mixin:APP:corgilib-common.mixins.json:MixinServerLevel from mod corgilib,pl:mixin:APP:citadel.mixins.json:ServerLevelMixin from mod citadel,pl:mixin:APP:fabric-data-attachment-api-v1.mixins.json:ServerWorldMixin from mod fabric_data_attachment_api_v1,pl:mixin:APP:fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin from mod fabric_api_lookup_api_v1,pl:mixin:APP:dataanchor-common.mixins.json:ServerLevelMixin from mod dataanchor,pl:mixin:APP:fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin from mod fabric_lifecycle_events_v1,pl:mixin:APP:blueprint.mixins.json:ServerLevelMixin from mod blueprint,pl:mixin:APP:endergetic.mixins.json:ServerLevelMixin from mod endergetic,pl:mixin:APP:friendsandfoes-common.mixins.json:ServerWorldAccessor from mod friendsandfoes,pl:mixin:APP:friendsandfoes-common.mixins.json:ServerWorldMixin from mod friendsandfoes,pl:mixin:APP:moonlight-common.mixins.json:ServerLevelMixin from mod moonlight,pl:mixin:APP:supplementaries-common.mixins.json:ServerLevelMixin from mod supplementaries,pl:mixin:APP:create.mixins.json:accessor.ServerLevelAccessor from mod create,pl:mixin:APP:betterendisland.mixins.json:EndergeticExpansionMixins from mod betterendisland,pl:mixin:APP:openpartiesandclaims.mixins.json:MixinServerLevel from mod openpartiesandclaims,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.server.MinecraftServer.m_5703_(MinecraftServer.java:893) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,pl:accesstransformer:B,pl:connector_pre_launch:A,re:computing_frames,pl:accesstransformer:B,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.MinecraftServerMixin from mod modernfix,pl:mixin:APP:openpartiesandclaims.mixins.json:MixinMinecraftServer from mod openpartiesandclaims,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin from mod modernfix,pl:mixin:APP:modernfix-forge.mixins.json:core.MinecraftServerMixin from mod modernfix,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin from mod balm,pl:mixin:APP:fastload.mixins.json:server.MinecraftServerMixin from mod fastload,pl:mixin:APP:immersive_optimization.mixins.json:MinecraftServerMixin from mod immersive_optimization,pl:mixin:APP:neruina.mixins.json:MinecraftServerMixin from mod neruina,pl:mixin:APP:alltheleaks.mixins.json:main.MinecraftServerMixin from mod alltheleaks,pl:mixin:APP:xaerohud.mixins.json:MixinMinecraftServer from mod xaerominimap,pl:mixin:APP:fabric-message-api-v1.mixins.json:MinecraftServerMixin from mod fabric_message_api_v1,pl:mixin:APP:structureessentials.mixins.json:LevelCreatedCallback from mod structureessentials,pl:mixin:APP:xaeroworldmap.mixins.json:MixinMinecraftServer from mod xaeroworldmap,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin from mod citadel,pl:mixin:APP:connectormod.mixins.json:registries.MinecraftServerMixin from mod connectormod,pl:mixin:APP:fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric_lifecycle_events_v1,pl:mixin:APP:fabric-resource-loader-v0.mixins.json:MinecraftServerMixin from mod fabric_resource_loader_v0,pl:mixin:APP:settlement-roads.mixins.json:ExampleMixin from mod settlement_roads,pl:mixin:APP:blueprint.mixins.json:MinecraftServerMixin from mod blueprint,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.server.dedicated.DedicatedServer.m_5703_(DedicatedServer.java:283) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,pl:accesstransformer:B,pl:connector_pre_launch:A,re:computing_frames,pl:accesstransformer:B,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:blueprint.mixins.json:DedicatedServerMixin from mod blueprint,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.server.MinecraftServer.m_5705_(MinecraftServer.java:814) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,pl:accesstransformer:B,pl:connector_pre_launch:A,re:computing_frames,pl:accesstransformer:B,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.MinecraftServerMixin from mod modernfix,pl:mixin:APP:openpartiesandclaims.mixins.json:MixinMinecraftServer from mod openpartiesandclaims,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin from mod modernfix,pl:mixin:APP:modernfix-forge.mixins.json:core.MinecraftServerMixin from mod modernfix,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin from mod balm,pl:mixin:APP:fastload.mixins.json:server.MinecraftServerMixin from mod fastload,pl:mixin:APP:immersive_optimization.mixins.json:MinecraftServerMixin from mod immersive_optimization,pl:mixin:APP:neruina.mixins.json:MinecraftServerMixin from mod neruina,pl:mixin:APP:alltheleaks.mixins.json:main.MinecraftServerMixin from mod alltheleaks,pl:mixin:APP:xaerohud.mixins.json:MixinMinecraftServer from mod xaerominimap,pl:mixin:APP:fabric-message-api-v1.mixins.json:MinecraftServerMixin from mod fabric_message_api_v1,pl:mixin:APP:structureessentials.mixins.json:LevelCreatedCallback from mod structureessentials,pl:mixin:APP:xaeroworldmap.mixins.json:MixinMinecraftServer from mod xaeroworldmap,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin from mod citadel,pl:mixin:APP:connectormod.mixins.json:registries.MinecraftServerMixin from mod connectormod,pl:mixin:APP:fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric_lifecycle_events_v1,pl:mixin:APP:fabric-resource-loader-v0.mixins.json:MinecraftServerMixin from mod fabric_resource_loader_v0,pl:mixin:APP:settlement-roads.mixins.json:ExampleMixin from mod settlement_roads,pl:mixin:APP:blueprint.mixins.json:MinecraftServerMixin from mod blueprint,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:661) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,pl:accesstransformer:B,pl:connector_pre_launch:A,re:computing_frames,pl:accesstransformer:B,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.MinecraftServerMixin from mod modernfix,pl:mixin:APP:openpartiesandclaims.mixins.json:MixinMinecraftServer from mod openpartiesandclaims,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin from mod modernfix,pl:mixin:APP:modernfix-forge.mixins.json:core.MinecraftServerMixin from mod modernfix,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin from mod balm,pl:mixin:APP:fastload.mixins.json:server.MinecraftServerMixin from mod fastload,pl:mixin:APP:immersive_optimization.mixins.json:MinecraftServerMixin from mod immersive_optimization,pl:mixin:APP:neruina.mixins.json:MinecraftServerMixin from mod neruina,pl:mixin:APP:alltheleaks.mixins.json:main.MinecraftServerMixin from mod alltheleaks,pl:mixin:APP:xaerohud.mixins.json:MixinMinecraftServer from mod xaerominimap,pl:mixin:APP:fabric-message-api-v1.mixins.json:MinecraftServerMixin from mod fabric_message_api_v1,pl:mixin:APP:structureessentials.mixins.json:LevelCreatedCallback from mod structureessentials,pl:mixin:APP:xaeroworldmap.mixins.json:MixinMinecraftServer from mod xaeroworldmap,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin from mod citadel,pl:mixin:APP:connectormod.mixins.json:registries.MinecraftServerMixin from mod connectormod,pl:mixin:APP:fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric_lifecycle_events_v1,pl:mixin:APP:fabric-resource-loader-v0.mixins.json:MinecraftServerMixin from mod fabric_resource_loader_v0,pl:mixin:APP:settlement-roads.mixins.json:ExampleMixin from mod settlement_roads,pl:mixin:APP:blueprint.mixins.json:MinecraftServerMixin from mod blueprint,pl:mixin:A,pl:connector_pre_launch:A}         at net.minecraft.server.MinecraftServer.m_206580_(MinecraftServer.java:251) ~[server-1.20.1-20230612.114412-srg.jar%23665!/:?] {re:mixin,pl:accesstransformer:B,pl:connector_pre_launch:A,re:computing_frames,pl:accesstransformer:B,pl:connector_pre_launch:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.fix_loop_spin_waiting.MinecraftServerMixin from mod modernfix,pl:mixin:APP:openpartiesandclaims.mixins.json:MixinMinecraftServer from mod openpartiesandclaims,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin from mod modernfix,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin from mod modernfix,pl:mixin:APP:modernfix-forge.mixins.json:core.MinecraftServerMixin from mod modernfix,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin from mod balm,pl:mixin:APP:fastload.mixins.json:server.MinecraftServerMixin from mod fastload,pl:mixin:APP:immersive_optimization.mixins.json:MinecraftServerMixin from mod immersive_optimization,pl:mixin:APP:neruina.mixins.json:MinecraftServerMixin from mod neruina,pl:mixin:APP:alltheleaks.mixins.json:main.MinecraftServerMixin from mod alltheleaks,pl:mixin:APP:xaerohud.mixins.json:MixinMinecraftServer from mod xaerominimap,pl:mixin:APP:fabric-message-api-v1.mixins.json:MinecraftServerMixin from mod fabric_message_api_v1,pl:mixin:APP:structureessentials.mixins.json:LevelCreatedCallback from mod structureessentials,pl:mixin:APP:xaeroworldmap.mixins.json:MixinMinecraftServer from mod xaeroworldmap,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin from mod citadel,pl:mixin:APP:connectormod.mixins.json:registries.MinecraftServerMixin from mod connectormod,pl:mixin:APP:fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin from mod fabric_lifecycle_events_v1,pl:mixin:APP:fabric-resource-loader-v0.mixins.json:MinecraftServerMixin from mod fabric_resource_loader_v0,pl:mixin:APP:settlement-roads.mixins.json:ExampleMixin from mod settlement_roads,pl:mixin:APP:blueprint.mixins.json:MinecraftServerMixin from mod blueprint,pl:mixin:A,pl:connector_pre_launch:A}         at java.lang.Thread.run(Thread.java:840) ~[?:?] {re:mixin}   I dont know what mod isnt working
    • Remove entity_model_features_1.20.1-forge-3.0.1.jar from your mods folder. If there are other mods that depend on that mod, you may have to remove them also.
    • as I wrote earlier when entering the Aternos server, minecraft crashes when re-entering the server and I can not solve this problem, I made my own assembly on minecraft 1.20.1 Forge (47.4.0) checked everything and everything worked after that I downloaded all the mods on Aternos having previously configured and after that everything worked, I played on the server with friends for a whole week and no problems arose but literally when we again gathered to play minecraft with me with a friend who also uses TLaucher after launching minecraft some kind of loading began we did not pay attention to it but still it confused us a little after launching minecraft and the server on Aternos we began to connect to the server but the problems began already at the first entry, minecraft hung on the screen of connecting to the world and a window appeared with a notification that minecraft is not responding but on the server it displayed our presence after we restarted minecraft I decided to connect first but the result was the same then we restarted server and I started connecting first again and this time I managed to enter the server but my friend couldn't do it after that I decided to check what would happen if I entered the server again and when I did it the situation repeated itself as the first time then I restarted the server again and tried to enter and I succeeded again then I tried to play on the server and everything worked but when I tried to die and appear on the bed then after death when I pressed the revival button I appeared near the bed and at that very moment the game froze again and minecraft stopped responding all this time the server was working and I thought that there was an error on the client side and I reinstalled the mods in my minecraft folder but everything was the same as before I tried to delete all the client mods and enter the server but everything was useless I tried to enter the single world in minecraft and everything worked fine I thought that this was a TLauncher problem but my other friend who has the official launcher has the same thing when entering the server minecraft stops responding I don't know what to do I want to ask for help maybe someone has encountered I have already made custom builds and made a server with them before, but this is the first time I have encountered such a problem, I looked at the logs, but to be honest I don’t really understand them and I don’t know where to look for an error, please help, I will attach the log and the names of the mods on the server and client below   Server mods______________________________________________________ [1.20.1] SecurityCraft v1.10.0.1.jar ad_astra-forge-1.20.1-1.15.20.jar alexscaves-2.0.2.jar amendments-1.20-2.2.1.jar Apotheosis-1.20.1-7.4.8.jar ApothicAttributes-1.20.1-1.3.7.jar architectury-9.2.14-forge.jar Armor of the Ages-forge-1.20.1-1.3.8.jar ars_elemental-1.20.1-0.6.7.8.jar ars_nouveau-1.20.1-4.12.7-all.jar AttributeFix-Forge-1.20.1-21.0.4.jar backpacked-forge-1.20.1-3.0.0-beta.9.jar BiomesOPlenty-forge-1.20.1-19.0.0.96.jar botarium-forge-1.20.1-2.3.4.jar Bountiful-6.0.4+1.20.1-forge.jar caelus-forge-3.2.0+1.20.1.jar Chunky-1.3.146.jar citadel-2.6.2-1.20.1.jar cloth-config-11.1.136-forge.jar Clumps-forge-1.20.1-12.0.0.4.jar create-1.20.1-6.0.6.jar create-musketmod-1.20.1-forge-1.5.2.jar create_radar-0.3.1+mc1.20.1-all.jar createbigcannons-5.9.1-mc.1.20.1-forge.jar createdeco-2.0.3-1.20.1-forge.jar createdieselgenerators-1.20.1-1.3.5.jar CreativeCore_FORGE_v2.12.32_mc1.20.1.jar cupboard-1.20.1-2.7.jar curios-forge-5.14.1+1.20.1.jar Dave's Potioneering-forge-1.20.1-13.jar FarmersDelight-1.20.1-1.2.9.jar Fastload-Reforged-mc1.20.1-3.4.0.jar Female-Gender-Mod-forge-1.20.1-3.1.jar ferritecore-6.0.1-forge.jar FramedBlocks-9.4.2.jar framework-forge-1.20.1-0.7.15.jar geckolib-forge-1.20.1-4.7.4.jar GlitchCore-forge-1.20.1-0.0.1.1.jar HangGlider-v8.0.1-1.20.1-Forge.jar ibo-3.0.0-forge-1.19.3.jar  (Incendium: Biomes Only) full name iceandfire-2.1.13-1.20.1-beta-5.jar ▸ immersive_aircraft-1.3.3+1.20.1-forge.jar Incendium_1.20.x_v5.3.5.jar ItemPhysic_FORGE_v1.8.8_mc1.20.1.jar ItemProductionLib-1.20.1-1.0.2a-all.jar jei-1.20.1-forge-15.20.0.112.jar Kambrik-6.1.1+1.20.1-forge.jar kotlinforforge-4.11.0-all.jar letsdo-API-forge-1.2.15-forge.jar letsdo-brewery-forge-1.1.9.jar letsdo-vinery-forge-1.4.40.jar lukis-grand-capitals-1.1.2.jar moonlight-1.20-2.16.8-forge.jar musketmod-1.20.1-forge-1.5.2.jar noisium-forge-2.3.0+mc1.20-1.20.1.jar origins-forge-1.20.1-1.10.0.9-all.jar Orva Alarms V4.0.0 - 1.20.1.jar PassiveSkillTree-1.20.1-BETA-0.6.14a-all.jar Placebo-1.20.1-8.6.3.jar PuzzlesLib-v8.1.33-1.20.1-Forge.jar resourcefulconfig-forge-1.20.1-2.1.3.jar resourcefullib-forge-1.20.1-2.1.29.jar ritchiesprojectilelib-2.1.0+mc.1.20.1-forge.jar SereneSeasons-forge-1.20.1-9.1.0.2.jar supplementaries-1.20-3.1.37.jar TerraBlender-forge-1.20.1-3.0.1.10.jar Terralith_1.20.x_v2.5.4.jar tfmg-1.0.2c.jar Underground Bunkers-1.0.5-1.20.x-forge.jar voicechat-forge-1.20.1-2.5.35.jar Xaeros_Minimap_25.2.10_Forge_1.20.jar XaerosWorldMap_1.39.12_Forge_1.20.jar yet_another_config_lib_v3-3.6.6+1.20.1-forge.jar _________________________________________________________________________________   client mod ___________________________________________________________________________________ Armor of the Ages-forge-1.20.1-1.3.8.jar" ars_elemental-1.20.1-0.6.7.8.jar" ars_nouveau-1.20.1-4.12.7-all.jar" AttributeFix-Forge-1.20.1-21.0.4.jar" backpacked-forge-1.20.1-3.0.0-beta.9.jar" BetterF3-7.0.2-Forge-1.20.1.jar" betterfpsdist-1.20.1-6.0.jar" BetterPingDisplay-1.20.1-1.1.jar" BiomesOPlenty-forge-1.20.1-19.0.0.96.jar" botarium-forge-1.20.1-2.3.4.jar" Bountiful-6.0.4+1.20.1-forge.jar" caelus-forge-3.2.0+1.20.1.jar" citadel-2.6.2-1.20.1.jar" cloth-config-11.1.136-forge.jar" Clumps-forge-1.20.1-12.0.0.4.jar" create_radar-0.3.1+mc1.20.1-all.jar" create-1.20.1-6.0.6.jar" createbigcannons-5.9.1-mc.1.20.1-forge.jar" createdeco-2.0.3-1.20.1-forge.jar" createdieselgenerators-1.20.1-1.3.5.jar" create-musketmod-1.20.1-forge-1.5.2.jar" CreativeCore_FORGE_v2.12.32_mc1.20.1.jar" cupboard-1.20.1-2.7.jar" curios-forge-5.14.1+1.20.1.jar" Dave's Potioneering-forge-1.20.1-13.jar" embeddium-0.3.31+mc1.20.1.jar" entityculling-forge-1.8.2-mc1.20.1.jar" FarmersDelight-1.20.1-1.2.9.jar" Fastload-Reforged-mc1.20.1-3.4.0.jar" Female-Gender-Mod-forge-1.20.1-3.1.jar" ferritecore-6.0.1-forge.jar" FramedBlocks-9.4.2.jar" framework-forge-1.20.1-0.7.15.jar" geckolib-forge-1.20.1-4.7.4.jar" GlitchCore-forge-1.20.1-0.0.1.1.jar" HangGlider-v8.0.1-1.20.1-Forge.jar" ibo-3.0.0-forge-1.19.3.jar"               (Incendium: Biomes Only) full name iceandfire-2.1.13-1.20.1-beta-5.jar" immersive_aircraft-1.3.3+1.20.1-forge.jar" Incendium_1.20.x_v5.3.5.jar" ItemPhysic_FORGE_v1.8.8_mc1.20.1.jar" ItemProductionLib-1.20.1-1.0.2a-all.jar" jei-1.20.1-forge-15.20.0.112.jar" Kambrik-6.1.1+1.20.1-forge.jar" kotlinforforge-4.11.0-all.jar" KryptonReforged-0.2.3.jar" letsdo-API-forge-1.2.15-forge.jar" letsdo-brewery-forge-1.1.9.jar" letsdo-vinery-forge-1.4.40.jar" lukis-grand-capitals-1.1.2.jar" moonlight-1.20-2.16.9-forge.jar" noisium-forge-2.3.0+mc1.20-1.20.1.jar" oculus-mc1.20.1-1.8.0.jar" origins-forge-1.20.1-1.10.0.9-all.jar" Orva Alarms V4.0.0 - 1.20.1.jar" PassiveSkillTree-1.20.1-BETA-0.6.14a-all.jar" Placebo-1.20.1-8.6.3.jar" PuzzlesLib-v8.1.33-1.20.1-Forge.jar" resourcefulconfig-forge-1.20.1-2.1.3.jar" resourcefullib-forge-1.20.1-2.1.29.jar" ritchiesprojectilelib-2.1.0+mc.1.20.1-forge.jar" rubidium-extra-0.5.4.4+mc1.20.1-build.131.jar" SereneSeasons-forge-1.20.1-9.1.0.2.jar" supplementaries-1.20-3.1.37.jar" TerraBlender-forge-1.20.1-3.0.1.10.jar" Terralith_1.20.x_v2.5.4.jar" tfmg-1.0.2c.jar" tl_skin_cape_forge_1.20.1-1.32.jar" tl_skin_cape_forge_1.20-1.36.jar" UndergroundBunkers-1.0.5-1.20.x-forge.jar" voicechat-forge-1.20.1-2.5.35.jar" Xaeros_Minimap_25.2.10_Forge_1.20.jar" XaerosWorldMap_1.39.12_Forge_1.20.jar" yet_another_config_lib_v3-3.6.6+1.20.1-forge.jar" [1.20.1] SecurityCraft v1.10.0.1.jar" ad_astra-forge-1.20.1-1.15.20.jar" alexscaves-2.0.2.jar" AmbientEnvironment-forge-1.20.1-11.0.0.1.jar" amendments-1.20-2.2.1.jar" Apotheosis-1.20.1-7.4.8.jar" ApothicAttributes-1.20.1-1.3.7.jar" architectury-9.2.14-forge.jar"   log ___________________________________________________________________________________________________________________________________________________________________________________________________ [17:47:04] [main/INFO]: ModLauncher running: args [--username, smivi, --version, Forge 1.20.1, --gameDir, C:\Users\Admin\AppData\Roaming\.minecraft, --assetsDir, C:\Users\Admin\AppData\Roaming\.minecraft\assets, --assetIndex, 5, --uuid, b849b978-182c-11eb-a3e3-d45d64bce613, --accessToken, ????????, --clientId, null, --xuid, null, --userType, mojang, --versionType, modified, --width, 925, --height, 530, --launchTarget, forgeclient, --fml.forgeVersion, 47.4.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [17:47:04] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.15 by Microsoft; OS Windows 10 arch amd64 version 10.0 [17:47:05] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [17:47:05] [main/INFO]: Trying GL version 4.6 [17:47:05] [main/INFO]: Requested GL version 4.6 got version 4.6 [17:47:05] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/Admin/AppData/Roaming/.minecraft/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [17:47:05] [pool-2-thread-1/INFO]: GL info: NVIDIA GeForce GTX 1660 SUPER/PCIe/SSE2 GL version 4.6.0 NVIDIA 560.94, NVIDIA Corporation [17:47:05] [main/INFO]: Found mod file [1.20.1] SecurityCraft v1.10.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file ad_astra-forge-1.20.1-1.15.20.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file alexscaves-2.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file AmbientEnvironment-forge-1.20.1-11.0.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file amendments-1.20-2.2.1.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file Apotheosis-1.20.1-7.4.8.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file ApothicAttributes-1.20.1-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file architectury-9.2.14-forge.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file Armor of the Ages-forge-1.20.1-1.3.8.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file ars_elemental-1.20.1-0.6.7.8.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file ars_nouveau-1.20.1-4.12.7-all.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file AttributeFix-Forge-1.20.1-21.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file backpacked-forge-1.20.1-3.0.0-beta.9.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file BetterF3-7.0.2-Forge-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file betterfpsdist-1.20.1-6.0.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file BetterPingDisplay-1.20.1-1.1.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file BiomesOPlenty-forge-1.20.1-19.0.0.96.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file botarium-forge-1.20.1-2.3.4.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file Bountiful-6.0.4+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file caelus-forge-3.2.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file citadel-2.6.2-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file cloth-config-11.1.136-forge.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file Clumps-forge-1.20.1-12.0.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file create-1.20.1-6.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file create-musketmod-1.20.1-forge-1.5.2.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file create_radar-0.3.1+mc1.20.1-all.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file createbigcannons-5.9.1-mc.1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file createdeco-2.0.3-1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file createdieselgenerators-1.20.1-1.3.5.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file CreativeCore_FORGE_v2.12.32_mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file cupboard-1.20.1-2.7.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file curios-forge-5.14.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file Dave's Potioneering-forge-1.20.1-13.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file entityculling-forge-1.8.2-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file FarmersDelight-1.20.1-1.2.9.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file Fastload-Reforged-mc1.20.1-3.4.0.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file Female-Gender-Mod-forge-1.20.1-3.1.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file ferritecore-6.0.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file FramedBlocks-9.4.2.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file framework-forge-1.20.1-0.7.15.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.7.4.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file GlitchCore-forge-1.20.1-0.0.1.1.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file HangGlider-v8.0.1-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file ibo-3.0.0-forge-1.19.3.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file iceandfire-2.1.13-1.20.1-beta-5.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file immersive_aircraft-1.3.3+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file Incendium_1.20.x_v5.3.5.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file ItemPhysic_FORGE_v1.8.8_mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file ItemProductionLib-1.20.1-1.0.2a-all.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file jei-1.20.1-forge-15.20.0.112.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [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\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file kotlinforforge-4.11.0-all.jar of type LIBRARY with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file KryptonReforged-0.2.3.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file letsdo-API-forge-1.2.15-forge.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file letsdo-brewery-forge-1.1.9.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file letsdo-vinery-forge-1.4.40.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file lukis-grand-capitals-1.1.2.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file moonlight-1.20-2.16.9-forge.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file noisium-forge-2.3.0+mc1.20-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file origins-forge-1.20.1-1.10.0.9-all.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file Orva Alarms V4.0.0 - 1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file PassiveSkillTree-1.20.1-BETA-0.6.14a-all.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file Placebo-1.20.1-8.6.3.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file PuzzlesLib-v8.1.33-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file resourcefulconfig-forge-1.20.1-2.1.3.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file resourcefullib-forge-1.20.1-2.1.29.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file ritchiesprojectilelib-2.1.0+mc.1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file SereneSeasons-forge-1.20.1-9.1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file supplementaries-1.20-3.1.37.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file TerraBlender-forge-1.20.1-3.0.1.10.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file Terralith_1.20.x_v2.5.4.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file tfmg-1.0.2c.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file tl_skin_cape_forge_1.20-1.36.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file tl_skin_cape_forge_1.20.1-1.32.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file UndergroundBunkers-1.0.5-1.20.x-forge.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file voicechat-forge-1.20.1-2.5.35.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file Xaeros_Minimap_25.2.10_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file XaerosWorldMap_1.39.12_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/INFO]: Found mod file yet_another_config_lib_v3-3.6.6+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Admin\AppData\Roaming\.minecraft\mods} [17:47:05] [main/WARN]: Mod file C:\Users\Admin\AppData\Roaming\.minecraft\libraries\net\minecraftforge\fmlcore\1.20.1-47.4.0\fmlcore-1.20.1-47.4.0.jar is missing mods.toml file [17:47:05] [main/WARN]: Mod file C:\Users\Admin\AppData\Roaming\.minecraft\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.4.0\javafmllanguage-1.20.1-47.4.0.jar is missing mods.toml file [17:47:05] [main/WARN]: Mod file C:\Users\Admin\AppData\Roaming\.minecraft\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.4.0\lowcodelanguage-1.20.1-47.4.0.jar is missing mods.toml file [17:47:05] [main/WARN]: Mod file C:\Users\Admin\AppData\Roaming\.minecraft\libraries\net\minecraftforge\mclanguage\1.20.1-47.4.0\mclanguage-1.20.1-47.4.0.jar is missing mods.toml file [17:47:06] [main/INFO]: Found mod file fmlcore-1.20.1-47.4.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@63718b93 [17:47:06] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@63718b93 [17:47:06] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@63718b93 [17:47:06] [main/INFO]: Found mod file mclanguage-1.20.1-47.4.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@63718b93 [17:47:06] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@63718b93 [17:47:06] [main/INFO]: Found mod file forge-1.20.1-47.4.0-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@63718b93 [17:47:06] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [17:47:06] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: geckolib. Using Mod File: C:\Users\Admin\AppData\Roaming\.minecraft\mods\geckolib-forge-1.20.1-4.7.4.jar [17:47:06] [main/INFO]: Found 32 dependencies adding them to mods collection [17:47:06] [main/INFO]: Found mod file jankson-1.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file mixinsquared-forge-0.1.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file additionalentityattributes-forge-1.4.0.5+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file common-io-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file kfflang-4.11.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file Registrate-MC1.20-1.3.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file Ponder-Forge-1.20.1-1.0.80.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file imageio-webp-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file json-0.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file calio-forge-1.20.1-1.11.0.5.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file TRender-1.0.5-1.20.1-forge-SNAPSHOT.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file kffmod-4.11.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file kfflib-4.11.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file apoli-forge-1.20.1-2.9.0.8.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file flywheel-forge-1.20.1-1.0.4.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file bytecodecs-1.0.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file common-image-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file imageio-core-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file MixinExtras-0.4.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file MixinSquared-0.1.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file mixinextras-forge-0.2.0-beta.8.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file common-lang-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file MathParser.org-mXparser-5.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file imageio-metadata-3.12.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file yabn-1.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file TRansition-1.0.3-1.20.1-forge-SNAPSHOT.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file caffeine-3.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file gson-0.2.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file puzzlesaccessapi-forge-20.1.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file jlayer-1.0.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:06] [main/INFO]: Found mod file commons-math3-3.6.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@2b10ace9 [17:47:08] [main/INFO]: Compatibility level set to JAVA_17 [17:47:08] [main/ERROR]: Mixin config musketmod.mixins.json does not specify "minVersion" property [17:47:08] [main/ERROR]: Mixin config yacl.mixins.json does not specify "minVersion" property [17:47:09] [main/INFO]: Successfully loaded Mixin Connector [org.tlauncher.MixinConnector] [17:47:09] [main/INFO]: Launching target 'forgeclient' with arguments [--version, Forge 1.20.1, --gameDir, C:\Users\Admin\AppData\Roaming\.minecraft, --assetsDir, C:\Users\Admin\AppData\Roaming\.minecraft\assets, --uuid, b849b978-182c-11eb-a3e3-d45d64bce613, --username, smivi, --assetIndex, 5, --accessToken, ????????, --clientId, null, --xuid, null, --userType, mojang, --versionType, modified, --width, 925, --height, 530] [17:47:09] [main/WARN]: Reference map 'puzzlesaccessapi.common.refmap.json' for puzzlesaccessapi.common.mixins.json could not be read. If this is a development environment you can ignore this message [17:47:09] [main/WARN]: Reference map 'Create-The_Factory_Must_Grow.refmap.json' for tfmg.mixins.json could not be read. If this is a development environment you can ignore this message [17:47:09] [main/INFO]: Loading 90 mods:     - ad_astra 1.15.20     - alexscaves 2.0.2     - ambientenvironment 11.0.0.1     - amendments 1.20-2.2.1     - apotheosis 7.4.8     - architectury 9.2.14     - armoroftheages 1.3.8     - ars_elemental 0.6.7.8     - ars_nouveau 4.12.7     - attributefix 21.0.4     - attributeslib 1.3.7     - backpacked 3.0.0-beta.9     - betterf3 7.0.2     - betterfpsdist 1.20.1-6.0     - betterpingdisplay 1.1     - biomesoplenty 19.0.0.96     - botarium 2.3.4     - bountiful 6.0.4+1.20.1     - brewery 1.1.9     - caelus 3.2.0+1.20.1     - citadel 2.6.2     - cloth_config 11.1.136     - clumps 12.0.0.4     - create 6.0.6         |-- flywheel 1.0.4         \-- ponder 1.0.80     - create_radar 0.3     - createbigcannons 5.9.1     - createdeco 2.0.3-1.20.1-forge     - createdieselgenerators 1.20.1-1.3.5     - creativecore 2.12.32     - cupboard 1.20.1-2.7     - curios 5.14.1+1.20.1     - davespotioneering 13     - doapi 1.2.15         \-- terraform 7.0.1     - entityculling 1.8.2         |-- transition 1.0.3         \-- trender 1.0.5     - farmersdelight 1.20.1-1.2.9     - fastload 3.4.0     - ferritecore 6.0.1     - forge 47.4.0     - framedblocks 9.4.2     - framework 0.7.15     - geckolib 4.7.4     - glitchcore 0.0.1.1     - hangglider 8.0.1     - ibo 3.0.0     - iceandfire 2.1.13-1.20.1     - immersive_aircraft 1.3.3+1.20.1     - incendium 5.3.5     - itemphysic 1.8.8     - itemproductionlib 1.0.2a     - jei 15.20.0.112     - kambrik 6.1.1+1.20.1     - kotlinforforge 4.11.0     - krypton 0.2.3     - minecraft 1.20.1     - moonlight 1.20-2.16.9     - mr_lukis_grandcapitals 1.1.2     - musketmod 1.5.2     - noisium 2.3.0+mc1.20-1.20.1     - origins 1.20.1-1.10.0.9         |-- additionalentityattributes 1.4.0.5+1.20.1         |-- apoli 1.20.1-2.9.0.8         |-- calio 1.20.1-1.11.0.5         \-- mixinextras 0.2.0-beta.8     - orva_alarms 1.0.0     - placebo 8.6.3     - puzzleslib 8.1.33         \-- puzzlesaccessapi 20.1.1     - resourcefulconfig 2.1.3     - resourcefullib 2.1.29     - ritchiesprojectilelib 2.1.0     - securitycraft 1.10.0.1     - sereneseasons 9.1.0.2     - skilltree 0.6.14a     - supplementaries 1.20-3.1.37         \-- mixinsquared 0.1.1     - terrablender 3.0.1.10     - terralith 2.5.4     - tfmg 1.0.2c     - tlskincape 1.36     - underground_bunkers 1.0.5     - vinery 1.4.40     - voicechat 1.20.1-2.5.35     - wildfire_gender 1.20.1-3.0.1     - xaerominimap 25.2.10     - xaeroworldmap 1.39.12     - yet_another_config_lib_v3 3.6.6+1.20.1-forge [17:47:09] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [17:47:09] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [17:47:09] [main/INFO]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/inventory/AnvilMenu [17:47:09] [main/WARN]: Error loading class: org/violetmoon/quark/content/tweaks/module/GoldToolsHaveFortuneModule (java.lang.ClassNotFoundException: org.violetmoon.quark.content.tweaks.module.GoldToolsHaveFortuneModule) [17:47:09] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [17:47:09] [main/INFO]: Patching IForgeItemStack#getEnchantmentLevel [17:47:09] [main/WARN]: Error loading class: org/violetmoon/quark/content/client/tooltip/AttributeTooltips (java.lang.ClassNotFoundException: org.violetmoon.quark.content.client.tooltip.AttributeTooltips) [17:47:10] [main/INFO]: Replaced 1 calls to Enchantment#getMaxLevel() in net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction [17:47:10] [main/INFO]: Replaced 1 calls to Enchantment#isDiscoverable() in net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction [17:47:10] [main/WARN]: Error loading class: fuzs/visualworkbench/world/inventory/ModCraftingMenu (java.lang.ClassNotFoundException: fuzs.visualworkbench.world.inventory.ModCraftingMenu) [17:47:10] [main/WARN]: @Mixin target fuzs.visualworkbench.world.inventory.ModCraftingMenu was not found itemproductionlib.mixins.json:visualworkbench/ModCraftingMenuMixin [17:47:10] [main/INFO]: Patching FishingHook#catchingFish [17:47:10] [main/WARN]: Error loading class: fuzs/easymagic/world/inventory/ModEnchantmentMenu (java.lang.ClassNotFoundException: fuzs.easymagic.world.inventory.ModEnchantmentMenu) [17:47:10] [main/WARN]: @Mixin target fuzs.easymagic.world.inventory.ModEnchantmentMenu was not found skilltree.mixins.json:easymagic/ModEnchantmentMenuMixin [17:47:10] [main/INFO]: Loaded config for: betterfpsdist.json [17:47:10] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/gui/SodiumGameOptionPages (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.gui.SodiumGameOptionPages) [17:47:10] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.gui.SodiumGameOptionPages was not found betterfpsdist.mixins.json:SodiumGameOptionPagesMixin [17:47:10] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/chunk/occlusion/OcclusionCuller (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.chunk.occlusion.OcclusionCuller) [17:47:10] [main/WARN]: @Mixin target me.jellysquid.mods.sodium.client.render.chunk.occlusion.OcclusionCuller was not found betterfpsdist.mixins.json:Sodiummixin [17:47:10] [main/WARN]: Error loading class: com/dsvv/cbcat/cannon/twin_autocannon/contraption/MountedTwinAutocannonContraption (java.lang.ClassNotFoundException: com.dsvv.cbcat.cannon.twin_autocannon.contraption.MountedTwinAutocannonContraption) [17:47:10] [main/WARN]: @Mixin target com.dsvv.cbcat.cannon.twin_autocannon.contraption.MountedTwinAutocannonContraption was not found create_radar.mixins.json:AutoCannonAccessor [17:47:10] [main/WARN]: Error loading class: com/dsvv/cbcat/cannon/heavy_autocannon/contraption/MountedHeavyAutocannonContraption (java.lang.ClassNotFoundException: com.dsvv.cbcat.cannon.heavy_autocannon.contraption.MountedHeavyAutocannonContraption) [17:47:10] [main/WARN]: @Mixin target com.dsvv.cbcat.cannon.heavy_autocannon.contraption.MountedHeavyAutocannonContraption was not found create_radar.mixins.json:AutoCannonAccessor [17:47:11] [main/WARN]: Error loading class: me/jellysquid/mods/sodium/client/render/chunk/compile/pipeline/FluidRenderer (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.chunk.compile.pipeline.FluidRenderer) [17:47:11] [main/WARN]: Error loading class: net/raphimc/immediatelyfast/feature/map_atlas_generation/MapAtlasTexture (java.lang.ClassNotFoundException: net.raphimc.immediatelyfast.feature.map_atlas_generation.MapAtlasTexture) [17:47:11] [main/WARN]: Error loading class: journeymap/client/ui/fullscreen/Fullscreen (java.lang.ClassNotFoundException: journeymap.client.ui.fullscreen.Fullscreen) [17:47:11] [main/WARN]: @Mixin target journeymap.client.ui.fullscreen.Fullscreen was not found create.mixins.json:compat.JourneyFullscreenMapMixin [17:47:11] [main/WARN]: Error loading class: com/dsvv/cbcat/cannon/twin_autocannon/contraption/MountedTwinAutocannonContraption (java.lang.ClassNotFoundException: com.dsvv.cbcat.cannon.twin_autocannon.contraption.MountedTwinAutocannonContraption) [17:47:11] [main/WARN]: Error loading class: com/dsvv/cbcat/cannon/heavy_autocannon/contraption/MountedHeavyAutocannonContraption (java.lang.ClassNotFoundException: com.dsvv.cbcat.cannon.heavy_autocannon.contraption.MountedHeavyAutocannonContraption) [17:47:11] [main/WARN]: Error loading class: com/dsvv/cbcat/cannon/twin_autocannon/contraption/MountedTwinAutocannonContraption (java.lang.ClassNotFoundException: com.dsvv.cbcat.cannon.twin_autocannon.contraption.MountedTwinAutocannonContraption) [17:47:11] [main/WARN]: Error loading class: com/dsvv/cbcat/cannon/heavy_autocannon/contraption/MountedHeavyAutocannonContraption (java.lang.ClassNotFoundException: com.dsvv.cbcat.cannon.heavy_autocannon.contraption.MountedHeavyAutocannonContraption) [17:47:11] [main/WARN]: Error loading class: org/jetbrains/annotations/ApiStatus$Internal (java.lang.ClassNotFoundException: org.jetbrains.annotations.ApiStatus$Internal) [17:47:11] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). [17:47:13] [pool-4-thread-1/INFO]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/item/CreativeModeTabs [17:47:14] [pool-4-thread-1/INFO]: Patching IForgeItemStack#getEnchantmentLevel [17:47:14] [pool-4-thread-1/INFO]: Patching IForgeItemStack#getEnchantmentLevel [17:47:14] [pool-4-thread-1/INFO]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/inventory/AnvilMenu [17:47:16] [Datafixer Bootstrap/INFO]: 188 Datafixer optimizations took 159 milliseconds [17:47:17] [pool-4-thread-1/INFO]: Patching FishingHook#catchingFish [17:47:17] [pool-4-thread-1/INFO]: Replaced 1 calls to Enchantment#getMaxLevel() in net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction [17:47:17] [pool-4-thread-1/INFO]: Replaced 1 calls to Enchantment#isDiscoverable() in net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction [17:47:18] [pool-4-thread-1/WARN]: Mixin alexscaves.mixins.json:SwampHutPieceMixin has multiple constructors, (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;IIIIIILnet/minecraft/core/Direction;)V was selected [17:47:18] [Render thread/INFO]: BeforeConstant is searching for constants in method with descriptor (Lnet/minecraft/network/chat/Component;Z)V [17:47:18] [Render thread/INFO]:   BeforeConstant found INTEGER constant: value = 0, intValue = null [17:47:18] [Render thread/INFO]:     BeforeConstant found a matching constant TYPE at ordinal 0 [17:47:18] [Render thread/INFO]:       BeforeConstant found Insn [ICONST_0]  [17:47:18] [Render thread/INFO]:   BeforeConstant found INTEGER constant: value = 60, intValue = null [17:47:18] [Render thread/INFO]:     BeforeConstant found a matching constant TYPE at ordinal 1 [17:47:18] [Render thread/INFO]:       BeforeConstant found IntInsn 60 [17:47:18] [Render thread/INFO]: Patching EffectRenderingInventoryScreen#renderEffects [17:47:18] [Render thread/WARN]: Assets URL 'union:/C:/Users/Admin/AppData/Roaming/.minecraft/libraries/net/minecraft/client/1.20.1-20230612.114412/client-1.20.1-20230612.114412-srg.jar%23314!/assets/.mcassetsroot' uses unexpected schema [17:47:18] [Render thread/WARN]: Assets URL 'union:/C:/Users/Admin/AppData/Roaming/.minecraft/libraries/net/minecraft/client/1.20.1-20230612.114412/client-1.20.1-20230612.114412-srg.jar%23314!/data/.mcassetsroot' uses unexpected schema [17:47:18] [Render thread/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' [17:47:20] [Render thread/ERROR]: Failed to verify authentication com.mojang.authlib.exceptions.InvalidCredentialsException: Status: 401     at com.mojang.authlib.exceptions.MinecraftClientHttpException.toAuthenticationException(MinecraftClientHttpException.java:56) ~[authlib-4.0.43.1.jar%23111!/:?]     at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:147) ~[authlib-4.0.43.1.jar%23111!/:?]     at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.<init>(YggdrasilUserApiService.java:63) ~[authlib-4.0.43.1.jar%23111!/:?]     at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.createUserApiService(YggdrasilAuthenticationService.java:124) ~[authlib-4.0.43.1.jar%23111!/:?]     at net.minecraft.client.Minecraft.m_193585_(Minecraft.java:649) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.<init>(Minecraft.java:413) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:182) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] Caused by: com.mojang.authlib.exceptions.MinecraftClientHttpException: Status: 401     at com.mojang.authlib.minecraft.client.MinecraftClient.readInputStream(MinecraftClient.java:85) ~[authlib-4.0.43.1.jar%23111!/:?]     at com.mojang.authlib.minecraft.client.MinecraftClient.get(MinecraftClient.java:48) ~[authlib-4.0.43.1.jar%23111!/:?]     at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:122) ~[authlib-4.0.43.1.jar%23111!/:?]     ... 20 more [17:47:20] [Render thread/INFO]: Setting user: smivi [17:47:20] [Render thread/INFO]: BeforeConstant is searching for constants in method with descriptor (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/GuiMessageTag;)V [17:47:20] [Render thread/INFO]:   BeforeConstant found STRING constant: value = , stringValue = null [17:47:20] [Render thread/INFO]:     BeforeConstant found a matching constant TYPE at ordinal 0 [17:47:20] [Render thread/INFO]:       BeforeConstant found LdcInsn [17:47:20] [Render thread/INFO]:   BeforeConstant found STRING constant: value = \\r, stringValue = null [17:47:20] [Render thread/INFO]:     BeforeConstant found a matching constant TYPE at ordinal 1 [17:47:20] [Render thread/INFO]:       BeforeConstant found LdcInsn \\r [17:47:20] [Render thread/INFO]:   BeforeConstant found STRING constant: value =  , stringValue = null [17:47:20] [Render thread/INFO]:     BeforeConstant found a matching constant TYPE at ordinal 2 [17:47:20] [Render thread/INFO]:       BeforeConstant found LdcInsn  [17:47:20] [Render thread/INFO]:   BeforeConstant found STRING constant: value = \\n, stringValue = null [17:47:20] [Render thread/INFO]:     BeforeConstant found a matching constant TYPE at ordinal 3 [17:47:20] [Render thread/INFO]:       BeforeConstant found LdcInsn \\n [17:47:20] [Render thread/INFO]:   BeforeConstant found CLASS constant: value = Ljava/lang/String;, typeValue = null [17:47:20] [Render thread/INFO]:   BeforeConstant found STRING constant: value = [{}] [CHAT] {}, stringValue = null [17:47:20] [Render thread/INFO]:     BeforeConstant found a matching constant TYPE at ordinal 4 [17:47:20] [Render thread/INFO]:       BeforeConstant found LdcInsn [{}] [CHAT] {} [17:47:20] [Render thread/INFO]:   BeforeConstant found STRING constant: value = [CHAT] {}, stringValue = null [17:47:20] [Render thread/INFO]:     BeforeConstant found a matching constant TYPE at ordinal 5 [17:47:20] [Render thread/INFO]:       BeforeConstant found LdcInsn [CHAT] {} [17:47:21] [Render thread/INFO]: Backend library: LWJGL version 3.3.1 build 7 [17:47:21] [modloading-worker-0/INFO]: Configuration has been loaded [17:47:21] [modloading-worker-0/INFO]: Constructing common components for hangglider:main [17:47:21] [modloading-worker-0/INFO]: Origins 1.20.1-1.10.0.9 is initializing. Have fun! [17:47:22] [modloading-worker-0/INFO]: Constructing client components for hangglider:main [17:47:22] [modloading-worker-0/INFO]: Loading Noisium. [17:47:22] [modloading-worker-0/INFO]: Loaded config for: cupboard.json [17:47:22] [modloading-worker-0/INFO]: Registering S2C receiver with id architectury:sync_ids [17:47:22] [modloading-worker-0/INFO]: Registering C2S receiver with id architectury:sync_ids [17:47:22] [modloading-worker-0/INFO]: Registering C2S receiver with id brewery:alcohol_sync_request [17:47:22] [modloading-worker-0/INFO]: Registering C2S receiver with id brewery:drink_alcohol [17:47:22] [modloading-worker-0/INFO]: Forge mod loading, version 47.4.0, for MC 1.20.1 with MCP 20230612.114412 [17:47:22] [modloading-worker-0/INFO]: MinecraftForge v47.4.0 Initialized [17:47:22] [modloading-worker-0/INFO]: Sending ConfigManager... [17:47:22] [modloading-worker-0/INFO]: Sending ConfigManager took 4.271 ms [17:47:22] [modloading-worker-0/INFO]: Calio 1.20.1-1.11.0.5 initializing... [17:47:22] [modloading-worker-0/INFO]: Apoli 1.20.1-2.9.0.8 has initialized. Ready to power up your game! [17:47:22] [modloading-worker-0/INFO]: Kotlin For Forge Enabled! [17:47:22] [modloading-worker-0/INFO]: Deserializing AOTAConfig from 'C:\Users\Admin\AppData\Roaming\.minecraft\config\config\armoroftheages.json' [17:47:23] [modloading-worker-0/INFO]: Initializing Create Radar! [17:47:23] [modloading-worker-0/INFO]: Registering Items! [17:47:23] [modloading-worker-0/INFO]: Registering blocks! [17:47:23] [modloading-worker-0/INFO]: Registering block entity types! [17:47:23] [modloading-worker-0/INFO]: Registering CreativeTabs! [17:47:23] [modloading-worker-0/INFO]: Registering Lang! [17:47:23] [modloading-worker-0/INFO]: Registering CBC Compat Items! [17:47:23] [modloading-worker-0/INFO]: Create 6.0.6 initializing! Commit hash: 338bfa0aec952fa51656e8f61bd621ca9b3b2e00 [17:47:23] [modloading-worker-0/INFO]: Registering items for Create Deco [17:47:23] [modloading-worker-0/INFO]: Registering blocks for Create Deco [17:47:23] [modloading-worker-0/INFO]: [TFMG] Initializing core systems... [17:47:23] [modloading-worker-0/INFO]: [TFMG] Registering content... [17:47:23] [modloading-worker-0/INFO]: Deserializing YACLConfig from 'C:\Users\Admin\AppData\Roaming\.minecraft\config\yacl.json5' [17:47:23] [modloading-worker-0/INFO]: Constructing common components for puzzleslib:main [17:47:23] [modloading-worker-0/INFO]: [BetterF3] Starting... [17:47:23] [modloading-worker-0/INFO]: [BetterF3] Loading... [17:47:23] [modloading-worker-0/INFO]: Constructing client components for puzzleslib:main [17:47:23] [modloading-worker-0/INFO]: [BetterF3] All done! [17:47:24] [modloading-worker-0/INFO]: [TFMG] Initializing systems... [17:47:24] [modloading-worker-0/INFO]: [TFMG] Setting up client... [17:47:24] [modloading-worker-0/INFO]: [TFMG] Initialization complete! [17:47:26] [Render thread/WARN]: Error loading class: com/dsvv/cbcat/cannon/twin_autocannon/contraption/MountedTwinAutocannonContraption (java.lang.ClassNotFoundException: com.dsvv.cbcat.cannon.twin_autocannon.contraption.MountedTwinAutocannonContraption) [17:47:26] [Render thread/WARN]: Error loading class: com/dsvv/cbcat/cannon/heavy_autocannon/contraption/MountedHeavyAutocannonContraption (java.lang.ClassNotFoundException: com.dsvv.cbcat.cannon.heavy_autocannon.contraption.MountedHeavyAutocannonContraption) [17:47:28] [Render thread/WARN]: Registry entry listened Registry Entry [minecraft:entity_type / vinery:mule] was not realized! [17:47:28] [Render thread/WARN]: Registry entry listened Registry Entry [minecraft:entity_type / brewery:beer_elemental] was not realized! [17:47:28] [Render thread/WARN]: Registry entry listened Registry Entry [minecraft:entity_type / vinery:wandering_winemaker] was not realized! [17:47:28] [Render thread/WARN]: Registry entry listened Registry Entry [minecraft:entity_type / vinery:mule] was not realized! [17:47:28] [Render thread/WARN]: Registry entry listened Registry Entry [minecraft:entity_type / brewery:beer_elemental] was not realized! [17:47:28] [Render thread/WARN]: Registry entry listened Registry Entry [minecraft:entity_type / vinery:wandering_winemaker] was not realized! [17:47:28] [Render thread/WARN]: Registry entry listened Registry Entry [minecraft:entity_type / brewery:beer_elemental] was not realized! [17:47:28] [Render thread/INFO]: Initialized block sets in 19ms [17:47:28] [Render thread/WARN]: defineId called for: class net.minecraft.world.entity.item.PrimedTnt from class com.drmangotea.tfmg.content.items.weapons.explosives.napalm.NapalmBombEntity [17:47:29] [Render thread/WARN]: defineId called for: class com.github.alexmodguy.alexscaves.server.entity.living.TremorzillaEntity from class com.github.alexmodguy.alexscaves.server.entity.living.LicowitchEntity [17:47:30] [Render thread/INFO]: loaded in block colorizer [17:47:30] [Render thread/INFO]: loaded in item colorizer [17:47:31] [Render thread/INFO]: Reloading ResourceManager: vanilla, mod_resources, Moonlight Mods Dynamic Assets, file/Default-Dark-Mode-1.20-2023.7.0.zip, supplementaries:darker_ropes, black_icons [17:47:31] [Worker-Main-1/INFO]: Starting runtime resource generation for pack type CLIENT_RESOURCES with generators from mods [moonlight, supplementaries, amendments, supplementaries]: [net.mehvahdjukaar.moonlight.core.MoonlightClient$Gen@397a451e, net.mehvahdjukaar.supplementaries.dynamicpack.ClientDynamicResourcesGenerator@715066a9, net.mehvahdjukaar.amendments.client.ClientResourceGenerator@530b2426] [17:47:31] [Worker-Main-1/INFO]: Generating runtime assets for pack Moonlight Mods Dynamic Assets (moonlight) [17:47:31] [Worker-Main-1/INFO]: Generated runtime CLIENT_RESOURCES for pack Moonlight Mods Dynamic Assets (moonlight) in: 10 ms (multithreaded) [17:47:31] [Worker-Main-1/INFO]: Generating runtime assets for pack Moonlight Mods Dynamic Assets (supplementaries) [17:47:31] [Worker-Main-1/INFO]: Generated runtime CLIENT_RESOURCES for pack Moonlight Mods Dynamic Assets (supplementaries) in: 153 ms (multithreaded) [17:47:31] [Worker-Main-1/INFO]: Generating runtime assets for pack Moonlight Mods Dynamic Assets (amendments) [17:47:31] [Worker-Main-1/INFO]: Generated runtime CLIENT_RESOURCES for pack Moonlight Mods Dynamic Assets (amendments) in: 48 ms (multithreaded) [17:47:31] [Worker-Main-1/INFO]: Finished runtime resources generation for 4 packs in a total of 213 ms [17:47:31] [modloading-worker-0/INFO]: Loading client config for hangglider [17:47:31] [Worker-Main-3/INFO]: Found unifont_all_no_pua-15.0.06.hex, loading [17:47:31] [Worker-Main-7/WARN]: File supplementaries:sounds/item/awning_bounce_1.ogg does not exist, cannot add it to event supplementaries:block.awning.bounce [17:47:31] [Worker-Main-7/WARN]: File supplementaries:sounds/item/awning_bounce_2.ogg does not exist, cannot add it to event supplementaries:block.awning.bounce [17:47:31] [Worker-Main-7/WARN]: File supplementaries:sounds/item/awning_bounce_3.ogg does not exist, cannot add it to event supplementaries:block.awning.bounce [17:47:31] [Worker-Main-7/WARN]: File alexscaves:sounds/block/purple_soda/purple_soda_swim_3.ogg does not exist, cannot add it to event alexscaves:purple_soda_swim [17:47:31] [Worker-Main-7/WARN]: File alexscaves:sounds/block/purple_soda/purple_soda_swim_4.ogg does not exist, cannot add it to event alexscaves:purple_soda_swim [17:47:31] [Worker-Main-7/WARN]: File alexscaves:sounds/mob/luxtructosaurus/luxtructosaurus_snort_0.ogg does not exist, cannot add it to event alexscaves:luxtructosaurus_snort [17:47:31] [Worker-Main-7/WARN]: File alexscaves:sounds/mob/luxtructosaurus/luxtructosaurus_snort_1.ogg does not exist, cannot add it to event alexscaves:luxtructosaurus_snort [17:47:31] [Worker-Main-7/WARN]: File alexscaves:sounds/mob/luxtructosaurus/luxtructosaurus_snort_2.ogg does not exist, cannot add it to event alexscaves:luxtructosaurus_snort [17:47:31] [Worker-Main-7/WARN]: File alexscaves:sounds/mob/luxtructosaurus/luxtructosaurus_breathe_0.ogg does not exist, cannot add it to event alexscaves:luxtructosaurus_breathe [17:47:31] [Worker-Main-7/WARN]: File alexscaves:sounds/mob/luxtructosaurus/luxtructosaurus_breathe_1.ogg does not exist, cannot add it to event alexscaves:luxtructosaurus_breathe [17:47:31] [Worker-Main-7/WARN]: File alexscaves:sounds/mob/luxtructosaurus/luxtructosaurus_breathe_2.ogg does not exist, cannot add it to event alexscaves:luxtructosaurus_breathe [17:47:32] [Worker-Main-1/ERROR]: Invalid path in pack: createdeco:textures/block/palettes/decals/BLANK_decal_dont_use.png, ignoring [17:47:32] [Worker-Main-7/ERROR]: Invalid path in pack: createdeco:textures/block/palettes/decals/BLANK_decal_dont_use.png, ignoring [17:47:32] [Worker-Main-6/INFO]: Compression will use Java, encryption will use Java [17:47:32] [Forge Version Check/INFO]: [hangglider] Starting version check at https://raw.githubusercontent.com/Fuzss/modresources/main/update/hangglider.json [17:47:32] [Worker-Main-2/INFO]: [voicechat] Compatibility version 18 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 0: 16 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 1: 17 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 2: 18 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 3: 19 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 4: 20 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 5: 21 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 6: 22 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 7: 23 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 8: 24 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 9: 25 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 10: 26 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 11: 27 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 12: 28 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 13: 29 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 14: 30 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 15: 31 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 24: 8 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 25: 9 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 26: 10 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 27: 11 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 28: 12 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 29: 13 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 30: 14 [17:47:32] [Worker-Main-7/WARN]: Invalid frame index on sprite tfmg:block/gas_lamp_fire frame 31: 15 [17:47:32] [Worker-Main-2/INFO]: [voicechat] Loading plugins [17:47:32] [Worker-Main-2/INFO]: [voicechat] Loaded 0 plugin(s) [17:47:32] [Worker-Main-2/INFO]: [voicechat] Initializing plugins [17:47:32] [Worker-Main-2/INFO]: [voicechat] Initialized 0 plugin(s) [17:47:32] [Worker-Main-8/ERROR]: Failed to load model tfmg:models/block/encased_shaft/block.json com.google.gson.JsonParseException: JSON data was null or empty     at net.minecraft.util.GsonHelper.m_263475_(GsonHelper.java:533) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.util.GsonHelper.m_13776_(GsonHelper.java:581) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.renderer.block.model.BlockModel.m_111461_(BlockModel.java:74) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.resources.model.ModelManager.m_246478_(ModelManager.java:110) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]     at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]     at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?]     at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?]     at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?]     at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?]     at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] [17:47:32] [Worker-Main-8/ERROR]: Failed to load model tfmg:models/block/encased_shaft/item.json com.google.gson.JsonParseException: JSON data was null or empty     at net.minecraft.util.GsonHelper.m_263475_(GsonHelper.java:533) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.util.GsonHelper.m_13776_(GsonHelper.java:581) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.renderer.block.model.BlockModel.m_111461_(BlockModel.java:74) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.resources.model.ModelManager.m_246478_(ModelManager.java:110) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]     at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]     at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?]     at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?]     at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?]     at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?]     at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] [17:47:32] [Worker-Main-8/ERROR]: Failed to load model tfmg:models/block/engine_block.json com.google.gson.JsonParseException: JSON data was null or empty     at net.minecraft.util.GsonHelper.m_263475_(GsonHelper.java:533) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.util.GsonHelper.m_13776_(GsonHelper.java:581) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.renderer.block.model.BlockModel.m_111461_(BlockModel.java:74) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.resources.model.ModelManager.m_246478_(ModelManager.java:110) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]     at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]     at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?]     at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?]     at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?]     at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?]     at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] [17:47:32] [Worker-Main-8/ERROR]: Failed to load model tfmg:models/block/fireproof_brick_reinforcement.json com.google.gson.JsonParseException: JSON data was null or empty     at net.minecraft.util.GsonHelper.m_263475_(GsonHelper.java:533) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.util.GsonHelper.m_13776_(GsonHelper.java:581) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.renderer.block.model.BlockModel.m_111461_(BlockModel.java:74) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.resources.model.ModelManager.m_246478_(ModelManager.java:110) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]     at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]     at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?]     at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?]     at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?]     at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?]     at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] [17:47:32] [Worker-Main-8/ERROR]: Failed to load model tfmg:models/block/formwork_block/block_base.json com.google.gson.JsonParseException: JSON data was null or empty     at net.minecraft.util.GsonHelper.m_263475_(GsonHelper.java:533) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.util.GsonHelper.m_13776_(GsonHelper.java:581) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.renderer.block.model.BlockModel.m_111461_(BlockModel.java:74) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.resources.model.ModelManager.m_246478_(ModelManager.java:110) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]     at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]     at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?]     at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?]     at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?]     at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?]     at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] [17:47:32] [Worker-Main-5/INFO]: Registering Display Sources! [17:47:32] [Worker-Main-5/ERROR]: Using missing texture, unable to load create:fluid/cooling_fluid_flow java.io.IOException: Could not load image: Image not of any known type, or corrupt     at com.mojang.blaze3d.platform.NativeImage.m_85051_(NativeImage.java:138) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at com.mojang.blaze3d.platform.NativeImage.m_85048_(NativeImage.java:103) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at com.mojang.blaze3d.platform.NativeImage.m_85058_(NativeImage.java:94) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.renderer.texture.SpriteLoader.m_245083_(SpriteLoader.java:139) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.renderer.texture.atlas.SpriteSource$Output.m_261059_(SpriteSource.java:22) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]     at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]     at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?]     at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?]     at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?]     at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?]     at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] [17:47:33] [Forge Version Check/INFO]: [hangglider] Found status: UP_TO_DATE Current: 8.0.1 Target: null [17:47:33] [Forge Version Check/INFO]: [fastload] Starting version check at https://github.com/BumbleSoftware/Fastload/raw/Forge-1.20.1/updates.json [17:47:33] [Worker-Main-6/WARN]: Unused frames in sprite apotheosis:items/gems/blood_lord: [9] [17:47:33] [Worker-Main-5/ERROR]: Failed to load model tfmg:models/block/sulfuric_acid.json com.google.gson.JsonParseException: JSON data was null or empty     at net.minecraft.util.GsonHelper.m_263475_(GsonHelper.java:533) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.util.GsonHelper.m_13776_(GsonHelper.java:581) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.renderer.block.model.BlockModel.m_111461_(BlockModel.java:74) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.resources.model.ModelManager.m_246478_(ModelManager.java:110) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]     at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]     at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?]     at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?]     at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?]     at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?]     at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] [17:47:33] [Worker-Main-8/ERROR]: Failed to load model tfmg:models/block/welding_machine/item.json com.google.gson.JsonParseException: JSON data was null or empty     at net.minecraft.util.GsonHelper.m_263475_(GsonHelper.java:533) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.util.GsonHelper.m_13776_(GsonHelper.java:581) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.renderer.block.model.BlockModel.m_111461_(BlockModel.java:74) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.resources.model.ModelManager.m_246478_(ModelManager.java:110) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]     at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]     at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?]     at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?]     at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?]     at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?]     at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] [17:47:33] [Worker-Main-5/ERROR]: Failed to load model tfmg:models/large_steel_cogwheel_shaftless.json com.google.gson.JsonParseException: JSON data was null or empty     at net.minecraft.util.GsonHelper.m_263475_(GsonHelper.java:533) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.util.GsonHelper.m_13776_(GsonHelper.java:581) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.renderer.block.model.BlockModel.m_111461_(BlockModel.java:74) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.resources.model.ModelManager.m_246478_(ModelManager.java:110) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]     at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]     at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?]     at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?]     at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?]     at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?]     at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] [17:47:33] [Forge Version Check/INFO]: [fastload] Found status: UP_TO_DATE Current: 3.4.0 Target: null [17:47:33] [Forge Version Check/INFO]: [attributefix] Starting version check at https://updates.blamejared.com/get?n=attributefix&gv=1.20.1 [17:47:33] [Render thread/INFO]: Registered region minecraft:overworld to index 0 for type OVERWORLD [17:47:33] [Render thread/INFO]: Registered region minecraft:nether to index 0 for type NETHER [17:47:33] [Render thread/INFO]: Registered region ars_nouveau:overworld to index 1 for type OVERWORLD [17:47:33] [Render thread/INFO]: Registered region biomesoplenty:overworld_primary to index 2 for type OVERWORLD [17:47:33] [Render thread/INFO]: Registered region biomesoplenty:overworld_secondary to index 3 for type OVERWORLD [17:47:33] [Render thread/INFO]: Registered region biomesoplenty:overworld_rare to index 4 for type OVERWORLD [17:47:33] [Render thread/INFO]: Registered region biomesoplenty:nether_common to index 1 for type NETHER [17:47:33] [Render thread/INFO]: Registered region biomesoplenty:nether_rare to index 2 for type NETHER [17:47:33] [Render thread/INFO]: Initialized color sets in 39ms [17:47:33] [Render thread/INFO]: Registered synced data key backpacked:unlock_tracker for minecraft:player [17:47:33] [Render thread/INFO]: Registered synced data key backpacked:trader_pickpocketing for minecraft:wandering_trader [17:47:33] [Render thread/INFO]: Registered contraption type 'create_radar:radar_bearing' [17:47:33] [Render thread/INFO]: Finished mod setup in: [2, 2, 0, 1, 0, 0, 8, 0] ms [17:47:34] [Worker-Main-5/INFO]: Loading Xaero's World Map - Stage 1/2 [17:47:34] [Placebo Patreon Trail Loader/INFO]: Loading patreon trails data... [17:47:34] [Placebo Patreon Wing Loader/INFO]: Loading patreon wing data... [17:47:34] [Worker-Main-6/INFO]: Registering S2C receiver with id brewery:alcohol_sync [17:47:34] [Worker-Main-6/INFO]: Registering S2C receiver with id brewery:drink_alcohol [17:47:34] [Worker-Main-6/INFO]: Registering S2C receiver with id brewery:attach_rope [17:47:34] [Worker-Main-6/INFO]: Registering S2C receiver with id brewery:detach_rope [17:47:34] [Worker-Main-6/INFO]: Registering S2C receiver with id brewery:sync_rope [17:47:34] [Worker-Main-6/INFO]: Registering S2C receiver with id brewery:change_hanging_rope [17:47:34] [Worker-Main-3/WARN]: @Inject(@At("INVOKE")) Shift.BY=5 on attributeslib.mixins.json:client.ClientPacketListenerMixin::handler$zkh000$apoth_postAttrChangedEvent exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. [17:47:34] [Worker-Main-1/INFO]: Loading Xaero's Minimap - Stage 1/2 [17:47:34] [Worker-Main-3/INFO]: [voicechat] Using Cloth Config GUI [17:47:34] [Worker-Main-3/INFO]: [voicechat] Loading Opus [17:47:34] [Placebo Patreon Trail Loader/INFO]: Loaded 48 patreon trails. [17:47:34] [Forge Version Check/INFO]: [attributefix] Found status: BETA Current: 21.0.4 Target: 21.0.4 [17:47:34] [Forge Version Check/INFO]: [clumps] Starting version check at https://updates.blamejared.com/get?n=clumps&gv=1.20.1 [17:47:34] [Forge Version Check/INFO]: [clumps] Found status: BETA Current: 12.0.0.4 Target: 12.0.0.4 [17:47:34] [Forge Version Check/INFO]: [mr_lukis_grandcapitals] Starting version check at https://api.modrinth.com/updates/8Lw09aLb/forge_updates.json [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=1,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=0,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=3,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=10,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=11,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=9,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=2,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=7,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=4,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=8,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=14,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=12,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=13,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=13,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=3,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=14,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=11,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=2,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=5,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=15,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=9,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=15,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=6,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=12,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=8,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=0,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=7,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=4,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=5,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=6,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=east,floor=true,level=10,roof=true' [17:47:34] [Worker-Main-8/WARN]: Exception loading blockstate definition: 'ars_nouveau:blockstates/magelight_torch.json' missing model for variant: 'ars_nouveau:magelight_torch#facing=north,floor=true,level=1,roof=true' [17:47:34] [Placebo Patreon Wing Loader/INFO]: Loaded 42 patreon wings. [17:47:34] [Forge Version Check/INFO]: [mr_lukis_grandcapitals] Found status: OUTDATED Current: 1.1.2 Target: 1.1.2+mod [17:47:34] [Forge Version Check/INFO]: [puzzlesaccessapi] Starting version check at https://raw.githubusercontent.com/Fuzss/modresources/main/update/puzzlesaccessapi.json [17:47:34] [Forge Version Check/INFO]: [puzzlesaccessapi] Found status: BETA Current: 20.1.1 Target: null [17:47:34] [Forge Version Check/INFO]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json [17:47:34] [Worker-Main-5/WARN]: io exception while checking patreon: Connect timed out [17:47:35] [Worker-Main-8/WARN]: Unable to load model: 'minecraft:block_block' referenced from: tfmg:electric_diode#facing=north: java.io.FileNotFoundException: minecraft:models/block_block.json [17:47:35] [Worker-Main-8/WARN]: Unable to load model: 'tfmg:block/sulfuric_acid' referenced from: tfmg:sulfuric_acid#level=0: java.io.FileNotFoundException: tfmg:models/block/sulfuric_acid.json [17:47:35] [Worker-Main-5/ERROR]: io exception while checking versions: Connect timed out [17:47:36] [Render thread/WARN]: Could not load /assets/iceandfire/models/tabula/firedragon/firedragon_swimming.tbl: in is null [17:47:36] [Forge Version Check/INFO]: [forge] Found status: UP_TO_DATE Current: 47.4.0 Target: null [17:47:36] [Forge Version Check/INFO]: [voicechat] Starting version check at https://update.maxhenkel.de/forge/voicechat [17:47:36] [Render thread/WARN]: Could not load /assets/iceandfire/models/tabula/firedragon/firedragon_swim5.tbl: in is null [17:47:36] [Render thread/INFO]: Loading Xaero's Minimap - Stage 2/2 [17:47:36] [Forge Version Check/INFO]: [voicechat] Found status: OUTDATED Current: 1.20.1-2.5.35 Target: 1.20.1-2.6.3 [17:47:36] [Forge Version Check/INFO]: [securitycraft] Starting version check at https://www.github.com/Geforce132/SecurityCraft/raw/master/Updates/Forge.json [17:47:36] [Worker-Main-8/WARN]: Unable to load model: 'tfmg:block/casting_basin/block_mold' referenced from: tfmg:block/casting_basin/block_mold: java.io.FileNotFoundException: tfmg:models/block/casting_basin/block_mold.json [17:47:36] [Worker-Main-8/WARN]: Unable to load model: 'supplementaries:block/hanging_flower_pot_rope' referenced from: supplementaries:block/hanging_flower_pot_rope: java.io.FileNotFoundException: supplementaries:models/block/hanging_flower_pot_rope.json [17:47:36] [Worker-Main-8/WARN]: Unable to load model: 'tfmg:block/casting_basin/mold_base' referenced from: tfmg:block/casting_basin/mold_base: java.io.FileNotFoundException: tfmg:models/block/casting_basin/mold_base.json [17:47:37] [Forge Version Check/INFO]: [securitycraft] Found status: UP_TO_DATE Current: 1.10.0.1 Target: null [17:47:37] [Forge Version Check/INFO]: [backpacked] Starting version check at https://mrcrayfish.com/modupdatejson?id=backpacked [17:47:37] [Render thread/WARN]: io exception while checking versions: Connect timed out [17:47:37] [Render thread/INFO]: Registered player tracker system: minimap_synced [17:47:37] [Render thread/INFO]: Xaero's Minimap: World Map found! [17:47:37] [Render thread/INFO]: No Optifine! [17:47:37] [Render thread/INFO]: Xaero's Minimap: No Vivecraft! [17:47:37] [Render thread/INFO]: Xaero's Minimap: Framed Blocks found! [17:47:37] [Render thread/INFO]: Loading Xaero's World Map - Stage 2/2 [17:47:37] [Render thread/INFO]: New world map region cache hash code: 78378495 [17:47:37] [Render thread/INFO]: Registered player tracker system: map_synced [17:47:37] [Render thread/INFO]: Xaero's WorldMap Mod: Xaero's minimap found! [17:47:37] [Render thread/INFO]: Registered player tracker system: minimap_synced [17:47:37] [Render thread/INFO]: No Optifine! [17:47:37] [Render thread/INFO]: Xaero's World Map: No Vivecraft! [17:47:37] [Render thread/INFO]: Xaero's World Map: Framed Blocks found! [17:47:38] [Forge Version Check/WARN]: Failed to process update information com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $     at com.google.gson.Gson.fromJson(Gson.java:1226) ~[gson-2.10.jar%23107!/:?]     at com.google.gson.Gson.fromJson(Gson.java:1124) ~[gson-2.10.jar%23107!/:?]     at com.google.gson.Gson.fromJson(Gson.java:1034) ~[gson-2.10.jar%23107!/:?]     at com.google.gson.Gson.fromJson(Gson.java:969) ~[gson-2.10.jar%23107!/:?]     at net.minecraftforge.fml.VersionChecker$1.process(VersionChecker.java:186) ~[fmlcore-1.20.1-47.4.0.jar%23315!/:?]     at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?]     at net.minecraftforge.fml.VersionChecker$1.run(VersionChecker.java:117) ~[fmlcore-1.20.1-47.4.0.jar%23315!/:?] Caused by: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $     at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:393) ~[gson-2.10.jar%23107!/:?]     at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:182) ~[gson-2.10.jar%23107!/:?]     at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:144) ~[gson-2.10.jar%23107!/:?]     at com.google.gson.Gson.fromJson(Gson.java:1214) ~[gson-2.10.jar%23107!/:?]     ... 6 more [17:47:38] [Forge Version Check/INFO]: [supplementaries] Starting version check at https://raw.githubusercontent.com/MehVahdJukaar/Supplementaries/1.20/forge/update.json [17:47:38] [Forge Version Check/INFO]: [supplementaries] Found status: BETA Current: 1.20-3.1.37 Target: null [17:47:38] [Forge Version Check/INFO]: [ambientenvironment] Starting version check at https://updates.blamejared.com/get?n=AmbientEnvironment&gv=1.20.1 [17:47:38] [Forge Version Check/INFO]: [ambientenvironment] Found status: BETA Current: 11.0.0.1 Target: 11.0.0.1 [17:47:38] [Forge Version Check/INFO]: [puzzleslib] Starting version check at https://raw.githubusercontent.com/Fuzss/modresources/main/update/puzzleslib.json [17:47:38] [Forge Version Check/INFO]: [puzzleslib] Found status: UP_TO_DATE Current: 8.1.33 Target: null [17:47:38] [Forge Version Check/INFO]: [betterf3] Starting version check at https://api.modrinth.com/updates/betterf3/forge_updates.json [17:47:38] [Forge Version Check/INFO]: [betterf3] Found status: UP_TO_DATE Current: 7.0.2 Target: null [17:47:38] [Forge Version Check/INFO]: [ad_astra] Starting version check at https://api.modrinth.com/updates/3ufwT9JF/forge_updates.json [17:47:39] [Forge Version Check/INFO]: [ad_astra] Found status: UP_TO_DATE Current: 1.15.20 Target: null [17:47:40] [Worker-Main-8/WARN]: Missing textures in model tfmg:constantan_truss#axis=y,waterlogged=false:     minecraft:textures/atlas/blocks.png:tfmg:block/constantan_truss_truss [17:47:40] [Worker-Main-8/WARN]: Missing textures in model tfmg:constantan_truss#axis=z,waterlogged=true:     minecraft:textures/atlas/blocks.png:tfmg:block/constantan_truss_truss [17:47:40] [Worker-Main-8/WARN]: Missing textures in model supplementaries:confetti_popper#inventory:     minecraft:textures/atlas/blocks.png:supplementaries:party_hat/party_hat [17:47:40] [Worker-Main-8/WARN]: Missing textures in model apotheosis:ancient_material#inventory:     minecraft:textures/atlas/blocks.png:apotheosis:items/ancient_material [17:47:40] [Worker-Main-8/WARN]: Missing textures in model tfmg:constantan_truss#inventory:     minecraft:textures/atlas/blocks.png:tfmg:block/constantan_truss_truss [17:47:40] [Worker-Main-8/WARN]: Missing textures in model tfmg:block/surface_scanner/flag:     minecraft:textures/atlas/blocks.png:tfmg:block/surface_scanner_flags/flag1 [17:47:40] [Worker-Main-8/WARN]: Missing textures in model bountiful:decree#inventory:     minecraft:textures/atlas/blocks.png:bountiful:item/decree [17:47:40] [Worker-Main-8/WARN]: Missing textures in model musketmod:musket_upgrade_smithing_template#inventory:     minecraft:textures/atlas/blocks.png:musketmod:item/musket_upgrade_smithing_template [17:47:40] [Worker-Main-8/WARN]: Missing textures in model ars_nouveau:redstone_relay#facing=east,power=10:     minecraft:textures/atlas/blocks.png:ars_nouveau:blocks/agronomic_sourcelink [17:47:40] [Worker-Main-8/WARN]: Missing textures in model tfmg:constantan_truss#axis=x,waterlogged=true:     minecraft:textures/atlas/blocks.png:tfmg:block/constantan_truss_truss [17:47:40] [Worker-Main-8/INFO]: Loaded emissive block models in 408 ms [17:47:41] [Worker-Main-8/INFO]: Loaded values for 63 compatible attributes. [17:47:41] [Worker-Main-8/ERROR]: Attribute ID 'epicfight:weight' does not belong to a known attribute. This entry will be ignored. [17:47:41] [Worker-Main-8/ERROR]: Attribute ID 'epicfight:offhand_armor_negation' does not belong to a known attribute. This entry will be ignored. [17:47:41] [Worker-Main-8/ERROR]: Attribute ID 'epicfight:stamina_regen' does not belong to a known attribute. This entry will be ignored. [17:47:41] [Worker-Main-8/ERROR]: Attribute ID 'epicfight:execution_resistance' does not belong to a known attribute. This entry will be ignored. [17:47:41] [Worker-Main-8/ERROR]: Attribute ID 'epicfight:offhand_impact' does not belong to a known attribute. This entry will be ignored. [17:47:41] [Worker-Main-8/ERROR]: Attribute ID 'epicfight:impact' does not belong to a known attribute. This entry will be ignored. [17:47:41] [Worker-Main-8/ERROR]: Attribute ID 'epicfight:staminar' does not belong to a known attribute. This entry will be ignored. [17:47:41] [Worker-Main-8/ERROR]: Attribute ID 'epicfight:stun_armor' does not belong to a known attribute. This entry will be ignored. [17:47:41] [Worker-Main-8/ERROR]: Attribute ID 'epicfight:offhand_max_strikes' does not belong to a known attribute. This entry will be ignored. [17:47:41] [Worker-Main-8/ERROR]: Attribute ID 'epicfight:offhand_attack_speed' does not belong to a known attribute. This entry will be ignored. [17:47:41] [Worker-Main-8/ERROR]: Attribute ID 'epicfight:max_strikes' does not belong to a known attribute. This entry will be ignored. [17:47:41] [Worker-Main-8/ERROR]: Attribute ID 'epicfight:armor_negation' does not belong to a known attribute. This entry will be ignored. [17:47:41] [Worker-Main-8/INFO]: Loaded 75 values from config. [17:47:41] [Worker-Main-8/INFO]: Saving config file. 75 entries. [17:47:41] [Worker-Main-8/INFO]: Applying changes for 75 attributes. [17:47:41] [Worker-Main-1/INFO]: Registering Ponder Scenes took 128.1 ms [17:47:41] [Worker-Main-1/INFO]: Registering Ponder Tags took 5.551 ms [17:47:41] [Render thread/INFO]: adding citadel surface rules via terrablender... [17:47:41] [Render thread/INFO]: Added 0 vanilla biome surface rule types via terrablender [17:47:41] [Render thread/INFO]: Added 1 modded biome surface rule types via terrablender [17:47:47] [Render thread/WARN]: Missing sound for event: minecraft:item.goat_horn.play [17:47:47] [Render thread/WARN]: Missing sound for event: minecraft:entity.goat.screaming.horn_break [17:47:47] [Render thread/WARN]: Missing sound for event: alexscaves:abyssal_chasm_ambience_mood [17:47:47] [Render thread/WARN]: Missing sound for event: alexscaves:luxtructosaurus_breath [17:47:47] [Render thread/INFO]: OpenAL initialized on device OpenAL Soft on Динамики (2- Rapoo Gaming Headset) [17:47:47] [Render thread/INFO]: Sound engine started [17:47:47] [Render thread/INFO]: Created: 4096x2048x0 minecraft:textures/atlas/blocks.png-atlas [17:47:47] [Render thread/INFO]: Created: 512x512x0 minecraft:textures/atlas/signs.png-atlas [17:47:47] [Render thread/INFO]: Created: 1024x512x0 minecraft:textures/atlas/banner_patterns.png-atlas [17:47:47] [Render thread/INFO]: Created: 512x512x0 minecraft:textures/atlas/shield_patterns.png-atlas [17:47:47] [Render thread/INFO]: Created: 2048x1024x0 minecraft:textures/atlas/armor_trims.png-atlas [17:47:47] [Render thread/INFO]: Created: 512x256x0 minecraft:textures/atlas/chest.png-atlas [17:47:47] [Render thread/INFO]: Created: 128x64x0 minecraft:textures/atlas/decorated_pot.png-atlas [17:47:47] [Render thread/INFO]: Created: 512x256x0 minecraft:textures/atlas/shulker_boxes.png-atlas [17:47:47] [Render thread/INFO]: Created: 512x256x0 minecraft:textures/atlas/beds.png-atlas [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to iceandfire:dragon_skull, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to iceandfire:stone_statue, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to iceandfire:mob_skull, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:bookwyrm, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:starbuncle, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:whirlisprig, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:wixie, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:wilden_hunter, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:wilden_stalker, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:wilden_guardian, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:wilden_boss, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:drygmy, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:familiar_starbuncle, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:familiar_wixie, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:familiar_bookwyrm, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:familiar_drygmy, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:familiar_whirlisprig, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:familiar_amethyst_golem, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:cascading_weald_walker, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:flourishing_weald_walker, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:blazing_weald_walker, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:vexing_weald_walker, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:amethyst_golem, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:gift_starby, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:animated_block, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:animated_head, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_nouveau:lily, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to alexscaves:ferrouslime, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to securitycraft:sentry, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_elemental:siren_entity, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_elemental:siren_familiar, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_elemental:firenando_entity, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_elemental:firenando_familiar, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to ars_elemental:flashing_weald_walker, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Could not apply radiation glow layer to create:package, has custom renderer that is not LivingEntityRenderer. [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.iceandfire.dragon_skull. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.iceandfire.stone_statue. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.iceandfire.mob_skull. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.bookwyrm. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.starbuncle. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.whirlisprig. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.wixie. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.wilden_hunter. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.wilden_stalker. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.wilden_guardian. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.wilden_boss. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.drygmy. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.familiar_starbuncle. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.familiar_wixie. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.familiar_bookwyrm. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.familiar_drygmy. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.familiar_whirlisprig. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.familiar_amethyst_golem. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.cascading_weald_walker. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.flourishing_weald_walker. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.blazing_weald_walker. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.vexing_weald_walker. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.amethyst_golem. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.gift_starby. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.animated_block. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.animated_head. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_nouveau.lily. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.alexscaves.ferrouslime. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.securitycraft.sentry. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_elemental.siren_entity. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_elemental.siren_familiar. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_elemental.firenando_entity. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_elemental.firenando_familiar. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.ars_elemental.flashing_weald_walker. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Failed to add slimed layer to entity: entity.create.package. This bug was caused by forge! [17:47:47] [Render thread/WARN]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. [17:47:47] [Render thread/WARN]: Shader alexscaves:rendertype_red_ghost could not find sampler named Sampler2 in the specified shader program. [17:47:47] [Render thread/INFO]: registered internal shaders [17:47:47] [Render thread/WARN]: Shader moonlight:text_alpha_color could not find sampler named Sampler2 in the specified shader program. [17:47:47] [Render thread/WARN]: Shader moonlight:text_alpha_color could not find uniform named IViewRotMat in the specified shader program. [17:47:47] [Render thread/WARN]: Shader supplementaries:static_noise could not find sampler named Sampler1 in the specified shader program. [17:47:47] [Render thread/WARN]: Shader supplementaries:spherify could not find sampler named Sampler1 in the specified shader program. [17:47:47] [Render thread/WARN]: Shader supplementaries:spherify could not find uniform named GameTime in the specified shader program. [17:47:47] [Render thread/WARN]: Shader supplementaries:spherify could not find uniform named NoiseSpeed in the specified shader program. [17:47:47] [Render thread/WARN]: Shader supplementaries:spherify could not find uniform named NoiseScale in the specified shader program. [17:47:47] [Render thread/WARN]: Shader supplementaries:spherify could not find uniform named Intensity in the specified shader program. [17:47:47] [Render thread/WARN]: Shader supplementaries:spherify could not find uniform named CameraPos in the specified shader program. [17:47:47] [Render thread/WARN]: Shader bumpy could not find uniform named OutSize in the specified shader program. [17:47:47] [Render thread/INFO]: Created: 2048x1024x0 minecraft:textures/atlas/particles.png-atlas [17:47:47] [Render thread/INFO]: Created: 512x256x0 minecraft:textures/atlas/paintings.png-atlas [17:47:47] [Render thread/INFO]: Created: 256x256x0 minecraft:textures/atlas/mob_effects.png-atlas [17:47:47] [Render thread/INFO]: Successfully reloaded the world map shaders! [17:47:47] [Render thread/INFO]: Created: 256x256x0 jei:textures/atlas/gui.png-atlas [17:47:47] [Render thread/INFO]: Created: 256x256x0 moonlight:textures/atlas/map_markers.png-atlas [17:47:48] [Render thread/INFO]: Loaded 77 shader sources in 40,897 ms [17:47:48] [Render thread/INFO]: Successfully reloaded the minimap shaders! [17:47:48] [Render thread/INFO]: Loaded 56 train hat configurations. [17:47:48] [Render thread/INFO]: Successfully loaded image 'supplementaries:textures/block/gottem.gif' [17:47:48] [Render thread/INFO]: Successfully loaded image 'ars_nouveau:textures/item/conjure_terrain.gif' [17:47:48] [Render thread/INFO]: Successfully loaded image 'ars_nouveau:textures/item/spike.gif' [17:47:48] [Render thread/INFO]: Successfully loaded image 'ars_nouveau:textures/item/watery_grave.gif' [17:47:50] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: java.lang.RuntimeException: Failed to parse into SignedJWT: null [17:47:52] [Netty Client IO #1/ERROR]: Channels [supplementaries:channel,alexscaves:main_channel,ponder:main,calio:channel,bountiful:clipboard_copy,armoroftheages:config_sync,createdieselgenerators:main,forge:tier_sorting,bountiful:update_bounty_criteria,caelus:main,sereneseasons:main,kambrik:test_msg,musketmod:main,ritchiesprojectilelib:network,create:main,geckolib:main,moonlight:channel,bountiful:play_sound_on_client,citadel:main_channel,ic_air:main,securitycraft:securitycraft,iceandfire:main_channel,createbigcannons:network,origins:network,ad_astra:main,amendments:channel,curios:main,bountiful:select_bounty,framedblocks:main,glitchcore:config_sync,tfmg:main,apoli:channel,ars_elemental:main,orva_alarms:orva_alarms,backpacked:play] rejected vanilla connections [17:47:52] [Netty Client IO #0/ERROR]: Channels [supplementaries:channel,alexscaves:main_channel,ponder:main,calio:channel,bountiful:clipboard_copy,armoroftheages:config_sync,createdieselgenerators:main,forge:tier_sorting,bountiful:update_bounty_criteria,caelus:main,sereneseasons:main,kambrik:test_msg,musketmod:main,ritchiesprojectilelib:network,create:main,geckolib:main,moonlight:channel,bountiful:play_sound_on_client,citadel:main_channel,ic_air:main,securitycraft:securitycraft,iceandfire:main_channel,createbigcannons:network,origins:network,ad_astra:main,amendments:channel,curios:main,bountiful:select_bounty,framedblocks:main,glitchcore:config_sync,tfmg:main,apoli:channel,ars_elemental:main,orva_alarms:orva_alarms,backpacked:play] rejected vanilla connections [17:47:52] [Netty Client IO #2/ERROR]: Channels [supplementaries:channel,alexscaves:main_channel,ponder:main,calio:channel,bountiful:clipboard_copy,armoroftheages:config_sync,createdieselgenerators:main,forge:tier_sorting,bountiful:update_bounty_criteria,caelus:main,sereneseasons:main,kambrik:test_msg,musketmod:main,ritchiesprojectilelib:network,create:main,geckolib:main,moonlight:channel,bountiful:play_sound_on_client,citadel:main_channel,ic_air:main,securitycraft:securitycraft,iceandfire:main_channel,createbigcannons:network,origins:network,ad_astra:main,amendments:channel,curios:main,bountiful:select_bounty,framedblocks:main,glitchcore:config_sync,tfmg:main,apoli:channel,ars_elemental:main,orva_alarms:orva_alarms,backpacked:play] rejected vanilla connections [17:47:53] [Netty Client IO #3/ERROR]: Channels [supplementaries:channel,alexscaves:main_channel,ponder:main,calio:channel,bountiful:clipboard_copy,armoroftheages:config_sync,createdieselgenerators:main,forge:tier_sorting,bountiful:update_bounty_criteria,caelus:main,sereneseasons:main,kambrik:test_msg,musketmod:main,ritchiesprojectilelib:network,create:main,geckolib:main,moonlight:channel,bountiful:play_sound_on_client,citadel:main_channel,ic_air:main,securitycraft:securitycraft,iceandfire:main_channel,createbigcannons:network,origins:network,ad_astra:main,amendments:channel,curios:main,bountiful:select_bounty,framedblocks:main,glitchcore:config_sync,tfmg:main,apoli:channel,ars_elemental:main,orva_alarms:orva_alarms,backpacked:play] rejected vanilla connections [17:47:55] [Netty Client IO #4/ERROR]: Channels [supplementaries:channel,alexscaves:main_channel,ponder:main,calio:channel,bountiful:clipboard_copy,armoroftheages:config_sync,createdieselgenerators:main,forge:tier_sorting,bountiful:update_bounty_criteria,caelus:main,sereneseasons:main,kambrik:test_msg,musketmod:main,ritchiesprojectilelib:network,create:main,geckolib:main,moonlight:channel,bountiful:play_sound_on_client,citadel:main_channel,ic_air:main,securitycraft:securitycraft,iceandfire:main_channel,createbigcannons:network,origins:network,ad_astra:main,amendments:channel,curios:main,bountiful:select_bounty,framedblocks:main,glitchcore:config_sync,tfmg:main,apoli:channel,ars_elemental:main,orva_alarms:orva_alarms,backpacked:play] rejected vanilla connections [17:47:55] [Netty Client IO #5/ERROR]: Channels [supplementaries:channel,alexscaves:main_channel,ponder:main,calio:channel,bountiful:clipboard_copy,armoroftheages:config_sync,createdieselgenerators:main,forge:tier_sorting,bountiful:update_bounty_criteria,caelus:main,sereneseasons:main,kambrik:test_msg,musketmod:main,ritchiesprojectilelib:network,create:main,geckolib:main,moonlight:channel,bountiful:play_sound_on_client,citadel:main_channel,ic_air:main,securitycraft:securitycraft,iceandfire:main_channel,createbigcannons:network,origins:network,ad_astra:main,amendments:channel,curios:main,bountiful:select_bounty,framedblocks:main,glitchcore:config_sync,tfmg:main,apoli:channel,ars_elemental:main,orva_alarms:orva_alarms,backpacked:play] rejected vanilla connections [17:47:56] [Netty Client IO #6/ERROR]: Channels [supplementaries:channel,alexscaves:main_channel,ponder:main,calio:channel,bountiful:clipboard_copy,armoroftheages:config_sync,createdieselgenerators:main,forge:tier_sorting,bountiful:update_bounty_criteria,caelus:main,sereneseasons:main,kambrik:test_msg,musketmod:main,ritchiesprojectilelib:network,create:main,geckolib:main,moonlight:channel,bountiful:play_sound_on_client,citadel:main_channel,ic_air:main,securitycraft:securitycraft,iceandfire:main_channel,createbigcannons:network,origins:network,ad_astra:main,amendments:channel,curios:main,bountiful:select_bounty,framedblocks:main,glitchcore:config_sync,tfmg:main,apoli:channel,ars_elemental:main,orva_alarms:orva_alarms,backpacked:play] rejected vanilla connections [17:47:57] [Netty Client IO #7/ERROR]: Channels [supplementaries:channel,alexscaves:main_channel,ponder:main,calio:channel,bountiful:clipboard_copy,armoroftheages:config_sync,createdieselgenerators:main,forge:tier_sorting,bountiful:update_bounty_criteria,caelus:main,sereneseasons:main,kambrik:test_msg,musketmod:main,ritchiesprojectilelib:network,create:main,geckolib:main,moonlight:channel,bountiful:play_sound_on_client,citadel:main_channel,ic_air:main,securitycraft:securitycraft,iceandfire:main_channel,createbigcannons:network,origins:network,ad_astra:main,amendments:channel,curios:main,bountiful:select_bounty,framedblocks:main,glitchcore:config_sync,tfmg:main,apoli:channel,ars_elemental:main,orva_alarms:orva_alarms,backpacked:play] rejected vanilla connections [17:47:58] [Netty Client IO #11/ERROR]: Channels [supplementaries:channel,alexscaves:main_channel,ponder:main,calio:channel,bountiful:clipboard_copy,armoroftheages:config_sync,createdieselgenerators:main,forge:tier_sorting,bountiful:update_bounty_criteria,caelus:main,sereneseasons:main,kambrik:test_msg,musketmod:main,ritchiesprojectilelib:network,create:main,geckolib:main,moonlight:channel,bountiful:play_sound_on_client,citadel:main_channel,ic_air:main,securitycraft:securitycraft,iceandfire:main_channel,createbigcannons:network,origins:network,ad_astra:main,amendments:channel,curios:main,bountiful:select_bounty,framedblocks:main,glitchcore:config_sync,tfmg:main,apoli:channel,ars_elemental:main,orva_alarms:orva_alarms,backpacked:play] rejected vanilla connections [17:47:58] [Netty Client IO #9/ERROR]: Channels [supplementaries:channel,alexscaves:main_channel,ponder:main,calio:channel,bountiful:clipboard_copy,armoroftheages:config_sync,createdieselgenerators:main,forge:tier_sorting,bountiful:update_bounty_criteria,caelus:main,sereneseasons:main,kambrik:test_msg,musketmod:main,ritchiesprojectilelib:network,create:main,geckolib:main,moonlight:channel,bountiful:play_sound_on_client,citadel:main_channel,ic_air:main,securitycraft:securitycraft,iceandfire:main_channel,createbigcannons:network,origins:network,ad_astra:main,amendments:channel,curios:main,bountiful:select_bounty,framedblocks:main,glitchcore:config_sync,tfmg:main,apoli:channel,ars_elemental:main,orva_alarms:orva_alarms,backpacked:play] rejected vanilla connections [17:47:59] [Netty Client IO #12/ERROR]: Channels [supplementaries:channel,alexscaves:main_channel,ponder:main,calio:channel,bountiful:clipboard_copy,armoroftheages:config_sync,createdieselgenerators:main,forge:tier_sorting,bountiful:update_bounty_criteria,caelus:main,sereneseasons:main,kambrik:test_msg,musketmod:main,ritchiesprojectilelib:network,create:main,geckolib:main,moonlight:channel,bountiful:play_sound_on_client,citadel:main_channel,ic_air:main,securitycraft:securitycraft,iceandfire:main_channel,createbigcannons:network,origins:network,ad_astra:main,amendments:channel,curios:main,bountiful:select_bounty,framedblocks:main,glitchcore:config_sync,tfmg:main,apoli:channel,ars_elemental:main,orva_alarms:orva_alarms,backpacked:play] rejected vanilla connections [17:48:00] [Netty Client IO #15/ERROR]: Channels [supplementaries:channel,alexscaves:main_channel,ponder:main,calio:channel,bountiful:clipboard_copy,armoroftheages:config_sync,createdieselgenerators:main,forge:tier_sorting,bountiful:update_bounty_criteria,caelus:main,sereneseasons:main,kambrik:test_msg,musketmod:main,ritchiesprojectilelib:network,create:main,geckolib:main,moonlight:channel,bountiful:play_sound_on_client,citadel:main_channel,ic_air:main,securitycraft:securitycraft,iceandfire:main_channel,createbigcannons:network,origins:network,ad_astra:main,amendments:channel,curios:main,bountiful:select_bounty,framedblocks:main,glitchcore:config_sync,tfmg:main,apoli:channel,ars_elemental:main,orva_alarms:orva_alarms,backpacked:play] rejected vanilla connections [17:48:00] [Netty Client IO #14/ERROR]: Channels [supplementaries:channel,alexscaves:main_channel,ponder:main,calio:channel,bountiful:clipboard_copy,armoroftheages:config_sync,createdieselgenerators:main,forge:tier_sorting,bountiful:update_bounty_criteria,caelus:main,sereneseasons:main,kambrik:test_msg,musketmod:main,ritchiesprojectilelib:network,create:main,geckolib:main,moonlight:channel,bountiful:play_sound_on_client,citadel:main_channel,ic_air:main,securitycraft:securitycraft,iceandfire:main_channel,createbigcannons:network,origins:network,ad_astra:main,amendments:channel,curios:main,bountiful:select_bounty,framedblocks:main,glitchcore:config_sync,tfmg:main,apoli:channel,ars_elemental:main,orva_alarms:orva_alarms,backpacked:play] rejected vanilla connections [17:48:00] [Netty Client IO #13/ERROR]: Channels [supplementaries:channel,alexscaves:main_channel,ponder:main,calio:channel,bountiful:clipboard_copy,armoroftheages:config_sync,createdieselgenerators:main,forge:tier_sorting,bountiful:update_bounty_criteria,caelus:main,sereneseasons:main,kambrik:test_msg,musketmod:main,ritchiesprojectilelib:network,create:main,geckolib:main,moonlight:channel,bountiful:play_sound_on_client,citadel:main_channel,ic_air:main,securitycraft:securitycraft,iceandfire:main_channel,createbigcannons:network,origins:network,ad_astra:main,amendments:channel,curios:main,bountiful:select_bounty,framedblocks:main,glitchcore:config_sync,tfmg:main,apoli:channel,ars_elemental:main,orva_alarms:orva_alarms,backpacked:play] rejected vanilla connections [17:48:00] [Netty Client IO #1/INFO]: На сервере есть дополнительные моды, которые могут быть нужны на клиенте: [email protected] [17:48:00] [Netty Client IO #1/INFO]: Client has mods that are missing on server: [tlskincape, moonlight, krypton] [17:48:00] [Netty Client IO #0/ERROR]: Channels [supplementaries:channel,alexscaves:main_channel,ponder:main,calio:channel,bountiful:clipboard_copy,armoroftheages:config_sync,createdieselgenerators:main,forge:tier_sorting,bountiful:update_bounty_criteria,caelus:main,sereneseasons:main,kambrik:test_msg,musketmod:main,ritchiesprojectilelib:network,create:main,geckolib:main,moonlight:channel,bountiful:play_sound_on_client,citadel:main_channel,ic_air:main,securitycraft:securitycraft,iceandfire:main_channel,createbigcannons:network,origins:network,ad_astra:main,amendments:channel,curios:main,bountiful:select_bounty,framedblocks:main,glitchcore:config_sync,tfmg:main,apoli:channel,ars_elemental:main,orva_alarms:orva_alarms,backpacked:play] rejected vanilla connections [17:48:02] [Render thread/INFO]: Connecting to RoTop001.aternos.me, 25565 [17:48:02] [Netty Client IO #2/INFO]: CDRM Initialized with 16 registries [17:48:03] [Render thread/INFO]: Loading synced config from server: backpacked:server [17:48:06] [Render thread/INFO]: Injecting existing registry data into this CLIENT instance [17:48:06] [Render thread/INFO]: Registry minecraft:item: Found a missing id from the world supplementaries:ars_nouveau/sign_post_blue_archwood [17:48:12] [Netty Client IO #2/INFO]: Reloading server config for hangglider [17:48:13] [Netty Client IO #2/INFO]: Connected to a modded server. [17:48:13] [Render thread/INFO]: New world map session initialized! [17:48:13] [Render thread/INFO]: New Xaero hud session initialized! [17:48:14] [Render thread/INFO]: JEI StartEventObserver received class net.minecraftforge.client.event.ClientPlayerNetworkEvent$LoggingIn [17:48:14] [Render thread/INFO]: JEI StartEventObserver transitioning state from DISABLED to ENABLED [17:48:14] [Render thread/INFO]: [voicechat] Sending secret request to the server [17:48:14] [Render thread/INFO]: Started 2 worker threads [17:48:14] [Render thread/INFO]: CDRM Initialized with 16 registries [17:48:14] [Render thread/INFO]: Synced Flute Songs [17:48:14] [Render thread/INFO]: Synced Captured Mobs settings [17:48:14] [Render thread/INFO]: Synced Globe data [17:48:14] [Render thread/INFO]: Synced Hourglass data [17:48:14] [Render thread/INFO]: Starting sync for enchanting_stats [17:48:14] [Render thread/INFO]: Registered 34 enchanting_stats. [17:48:14] [Render thread/INFO]: Starting sync for rarities [17:48:14] [Render thread/INFO]: Registered 6 rarities. [17:48:14] [Render thread/INFO]: Starting sync for affixes [17:48:14] [Render thread/INFO]: Registered 81 affixes. [17:48:14] [Render thread/WARN]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category helmetRequired: 3; Provided: 2 [17:48:14] [Render thread/WARN]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category bootsRequired: 3; Provided: 2 [17:48:14] [Render thread/WARN]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category bowRequired: 5; Provided: 4 [17:48:14] [Render thread/WARN]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category crossbowRequired: 5; Provided: 4 [17:48:14] [Render thread/WARN]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category pickaxeRequired: 5; Provided: 4 [17:48:14] [Render thread/WARN]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category shovelRequired: 5; Provided: 4 [17:48:14] [Render thread/WARN]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category shieldRequired: 5; Provided: 4 [17:48:14] [Render thread/WARN]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category helmetRequired: 4; Provided: 2 [17:48:14] [Render thread/WARN]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category bootsRequired: 4; Provided: 2 [17:48:14] [Render thread/INFO]: Starting sync for gems [17:48:14] [Render thread/INFO]: Registered 19 gems. [17:48:14] [Render thread/INFO]: Reloading radar icon resources... [17:48:14] [Render thread/INFO]: Reloaded radar icon resources! [17:48:14] [Netty Client IO #2/WARN]: Your custom tfmg:casting recipe (tfmg:casting/slag_block) specified a duration. Durations have no impact on this type of recipe. [17:48:14] [Netty Client IO #2/WARN]: Your custom create:pressing recipe (tfmg:pressing/nickel_ingot) specified a duration. Durations have no impact on this type of recipe. [17:48:14] [Netty Client IO #2/WARN]: Your custom tfmg:casting recipe (tfmg:casting/steel) specified a duration. Durations have no impact on this type of recipe. [17:48:14] [Netty Client IO #2/WARN]: Your custom tfmg:vat_machine_recipe recipe (tfmg:vat_machine_recipe/naphtha) specified a heat condition. Heat conditions have no impact on this type of recipe. [17:48:14] [Netty Client IO #2/WARN]: Your custom tfmg:vat_machine_recipe recipe (tfmg:vat_machine_recipe/rubber) specified a heat condition. Heat conditions have no impact on this type of recipe. [17:48:14] [Netty Client IO #2/WARN]: Your custom tfmg:winding recipe (tfmg:sequenced_assembly/motor_step_0) specified a duration. Durations have no impact on this type of recipe. [17:48:14] [Netty Client IO #2/WARN]: Your custom tfmg:vat_machine_recipe recipe (tfmg:vat_machine_recipe/neon) specified a duration. Durations have no impact on this type of recipe. [17:48:14] [Netty Client IO #2/WARN]: Your custom tfmg:industrial_blasting recipe (tfmg:industrial_blasting/steel_from_dust) specified a duration. Durations have no impact on this type of recipe. [17:48:14] [Netty Client IO #2/WARN]: Your custom tfmg:vat_machine_recipe recipe (tfmg:vat_machine_recipe/plastic_from_propylene) specified a heat condition. Heat conditions have no impact on this type of recipe. [17:48:14] [Netty Client IO #2/WARN]: Your custom tfmg:winding recipe (tfmg:winding/resistor) specified a duration. Durations have no impact on this type of recipe. [17:48:14] [Netty Client IO #2/WARN]: Your custom tfmg:winding recipe (tfmg:sequenced_assembly/potentiometer_step_0) specified a duration. Durations have no impact on this type of recipe. [17:48:14] [Netty Client IO #2/WARN]: Your custom tfmg:hot_blast recipe (tfmg:hot_blast/hot_air) specified a duration. Durations have no impact on this type of recipe. [17:48:14] [Netty Client IO #2/WARN]: Your custom tfmg:vat_machine_recipe recipe (tfmg:vat_machine_recipe/plastic_from_ethylene) specified a heat condition. Heat conditions have no impact on this type of recipe. [17:48:14] [Netty Client IO #2/WARN]: Your custom create:pressing recipe (tfmg:pressing/synthetic_leather) specified a duration. Durations have no impact on this type of recipe. [17:48:14] [Netty Client IO #2/WARN]: Your custom tfmg:industrial_blasting recipe (tfmg:industrial_blasting/steel) specified a duration. Durations have no impact on this type of recipe. [17:48:15] [Netty Client IO #2/WARN]: Your custom tfmg:winding recipe (tfmg:sequenced_assembly/generator_step_2) specified a duration. Durations have no impact on this type of recipe. [17:48:15] [Netty Client IO #2/WARN]: Your custom tfmg:casting recipe (tfmg:casting/plastic_sheet) specified a duration. Durations have no impact on this type of recipe. [17:48:15] [Netty Client IO #2/WARN]: Your custom tfmg:winding recipe (tfmg:winding/electromagnetic_coil) specified a duration. Durations have no impact on this type of recipe. [17:48:15] [Netty Client IO #2/WARN]: Your custom create:pressing recipe (tfmg:pressing/aluminum_ingot) specified a duration. Durations have no impact on this type of recipe. [17:48:15] [Netty Client IO #2/WARN]: Your custom tfmg:vat_machine_recipe recipe (tfmg:vat_machine_recipe/arc_furnace_steel) specified a duration. Durations have no impact on this type of recipe. [17:48:15] [Netty Client IO #2/WARN]: Your custom tfmg:coking recipe (tfmg:coking/coal) specified a duration. Durations have no impact on this type of recipe. [17:48:15] [Netty Client IO #2/WARN]: Your custom tfmg:industrial_blasting recipe (tfmg:industrial_blasting/silicon) specified a duration. Durations have no impact on this type of recipe. [17:48:15] [Netty Client IO #2/WARN]: Your custom tfmg:coking recipe (tfmg:coking/charcoal) specified a duration. Durations have no impact on this type of recipe. [17:48:15] [Netty Client IO #2/WARN]: Your custom tfmg:vat_machine_recipe recipe (tfmg:vat_machine_recipe/aluminum) specified a duration. Durations have no impact on this type of recipe. [17:48:15] [Netty Client IO #2/WARN]: Your custom tfmg:vat_machine_recipe recipe (tfmg:vat_machine_recipe/aluminum) specified a heat condition. Heat conditions have no impact on this type of recipe. [17:48:15] [Netty Client IO #2/WARN]: Your custom tfmg:vat_machine_recipe recipe (tfmg:vat_machine_recipe/etched_circuit_board) specified a duration. Durations have no impact on this type of recipe. [17:48:15] [Netty Client IO #2/WARN]: Your custom create:pressing recipe (tfmg:pressing/lead_ingot) specified a duration. Durations have no impact on this type of recipe. [17:48:15] [Netty Client IO #2/WARN]: Your custom create:pressing recipe (tfmg:pressing/cast_iron_ingot) specified a duration. Durations have no impact on this type of recipe. [17:48:15] [Netty Client IO #2/WARN]: Your custom tfmg:casting recipe (tfmg:casting/silicon) specified a duration. Durations have no impact on this type of recipe. [17:48:15] [Netty Client IO #2/WARN]: Your custom tfmg:casting recipe (tfmg:casting/cinderblock) specified a duration. Durations have no impact on this type of recipe. [17:48:15] [Netty Client IO #2/WARN]: Your custom tfmg:industrial_blasting recipe (tfmg:industrial_blasting/steel_from_raw_iron) specified a duration. Durations have no impact on this type of recipe. [17:48:15] [Render thread/WARN]: Unknown recipe category: apotheosis:fletching/apotheosis:fletching/broadhead_arrow [17:48:15] [Render thread/WARN]: Unknown recipe category: apotheosis:fletching/apotheosis:fletching/arrow [17:48:15] [Render thread/WARN]: Unknown recipe category: brewery:drying/brewery:dried_wheat [17:48:15] [Render thread/WARN]: Unknown recipe category: apotheosis:fletching/apotheosis:fletching/explosive_arrow [17:48:15] [Render thread/ERROR]: Somehow changed an item type into itself. How? Target mat minecraft:oak, destination map minecraft:oak, item oak_planks [17:48:15] [Render thread/ERROR]: Somehow changed an item type into itself. How? Target mat minecraft:oak, destination map minecraft:oak, item oak_planks [17:48:15] [Render thread/ERROR]: Somehow changed an item type into itself. How? Target mat minecraft:oak, destination map minecraft:oak, item oak_planks [17:48:15] [Render thread/WARN]: Unknown recipe category: brewery:drying/brewery:dried_corn [17:48:15] [Render thread/WARN]: Unknown recipe category: brewery:drying/brewery:dried_barley [17:48:15] [Render thread/WARN]: Unknown recipe category: apotheosis:fletching/apotheosis:fletching/diamond_mining_arrow [17:48:15] [Render thread/WARN]: Unknown recipe category: apotheosis:fletching/apotheosis:fletching/spectral_arrow [17:48:15] [Render thread/WARN]: Unknown recipe category: apotheosis:fletching/apotheosis:fletching/obsidian_arrow [17:48:15] [Render thread/WARN]: Unknown recipe category: apotheosis:fletching/apotheosis:fletching/iron_mining_arrow [17:48:17] [Render thread/INFO]: JEI StartEventObserver received class net.minecraftforge.client.event.RecipesUpdatedEvent [17:48:21] [Render thread/INFO]: Took 9,4521 ms to reload cauldron interactions [17:48:21] [Render thread/INFO]: JEI StartEventObserver received class net.minecraftforge.event.TagsUpdatedEvent [17:48:21] [Render thread/INFO]: JEI StartEventObserver transitioning state from ENABLED to JEI_STARTED [17:48:21] [Render thread/INFO]: Starting JEI... [17:48:21] [Render thread/INFO]: Registering item subtypes... [17:48:21] [Render thread/INFO]: Registering item subtypes took 12.39 ms [17:48:21] [Render thread/INFO]: Registering fluid subtypes... [17:48:21] [Render thread/INFO]: Registering fluid subtypes took 1.348 ms [17:48:21] [Render thread/INFO]: Registering ingredients... [17:48:21] [Render thread/WARN]: Item Group has no display items and no search tab display items. Items from this group will be missing from the JEI ingredient list. Инструменты оператора [17:48:21] [Render thread/WARN]: Found a broken ingredient 1 air BlockItem(supplementaries:sign_post_wall) java.lang.IllegalStateException: Item has no registry name: 1 air BlockItem(supplementaries:sign_post_wall)     at mezz.jei.common.util.StackHelper.lambda$getRegistryNameForStack$0(StackHelper.java:65) ~[jei-1.20.1-forge-15.20.0.112.jar%23284!/:15.20.0.112]     at java.util.Optional.orElseThrow(Optional.java:403) ~[?:?]     at mezz.jei.common.util.StackHelper.getRegistryNameForStack(StackHelper.java:63) ~[jei-1.20.1-forge-15.20.0.112.jar%23284!/:15.20.0.112]     at mezz.jei.common.util.StackHelper.getUniqueIdentifierForStack(StackHelper.java:43) ~[jei-1.20.1-forge-15.20.0.112.jar%23284!/:15.20.0.112]     at mezz.jei.library.plugins.vanilla.ingredients.ItemStackHelper.getUniqueId(ItemStackHelper.java:69) ~[jei-1.20.1-forge-15.20.0.112.jar%23284!/:15.20.0.112]     at mezz.jei.library.plugins.vanilla.ingredients.ItemStackHelper.getUniqueId(ItemStackHelper.java:36) ~[jei-1.20.1-forge-15.20.0.112.jar%23284!/:15.20.0.112]     at mezz.jei.library.ingredients.IngredientSet.getUid(IngredientSet.java:34) ~[jei-1.20.1-forge-15.20.0.112.jar%23284!/:15.20.0.112]     at mezz.jei.library.ingredients.IngredientSet.add(IngredientSet.java:48) ~[jei-1.20.1-forge-15.20.0.112.jar%23284!/:15.20.0.112]     at java.util.AbstractCollection.addAll(AbstractCollection.java:336) ~[?:?]     at mezz.jei.library.ingredients.IngredientInfo.<init>(IngredientInfo.java:27) ~[jei-1.20.1-forge-15.20.0.112.jar%23284!/:15.20.0.112]     at mezz.jei.library.load.registration.IngredientManagerBuilder.register(IngredientManagerBuilder.java:50) ~[jei-1.20.1-forge-15.20.0.112.jar%23284!/:15.20.0.112]     at mezz.jei.library.plugins.vanilla.VanillaPlugin.registerIngredients(VanillaPlugin.java:172) ~[jei-1.20.1-forge-15.20.0.112.jar%23284!/:15.20.0.112]     at mezz.jei.library.load.PluginLoader.lambda$registerIngredients$2(PluginLoader.java:79) ~[jei-1.20.1-forge-15.20.0.112.jar%23284!/:15.20.0.112]     at mezz.jei.library.load.PluginCaller.callOnPlugins(PluginCaller.java:25) ~[jei-1.20.1-forge-15.20.0.112.jar%23284!/:15.20.0.112]     at mezz.jei.library.load.PluginLoader.registerIngredients(PluginLoader.java:79) ~[jei-1.20.1-forge-15.20.0.112.jar%23284!/:15.20.0.112]     at mezz.jei.library.startup.JeiStarter.start(JeiStarter.java:106) ~[jei-1.20.1-forge-15.20.0.112.jar%23284!/:15.20.0.112]     at mezz.jei.forge.startup.StartEventObserver.transitionState(StartEventObserver.java:130) ~[jei-1.20.1-forge-15.20.0.112.jar%23284!/:15.20.0.112]     at mezz.jei.forge.startup.StartEventObserver.onEvent(StartEventObserver.java:98) ~[jei-1.20.1-forge-15.20.0.112.jar%23284!/:15.20.0.112]     at net.minecraftforge.eventbus.EventBus.doCastFilter(EventBus.java:260) ~[eventbus-6.0.5.jar%2387!/:?]     at net.minecraftforge.eventbus.EventBus.lambda$addListener$11(EventBus.java:252) ~[eventbus-6.0.5.jar%2387!/:?]     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:315) ~[eventbus-6.0.5.jar%2387!/:?]     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:296) ~[eventbus-6.0.5.jar%2387!/:?]     at net.minecraft.client.multiplayer.ClientPacketListener.m_5859_(ClientPacketListener.java:1451) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.network.protocol.game.ClientboundUpdateTagsPacket.m_5797_(ClientboundUpdateTagsPacket.java:35) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.network.protocol.game.ClientboundUpdateTagsPacket.m_5797_(ClientboundUpdateTagsPacket.java:11) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.network.protocol.PacketUtils.m_263899_(PacketUtils.java:22) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.util.thread.BlockableEventLoop.m_6367_(BlockableEventLoop.java:156) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.util.thread.ReentrantBlockableEventLoop.m_6367_(ReentrantBlockableEventLoop.java:23) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.util.thread.BlockableEventLoop.m_7245_(BlockableEventLoop.java:130) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.util.thread.BlockableEventLoop.m_18699_(BlockableEventLoop.java:115) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1106) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:218) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [17:48:21] [Render thread/INFO]: Registering ingredients: jei:minecraft took 191.5 milliseconds [17:48:21] [Render thread/INFO]: Registering ingredients took 192.0 ms [17:48:21] [Render thread/INFO]: Registering extra ingredients... [17:48:21] [Render thread/INFO]: Registering extra ingredients took 3.070 ms [17:48:21] [Render thread/INFO]: Registering search ingredient aliases... [17:48:21] [Render thread/INFO]: Registering search ingredient aliases took 488.0 ?s [17:48:21] [Render thread/INFO]: Registering categories... [17:48:21] [Render thread/INFO]: Registering categories: jei:minecraft took 18.43 milliseconds [17:48:21] [Render thread/INFO]: Registering categories: createdieselgenerators:jei_plugin took 24.69 milliseconds [17:48:21] [Render thread/INFO]: Registering categories: create:jei_plugin took 28.88 milliseconds [17:48:21] [Render thread/INFO]: Registering categories took 128.5 ms [17:48:21] [Render thread/INFO]: Registering vanilla category extensions... [17:48:21] [Render thread/INFO]: Registering vanilla category extensions took 3.496 ms [17:48:21] [Render thread/INFO]: Registering recipe catalysts... [17:48:21] [Render thread/INFO]: Registering recipe catalysts took 2.441 ms [17:48:21] [Render thread/INFO]: Building recipe registry... [17:48:21] [Render thread/INFO]: Building recipe registry took 20.17 ms [17:48:21] [Render thread/INFO]: Registering advanced plugins... [17:48:21] [Render thread/INFO]: Registering advanced plugins took 268.1 ?s [17:48:21] [Render thread/INFO]: Registering recipes... [17:48:22] [Render thread/INFO]: Registering recipes: jei:minecraft took 1.015 seconds [17:48:22] [Render thread/INFO]: Registering recipes: apotheosis:adventure_module took 23.48 milliseconds [17:48:22] [Render thread/INFO]: Registering recipes: farmersdelight:jei_plugin took 11.31 milliseconds [17:48:22] [Render thread/INFO]: Registering recipes: ars_nouveau:main took 20.95 milliseconds [17:48:22] [Render thread/INFO]: Registering recipes: securitycraft:securitycraft took 14.90 milliseconds [17:48:22] [Render thread/INFO]: Registering recipes: createbigcannons:jei_plugin took 27.48 milliseconds [17:48:22] [Render thread/INFO]: Registering recipes: create:jei_plugin took 320.4 milliseconds [17:48:23] [Render thread/INFO]: Registering recipes: supplementaries:jei_plugin took 14.23 milliseconds [17:48:23] [Render thread/INFO]: Registering recipes: framedblocks:jei_plugin took 225.5 milliseconds [17:48:23] [Render thread/INFO]: Registering recipes took 1.719 s [17:48:23] [Render thread/INFO]: Registering recipes transfer handlers... [17:48:23] [Render thread/INFO]: Registering recipes transfer handlers took 7.198 ms [17:48:23] [Render thread/INFO]: Building runtime... [17:48:23] [Render thread/INFO]: Registering gui handlers... [17:48:23] [Render thread/INFO]: Registering gui handlers took 12.47 ms [17:48:23] [Render thread/INFO]: Registering Runtime... [17:48:23] [Render thread/INFO]: Starting JEI GUI [17:48:23] [Render thread/INFO]: Building ingredient list... [17:48:23] [Render thread/INFO]: Building ingredient list took 105.8 ms [17:48:23] [Render thread/INFO]: Building ingredient filter... [17:48:23] [Render thread/INFO]: Adding 8500 ingredients [17:48:25] [Render thread/INFO]: Added 8500 ingredients [17:48:25] [Render thread/INFO]: Building ingredient filter took 2.001 s [17:48:25] [Render thread/INFO]: Registering Runtime: jei:forge_gui took 2.199 seconds [17:48:25] [Render thread/INFO]: Registering Runtime took 2.200 s [17:48:25] [Render thread/INFO]: Building runtime took 2.219 s [17:48:25] [Render thread/INFO]: Sending Runtime... [17:48:25] [Render thread/INFO]: Sending Runtime took 990.4 ?s [17:48:25] [Render thread/INFO]: Starting JEI took 4.359 s [17:48:25] [Render thread/INFO]: Finished additional setup in 0 ms [17:48:25] [Render thread/INFO]: Minimap updated server level id: -771711666 for world ResourceKey[minecraft:dimension / minecraft:overworld] [17:48:25] [Render thread/INFO]: [System] [CHAT] If you need help with Orva Alarms Press "P" (If not changed) [17:48:25] [Render thread/INFO]: Synced moonlight-common.toml configs [17:48:25] [Render thread/INFO]: [System] [CHAT] [SecurityCraft] Спасибо за использование SecurityCraft v1.10.0.1! Совет: Если вам нравится SecurityCraft, пожалуйста, подумайте о поддержке нас на Patreon! Вы можете работать с нами, чтобы внести функцию вашего выбора в мод. https://www.patreon.com/Geforce [17:48:25] [Render thread/INFO]: Synced supplementaries-common.toml configs [17:48:25] [Render thread/INFO]: Synced amendments-common.toml configs [17:48:25] [Render thread/INFO]: Loaded 2335 advancements [17:48:25] [pool-27-thread-1/INFO]: check internet connection https://auth.tlauncher.org/skin/api/check.bin timeout 1500 ms [17:48:26] [pool-27-thread-1/INFO]: passed auth.tlauncher.org within 599 ms [17:48:26] [pool-26-thread-1/INFO]: do head request -> https://auth.tlauncher.org/skin/v1/profile/texture/login/smivi RequestMetadata(lastModified=null, eTag=W/fe7f6abba165757da62610990758e66b, sha1=c372829d53fc14333ba140f3c6d015e400515aad) local file C:\Users\Admin\AppData\Roaming\.minecraft\cache\https_auth.tlauncher.org\skin\v1\profile\texture\login\smivi [17:48:27] [pool-26-thread-1/INFO]: do head request -> https://auth.tlauncher.org/skin/fileservice/skins/skin_smivi.png RequestMetadata(lastModified=null, eTag=267d6f332fcc284c160747f2bd22f533, sha1=bc7eb7fd5cb16e4729dd96263441cc07c1df4204) local file C:\Users\Admin\AppData\Roaming\.minecraft\cache\https_auth.tlauncher.org\skin\fileservice\skins\skin_smivi.png [17:48:30] [Render thread/INFO]: [voicechat] Received secret [17:48:30] [Render thread/INFO]: [voicechat] Connecting to voice chat server: '185.107.193.54:63033' [17:48:30] [VoiceChatAuthenticationThread/INFO]: [voicechat] Trying to authenticate voice chat connection [17:48:30] [VoiceChatConnectionThread/INFO]: [voicechat] Server acknowledged authentication [17:48:30] [Render thread/ERROR]: Error rendering overlay 'create:goggle_info' java.lang.ClassCastException: class net.minecraft.world.phys.EntityHitResult cannot be cast to class net.minecraft.world.phys.BlockHitResult (net.minecraft.world.phys.EntityHitResult and net.minecraft.world.phys.BlockHitResult are in module [email protected] of loader 'TRANSFORMER' @1be8c122)     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.handler$chj000$renderOverlay(GoggleOverlayRenderer.java:1066) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.renderOverlay(GoggleOverlayRenderer.java) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at net.minecraftforge.client.gui.overlay.ForgeGui.lambda$render$0(ForgeGui.java:126) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at com.google.common.collect.ImmutableList.forEach(ImmutableList.java:422) ~[guava-31.1-jre.jar%23109!/:?]     at net.minecraftforge.client.gui.overlay.ForgeGui.m_280421_(ForgeGui.java:121) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:945) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:218) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [17:48:31] [VoiceChatAuthenticationThread/INFO]: [voicechat] Trying to validate voice chat connection [17:48:31] [VoiceChatConnectionThread/INFO]: [voicechat] Server acknowledged connection check [17:48:32] [Render thread/INFO]: Exception when loading ars_nouveau:light_block texture, using material colour. [17:48:32] [Render thread/INFO]: Black texture 16 [17:48:32] [Render thread/ERROR]: Error rendering overlay 'create:goggle_info' java.lang.ClassCastException: class net.minecraft.world.phys.EntityHitResult cannot be cast to class net.minecraft.world.phys.BlockHitResult (net.minecraft.world.phys.EntityHitResult and net.minecraft.world.phys.BlockHitResult are in module [email protected] of loader 'TRANSFORMER' @1be8c122)     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.handler$chj000$renderOverlay(GoggleOverlayRenderer.java:1066) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.renderOverlay(GoggleOverlayRenderer.java) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at net.minecraftforge.client.gui.overlay.ForgeGui.lambda$render$0(ForgeGui.java:126) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at com.google.common.collect.ImmutableList.forEach(ImmutableList.java:422) ~[guava-31.1-jre.jar%23109!/:?]     at net.minecraftforge.client.gui.overlay.ForgeGui.m_280421_(ForgeGui.java:121) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:945) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:218) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [17:48:32] [Render thread/ERROR]: Error rendering overlay 'create:goggle_info' java.lang.ClassCastException: class net.minecraft.world.phys.EntityHitResult cannot be cast to class net.minecraft.world.phys.BlockHitResult (net.minecraft.world.phys.EntityHitResult and net.minecraft.world.phys.BlockHitResult are in module [email protected] of loader 'TRANSFORMER' @1be8c122)     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.handler$chj000$renderOverlay(GoggleOverlayRenderer.java:1066) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.renderOverlay(GoggleOverlayRenderer.java) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at net.minecraftforge.client.gui.overlay.ForgeGui.lambda$render$0(ForgeGui.java:126) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at com.google.common.collect.ImmutableList.forEach(ImmutableList.java:422) ~[guava-31.1-jre.jar%23109!/:?]     at net.minecraftforge.client.gui.overlay.ForgeGui.m_280421_(ForgeGui.java:121) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:945) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:218) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [17:48:32] [Render thread/ERROR]: Error rendering overlay 'create:goggle_info' java.lang.ClassCastException: class net.minecraft.world.phys.EntityHitResult cannot be cast to class net.minecraft.world.phys.BlockHitResult (net.minecraft.world.phys.EntityHitResult and net.minecraft.world.phys.BlockHitResult are in module [email protected] of loader 'TRANSFORMER' @1be8c122)     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.handler$chj000$renderOverlay(GoggleOverlayRenderer.java:1066) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.renderOverlay(GoggleOverlayRenderer.java) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at net.minecraftforge.client.gui.overlay.ForgeGui.lambda$render$0(ForgeGui.java:126) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at com.google.common.collect.ImmutableList.forEach(ImmutableList.java:422) ~[guava-31.1-jre.jar%23109!/:?]     at net.minecraftforge.client.gui.overlay.ForgeGui.m_280421_(ForgeGui.java:121) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:945) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:218) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [17:48:32] [Render thread/ERROR]: Error rendering overlay 'create:goggle_info' java.lang.ClassCastException: class net.minecraft.world.phys.EntityHitResult cannot be cast to class net.minecraft.world.phys.BlockHitResult (net.minecraft.world.phys.EntityHitResult and net.minecraft.world.phys.BlockHitResult are in module [email protected] of loader 'TRANSFORMER' @1be8c122)     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.handler$chj000$renderOverlay(GoggleOverlayRenderer.java:1066) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.renderOverlay(GoggleOverlayRenderer.java) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at net.minecraftforge.client.gui.overlay.ForgeGui.lambda$render$0(ForgeGui.java:126) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at com.google.common.collect.ImmutableList.forEach(ImmutableList.java:422) ~[guava-31.1-jre.jar%23109!/:?]     at net.minecraftforge.client.gui.overlay.ForgeGui.m_280421_(ForgeGui.java:121) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:945) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:218) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [17:48:32] [Render thread/ERROR]: Error rendering overlay 'create:goggle_info' java.lang.ClassCastException: class net.minecraft.world.phys.EntityHitResult cannot be cast to class net.minecraft.world.phys.BlockHitResult (net.minecraft.world.phys.EntityHitResult and net.minecraft.world.phys.BlockHitResult are in module [email protected] of loader 'TRANSFORMER' @1be8c122)     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.handler$chj000$renderOverlay(GoggleOverlayRenderer.java:1066) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.renderOverlay(GoggleOverlayRenderer.java) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at net.minecraftforge.client.gui.overlay.ForgeGui.lambda$render$0(ForgeGui.java:126) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at com.google.common.collect.ImmutableList.forEach(ImmutableList.java:422) ~[guava-31.1-jre.jar%23109!/:?]     at net.minecraftforge.client.gui.overlay.ForgeGui.m_280421_(ForgeGui.java:121) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:945) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:218) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [17:48:32] [Render thread/ERROR]: Error rendering overlay 'create:goggle_info' java.lang.ClassCastException: class net.minecraft.world.phys.EntityHitResult cannot be cast to class net.minecraft.world.phys.BlockHitResult (net.minecraft.world.phys.EntityHitResult and net.minecraft.world.phys.BlockHitResult are in module [email protected] of loader 'TRANSFORMER' @1be8c122)     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.handler$chj000$renderOverlay(GoggleOverlayRenderer.java:1066) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.renderOverlay(GoggleOverlayRenderer.java) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at net.minecraftforge.client.gui.overlay.ForgeGui.lambda$render$0(ForgeGui.java:126) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at com.google.common.collect.ImmutableList.forEach(ImmutableList.java:422) ~[guava-31.1-jre.jar%23109!/:?]     at net.minecraftforge.client.gui.overlay.ForgeGui.m_280421_(ForgeGui.java:121) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:945) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:218) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [17:48:32] [Render thread/ERROR]: Error rendering overlay 'create:goggle_info' java.lang.ClassCastException: class net.minecraft.world.phys.EntityHitResult cannot be cast to class net.minecraft.world.phys.BlockHitResult (net.minecraft.world.phys.EntityHitResult and net.minecraft.world.phys.BlockHitResult are in module [email protected] of loader 'TRANSFORMER' @1be8c122)     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.handler$chj000$renderOverlay(GoggleOverlayRenderer.java:1066) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.renderOverlay(GoggleOverlayRenderer.java) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at net.minecraftforge.client.gui.overlay.ForgeGui.lambda$render$0(ForgeGui.java:126) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at com.google.common.collect.ImmutableList.forEach(ImmutableList.java:422) ~[guava-31.1-jre.jar%23109!/:?]     at net.minecraftforge.client.gui.overlay.ForgeGui.m_280421_(ForgeGui.java:121) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:945) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:218) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [17:48:32] [Render thread/ERROR]: Error rendering overlay 'create:goggle_info' java.lang.ClassCastException: class net.minecraft.world.phys.EntityHitResult cannot be cast to class net.minecraft.world.phys.BlockHitResult (net.minecraft.world.phys.EntityHitResult and net.minecraft.world.phys.BlockHitResult are in module [email protected] of loader 'TRANSFORMER' @1be8c122)     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.handler$chj000$renderOverlay(GoggleOverlayRenderer.java:1066) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.renderOverlay(GoggleOverlayRenderer.java) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at net.minecraftforge.client.gui.overlay.ForgeGui.lambda$render$0(ForgeGui.java:126) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at com.google.common.collect.ImmutableList.forEach(ImmutableList.java:422) ~[guava-31.1-jre.jar%23109!/:?]     at net.minecraftforge.client.gui.overlay.ForgeGui.m_280421_(ForgeGui.java:121) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:945) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:218) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [17:48:32] [Render thread/ERROR]: Error rendering overlay 'create:goggle_info' java.lang.ClassCastException: class net.minecraft.world.phys.EntityHitResult cannot be cast to class net.minecraft.world.phys.BlockHitResult (net.minecraft.world.phys.EntityHitResult and net.minecraft.world.phys.BlockHitResult are in module [email protected] of loader 'TRANSFORMER' @1be8c122)     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.handler$chj000$renderOverlay(GoggleOverlayRenderer.java:1066) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.renderOverlay(GoggleOverlayRenderer.java) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at net.minecraftforge.client.gui.overlay.ForgeGui.lambda$render$0(ForgeGui.java:126) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at com.google.common.collect.ImmutableList.forEach(ImmutableList.java:422) ~[guava-31.1-jre.jar%23109!/:?]     at net.minecraftforge.client.gui.overlay.ForgeGui.m_280421_(ForgeGui.java:121) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:945) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:218) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [17:48:32] [Render thread/ERROR]: Error rendering overlay 'create:goggle_info' java.lang.ClassCastException: class net.minecraft.world.phys.EntityHitResult cannot be cast to class net.minecraft.world.phys.BlockHitResult (net.minecraft.world.phys.EntityHitResult and net.minecraft.world.phys.BlockHitResult are in module [email protected] of loader 'TRANSFORMER' @1be8c122)     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.handler$chj000$renderOverlay(GoggleOverlayRenderer.java:1066) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.renderOverlay(GoggleOverlayRenderer.java) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at net.minecraftforge.client.gui.overlay.ForgeGui.lambda$render$0(ForgeGui.java:126) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at com.google.common.collect.ImmutableList.forEach(ImmutableList.java:422) ~[guava-31.1-jre.jar%23109!/:?]     at net.minecraftforge.client.gui.overlay.ForgeGui.m_280421_(ForgeGui.java:121) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:945) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:218) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [17:48:32] [Render thread/ERROR]: Error rendering overlay 'create:goggle_info' java.lang.ClassCastException: class net.minecraft.world.phys.EntityHitResult cannot be cast to class net.minecraft.world.phys.BlockHitResult (net.minecraft.world.phys.EntityHitResult and net.minecraft.world.phys.BlockHitResult are in module [email protected] of loader 'TRANSFORMER' @1be8c122)     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.handler$chj000$renderOverlay(GoggleOverlayRenderer.java:1066) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.renderOverlay(GoggleOverlayRenderer.java) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at net.minecraftforge.client.gui.overlay.ForgeGui.lambda$render$0(ForgeGui.java:126) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at com.google.common.collect.ImmutableList.forEach(ImmutableList.java:422) ~[guava-31.1-jre.jar%23109!/:?]     at net.minecraftforge.client.gui.overlay.ForgeGui.m_280421_(ForgeGui.java:121) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:945) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:218) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [17:48:32] [Render thread/ERROR]: Error rendering overlay 'create:goggle_info' java.lang.ClassCastException: class net.minecraft.world.phys.EntityHitResult cannot be cast to class net.minecraft.world.phys.BlockHitResult (net.minecraft.world.phys.EntityHitResult and net.minecraft.world.phys.BlockHitResult are in module [email protected] of loader 'TRANSFORMER' @1be8c122)     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.handler$chj000$renderOverlay(GoggleOverlayRenderer.java:1066) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.renderOverlay(GoggleOverlayRenderer.java) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at net.minecraftforge.client.gui.overlay.ForgeGui.lambda$render$0(ForgeGui.java:126) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at com.google.common.collect.ImmutableList.forEach(ImmutableList.java:422) ~[guava-31.1-jre.jar%23109!/:?]     at net.minecraftforge.client.gui.overlay.ForgeGui.m_280421_(ForgeGui.java:121) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:945) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:218) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [17:48:33] [Render thread/INFO]: calculated cape performance:TEXTURE_272, middle time: 1.1666666666666667 [17:48:34] [Render thread/INFO]: can use texture size:TEXTURE_272, middle time: 1.0 [17:48:49] [Render thread/INFO]: [System] [CHAT] smivi разбился насмерть [17:48:52] [Render thread/INFO]: Minimap updated server level id: -771711666 for world ResourceKey[minecraft:dimension / minecraft:overworld] [17:48:52] [Render thread/ERROR]: Error executing task on Client java.util.ConcurrentModificationException: null     at java.util.HashMap$Values.forEach(HashMap.java:1068) ~[?:?]     at net.minecraft.world.level.chunk.LevelChunk.m_187957_(LevelChunk.java:576) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.world.level.chunk.LevelChunk.m_187971_(LevelChunk.java:449) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.multiplayer.ClientChunkCache.m_194116_(ClientChunkCache.java:115) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.multiplayer.ClientPacketListener.m_194198_(ClientPacketListener.java:714) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.multiplayer.ClientPacketListener.m_183388_(ClientPacketListener.java:678) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.network.protocol.game.ClientboundLevelChunkWithLightPacket.m_5797_(ClientboundLevelChunkWithLightPacket.java:45) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.network.protocol.game.ClientboundLevelChunkWithLightPacket.m_5797_(ClientboundLevelChunkWithLightPacket.java:12) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.network.protocol.PacketUtils.m_263899_(PacketUtils.java:22) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.util.thread.BlockableEventLoop.m_6367_(BlockableEventLoop.java:156) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.util.thread.ReentrantBlockableEventLoop.m_6367_(ReentrantBlockableEventLoop.java:23) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.util.thread.BlockableEventLoop.m_7245_(BlockableEventLoop.java:130) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.util.thread.BlockableEventLoop.m_18699_(BlockableEventLoop.java:115) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1106) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:218) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [17:48:52] [Render thread/ERROR]: Error rendering overlay 'create:goggle_info' java.lang.ClassCastException: class net.minecraft.world.phys.EntityHitResult cannot be cast to class net.minecraft.world.phys.BlockHitResult (net.minecraft.world.phys.EntityHitResult and net.minecraft.world.phys.BlockHitResult are in module [email protected] of loader 'TRANSFORMER' @1be8c122)     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.handler$chj000$renderOverlay(GoggleOverlayRenderer.java:1066) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.renderOverlay(GoggleOverlayRenderer.java) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at net.minecraftforge.client.gui.overlay.ForgeGui.lambda$render$0(ForgeGui.java:126) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at com.google.common.collect.ImmutableList.forEach(ImmutableList.java:422) ~[guava-31.1-jre.jar%23109!/:?]     at net.minecraftforge.client.gui.overlay.ForgeGui.m_280421_(ForgeGui.java:121) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:945) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:218) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [17:48:52] [Render thread/ERROR]: Error rendering overlay 'create:goggle_info' java.lang.ClassCastException: class net.minecraft.world.phys.EntityHitResult cannot be cast to class net.minecraft.world.phys.BlockHitResult (net.minecraft.world.phys.EntityHitResult and net.minecraft.world.phys.BlockHitResult are in module [email protected] of loader 'TRANSFORMER' @1be8c122)     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.handler$chj000$renderOverlay(GoggleOverlayRenderer.java:1066) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.renderOverlay(GoggleOverlayRenderer.java) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at net.minecraftforge.client.gui.overlay.ForgeGui.lambda$render$0(ForgeGui.java:126) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at com.google.common.collect.ImmutableList.forEach(ImmutableList.java:422) ~[guava-31.1-jre.jar%23109!/:?]     at net.minecraftforge.client.gui.overlay.ForgeGui.m_280421_(ForgeGui.java:121) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:945) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:218) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [17:48:52] [Render thread/ERROR]: Error rendering overlay 'create:goggle_info' java.lang.ClassCastException: class net.minecraft.world.phys.EntityHitResult cannot be cast to class net.minecraft.world.phys.BlockHitResult (net.minecraft.world.phys.EntityHitResult and net.minecraft.world.phys.BlockHitResult are in module [email protected] of loader 'TRANSFORMER' @1be8c122)     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.handler$chj000$renderOverlay(GoggleOverlayRenderer.java:1066) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at com.simibubi.create.content.equipment.goggles.GoggleOverlayRenderer.renderOverlay(GoggleOverlayRenderer.java) ~[create-1.20.1-6.0.6.jar%23258!/:6.0.6]     at net.minecraftforge.client.gui.overlay.ForgeGui.lambda$render$0(ForgeGui.java:126) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at com.google.common.collect.ImmutableList.forEach(ImmutableList.java:422) ~[guava-31.1-jre.jar%23109!/:?]     at net.minecraftforge.client.gui.overlay.ForgeGui.m_280421_(ForgeGui.java:121) ~[forge-1.20.1-47.4.0-universal.jar%23319!/:?]     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:945) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23314!/:?]     at net.minecraft.client.main.Main.main(Main.java:218) ~[Forge%201.20.1.jar:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]     at java.lang.reflect.Method.invoke(Method.java:569) ~[?:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?]     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?]     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?]  
    • i started to play this modpack and got surprised by how slow it is to mine all type of blocks, so, i wanted to modifi the general value that determines the mining speed of the player, but i couldnt find a simple way, somebody, have at least an idea of how to do this? thank u guys
  • Topics

×
×
  • Create New...

Important Information

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