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 : FML@8.0.99.99,modmercenario@1.8,Forge@11.14.3.1520,mcp@9.05
[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
  Quote
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 : FML@8.0.99.99,modmercenario@1.8,Forge@11.14.4.1577,mcp@9.05,examplemod@1.0
[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 : FML@8.0.99.99,modmercenario@1.8,Forge@11.14.4.1577,mcp@9.05,examplemod@1.0
[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

    • cat_jam, rainbows, make_bubbles_pop and cavedust are client-side-only mods Remove these from your server
    • Please help, we are running a kinda big minecraft RP server with tons of mods and a mod we made ourselves, currently the server runs for 5 to 30min and then it crashes, I'm not a programer or anything I'm just trying to help the staff figure out what to do.   ---- Minecraft Crash Report ---- // But it works on my machine. Time: 2025-07-27 05:29:42 Description: Exception in server tick loop java.util.ConcurrentModificationException: null     at java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1013) ~[?:?] {}     at java.util.ArrayList$Itr.next(ArrayList.java:967) ~[?:?] {}     at com.google.common.collect.Iterators$1.next(Iterators.java:146) ~[guava-31.1-jre.jar%2374!/:?] {}     at java.util.Iterator.forEachRemaining(Iterator.java:133) ~[?:?] {re:mixin}     at java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1845) ~[?:?] {}     at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] {}     at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] {}     at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?] {}     at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?] {}     at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] {}     at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?] {}     at net.minecraft.world.level.entity.PersistentEntitySectionManager.m_157543_(PersistentEntitySectionManager.java:175) ~[server-1.20.1-20230612.114412-srg.jar%23607!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:183) ~[?:?] {}     at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?] {}     at java.util.stream.LongPipeline$1$1.accept(LongPipeline.java:177) ~[?:?] {}     at java.util.PrimitiveIterator$OfLong.forEachRemaining(PrimitiveIterator.java:183) ~[?:?] {}     at java.util.Spliterators$LongIteratorSpliterator.forEachRemaining(Spliterators.java:2046) ~[?:?] {}     at java.util.Spliterator$OfLong.forEachRemaining(Spliterator.java:775) ~[?:?] {}     at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] {}     at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] {}     at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?] {}     at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?] {}     at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] {}     at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?] {}     at net.minecraft.world.level.entity.PersistentEntitySectionManager.m_157527_(PersistentEntitySectionManager.java:160) ~[server-1.20.1-20230612.114412-srg.jar%23607!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.world.level.entity.PersistentEntitySectionManager.m_287207_(PersistentEntitySectionManager.java:146) ~[server-1.20.1-20230612.114412-srg.jar%23607!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.server.level.ChunkMap.m_287285_(ChunkMap.java:1307) ~[server-1.20.1-20230612.114412-srg.jar%23607!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:pehkui.mixins.json:compat1201minus.compat116plus.ThreadedAnvilChunkStorageMixin,pl:mixin:APP:emotecraft.mixins.json:ChunkMapAccessor,pl:mixin:APP:securitycraft.mixins.json:camera.ChunkMapMixin,pl:mixin:A}     at net.minecraft.server.level.ChunkHolder.m_287189_(ChunkHolder.java:346) ~[server-1.20.1-20230612.114412-srg.jar%23607!/:?] {re:mixin,re:classloading,pl:mixin:APP:pehkui.mixins.json:compat1201minus.compat116plus.ChunkHolderAccessor,pl:mixin:APP:chunksending.mixins.json:ChunkHolderMixin,pl:mixin:A}     at net.minecraft.server.level.ChunkHolder.m_143003_(ChunkHolder.java:416) ~[server-1.20.1-20230612.114412-srg.jar%23607!/:?] {re:mixin,re:classloading,pl:mixin:APP:pehkui.mixins.json:compat1201minus.compat116plus.ChunkHolderAccessor,pl:mixin:APP:chunksending.mixins.json:ChunkHolderMixin,pl:mixin:A}     at net.minecraft.server.level.DistanceManager.m_183906_(DistanceManager.java:120) ~[server-1.20.1-20230612.114412-srg.jar%23607!/:?] {re:classloading,pl:accesstransformer:B}     at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?] {re:mixin}     at net.minecraft.server.level.DistanceManager.m_140805_(DistanceManager.java:119) ~[server-1.20.1-20230612.114412-srg.jar%23607!/:?] {re:classloading,pl:accesstransformer:B}     at net.minecraft.server.level.ServerChunkCache.m_8489_(ServerChunkCache.java:273) ~[server-1.20.1-20230612.114412-srg.jar%23607!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:cupboard.mixins.json:ChunkLoadDebug,pl:mixin:APP:immersive_melodies.mixin.json:ServerChunkManagerMixin,pl:mixin:APP:pehkui.mixins.json:compat1201minus.compat117plus.ServerChunkManagerMixin,pl:mixin:A}     at net.minecraft.server.level.ServerChunkCache$MainThreadExecutor.m_7245_(ServerChunkCache.java:545) ~[server-1.20.1-20230612.114412-srg.jar%23607!/:?] {re:classloading}     at net.minecraft.server.level.ServerChunkCache.m_8466_(ServerChunkCache.java:269) ~[server-1.20.1-20230612.114412-srg.jar%23607!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:cupboard.mixins.json:ChunkLoadDebug,pl:mixin:APP:immersive_melodies.mixin.json:ServerChunkManagerMixin,pl:mixin:APP:pehkui.mixins.json:compat1201minus.compat117plus.ServerChunkManagerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_129961_(MinecraftServer.java:758) ~[server-1.20.1-20230612.114412-srg.jar%23607!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:saturn.mixins.json:allocations.server_directory.MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:deltaboxlib.mixins.json:event.MinecraftServerMixin,pl:mixin:APP:immersive_optimization.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:vanishmod.mixins.json:gui.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:blueprint.mixins.json:MinecraftServerMixin,pl:mixin:APP:ru.mixin.json:MinecraftServerMixin,pl:mixin:APP:waterframes.mixin.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_7245_(MinecraftServer.java:747) ~[server-1.20.1-20230612.114412-srg.jar%23607!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:saturn.mixins.json:allocations.server_directory.MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:deltaboxlib.mixins.json:event.MinecraftServerMixin,pl:mixin:APP:immersive_optimization.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:vanishmod.mixins.json:gui.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:blueprint.mixins.json:MinecraftServerMixin,pl:mixin:APP:ru.mixin.json:MinecraftServerMixin,pl:mixin:APP:waterframes.mixin.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.util.thread.BlockableEventLoop.m_18699_(BlockableEventLoop.java:115) ~[server-1.20.1-20230612.114412-srg.jar%23607!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.server.MinecraftServer.m_130012_(MinecraftServer.java:732) ~[server-1.20.1-20230612.114412-srg.jar%23607!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:saturn.mixins.json:allocations.server_directory.MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:deltaboxlib.mixins.json:event.MinecraftServerMixin,pl:mixin:APP:immersive_optimization.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:vanishmod.mixins.json:gui.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:blueprint.mixins.json:MinecraftServerMixin,pl:mixin:APP:ru.mixin.json:MinecraftServerMixin,pl:mixin:APP:waterframes.mixin.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:665) ~[server-1.20.1-20230612.114412-srg.jar%23607!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:saturn.mixins.json:allocations.server_directory.MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:deltaboxlib.mixins.json:event.MinecraftServerMixin,pl:mixin:APP:immersive_optimization.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:vanishmod.mixins.json:gui.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:blueprint.mixins.json:MinecraftServerMixin,pl:mixin:APP:ru.mixin.json:MinecraftServerMixin,pl:mixin:APP:waterframes.mixin.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_206580_(MinecraftServer.java:251) ~[server-1.20.1-20230612.114412-srg.jar%23607!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:saturn.mixins.json:allocations.server_directory.MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:APP:deltaboxlib.mixins.json:event.MinecraftServerMixin,pl:mixin:APP:immersive_optimization.mixins.json:MinecraftServerMixin,pl:mixin:APP:crafttweaker.mixins.json:common.access.server.AccessMinecraftServer,pl:mixin:APP:vanishmod.mixins.json:gui.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:blueprint.mixins.json:MinecraftServerMixin,pl:mixin:APP:ru.mixin.json:MinecraftServerMixin,pl:mixin:APP:waterframes.mixin.json:MinecraftServerMixin,pl:mixin:A}     at java.lang.Thread.run(Thread.java:840) ~[?:?] {re:mixin} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details:     Minecraft Version: 1.20.1     Minecraft Version ID: 1.20.1     Operating System: Linux (amd64) version 6.8.0-60-generic     Java Version: 17.0.15, Eclipse Adoptium     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Eclipse Adoptium     Memory: 4531786544 bytes (4321 MiB) / 15384707072 bytes (14672 MiB) up to 25769803776 bytes (24576 MiB)     CPUs: 14     Processor Vendor: AuthenticAMD     Processor Name: AMD Ryzen 9 9950X 16-Core Processor     Identifier: AuthenticAMD Family 26 Model 68 Stepping 0     Microarchitecture: unknown     Frequency (GHz): -0.00     Number of physical packages: 1     Number of physical CPUs: 16     Number of logical CPUs: 32     Graphics card #0 name: unknown     Graphics card #0 vendor: unknown     Graphics card #0 VRAM (MB): 0.00     Graphics card #0 deviceId: unknown     Graphics card #0 versionInfo: unknown     Virtual memory max (MB): 103598.98     Virtual memory used (MB): 136057.86     Swap memory total (MB): 8192.00     Swap memory used (MB): 3591.28     JVM Flags: 2 total; -Xms128M -Xmx24576M     Server Running: true     Player Count: 14 / 80; [ServerPlayer['NSQ20'/230, l='ServerLevel[Dark_Continent]', x=4679.43, y=93.00, z=-4052.56], ServerPlayer['almeidaab_'/232, l='ServerLevel[Dark_Continent]', x=-90.43, y=88.00, z=-362.28], ServerPlayer['TNPC5'/342, l='ServerLevel[Dark_Continent]', x=-88.41, y=88.00, z=-362.20], ServerPlayer['_Intro_'/382, l='ServerLevel[Dark_Continent]', x=-7054.50, y=103.00, z=-10902.22], ServerPlayer['OiVela'/390, l='ServerLevel[Dark_Continent]', x=-3211.94, y=73.00, z=-3916.08], ServerPlayer['Tiranosaurahjkkk'/885, l='ServerLevel[Dark_Continent]', x=4678.20, y=93.00, z=-4076.11], ServerPlayer['iFooqss'/926, l='ServerLevel[Dark_Continent]', x=-225.04, y=78.00, z=-224.44], ServerPlayer['charlieboob'/1099, l='ServerLevel[Dark_Continent]', x=9328.39, y=160.00, z=12133.77], ServerPlayer['GreeOnix'/1162, l='ServerLevel[Dark_Continent]', x=-2397.61, y=117.06, z=13448.06], ServerPlayer['niccnamee'/1198, l='ServerLevel[Dark_Continent]', x=3070.30, y=19.63, z=18540.64], ServerPlayer['Maxyaa'/1263, l='ServerLevel[Dark_Continent]', x=10219.50, y=-17.82, z=-1980.99], ServerPlayer['AzulTCyan'/1477, l='ServerLevel[Dark_Continent]', x=-222.53, y=82.00, z=-221.51], ServerPlayer['voidmaw'/1783, l='ServerLevel[Dark_Continent]', x=-4082.30, y=67.00, z=-7086.15], ServerPlayer['SmolLuh'/2971, l='ServerLevel[Dark_Continent]', x=10226.64, y=-19.00, z=-1980.58]]     Data Packs: vanilla, mod:betterdungeons, mod:almanac, mod:easyanvils, mod:playeranimator (incompatible), mod:braziliandelight (incompatible), mod:mcwwindows, mod:yungsapi, mod:fakename (incompatible), mod:balm, mod:dynview (incompatible), mod:videoplayer (incompatible), mod:spelunkery (incompatible), mod:paraglider (incompatible), mod:cloth_config (incompatible), mod:iter_rpg, mod:athena, mod:lmft (incompatible), mod:corpse, mod:torchmaster, mod:handcrafted (incompatible), mod:supermartijn642corelib, mod:resourcefulconfig (incompatible), mod:spark (incompatible), mod:curios (incompatible), mod:yungsextras, mod:framedblocks, mod:attributeslib (incompatible), mod:mushroomquest, mod:worldedit (incompatible), mod:constructionwand, mod:toms_storage (incompatible), mod:fastleafdecay, mod:bettermineshafts, mod:playerrevive, mod:sliceanddice (incompatible), mod:darkpaintings (incompatible), mod:betterjungletemples, mod:timecontrol, mod:mowziesmobs, mod:harvest_with_ease (incompatible), mod:deltaboxlib (incompatible), mod:pehkui (incompatible), mod:goblintraders (incompatible), mod:caelus (incompatible), mod:realmrpg_skeletons, mod:fastasyncworldsave (incompatible), mod:dungeonnowloading (incompatible), mod:integrated_api, mod:naturescompass, mod:create_wizardry, mod:additional_lights, mod:memoryleakfix (incompatible), mod:crafttweaker (incompatible), mod:luckperms (incompatible), mod:puzzlesaccessapi, mod:forge, mod:logbegone (incompatible), mod:mcwpaths, mod:idas, mod:dungeons_arise, mod:tectonic (incompatible), mod:voicechat (incompatible), mod:terrablender, mod:biomesoplenty (incompatible), mod:moresnifferflowers (incompatible), mod:knightquest, mod:createutilities (incompatible), mod:spectrelib (incompatible), mod:antiportals (incompatible), mod:garnished, mod:kotlinforforge (incompatible), mod:truly_custom_horse_tack, mod:traveloptics, mod:farmersrespite, mod:flywheel, mod:ecologics, mod:decoration_delight, mod:localizedchat, mod:polymorph (incompatible), mod:securitycraft, mod:zeta (incompatible), mod:cagedmobs, mod:lootr, mod:connectedglass, mod:puzzleslib, mod:immersive_melodies (incompatible), mod:cosmeticarmorreworked, mod:vmod (incompatible), mod:aquamirae (incompatible), mod:hexerei (incompatible), mod:easy_npc, mod:kuma_api (incompatible), mod:create_things_and_misc, mod:betterwitchhuts, mod:beautify (incompatible), mod:incontrol, mod:betteroceanmonuments, mod:sophisticatedcore (incompatible), mod:structureessentials (incompatible), mod:placebo (incompatible), mod:citadel (incompatible), mod:alexsmobs (incompatible), mod:mixinextras (incompatible), mod:cobweb (incompatible), mod:bookshelf, mod:sophisticatedbackpacks (incompatible), mod:konkrete (incompatible), mod:undergardendelight, mod:create_connected, mod:chipped (incompatible), mod:farmersdelight, mod:chefsdelight (incompatible), mod:culturaldelights, mod:garnishedstoneautomation, mod:getittogetherdrops, mod:chunky (incompatible), mod:born_in_chaos_v1, mod:samurai_dynasty (incompatible), mod:lionfishapi (incompatible), mod:leaky (incompatible), mod:cataclysm (incompatible), mod:collective, mod:cerbons_api, mod:horse_colors, mod:xercapaint, mod:elevatorid, mod:betterstrongholds, mod:resourcefullib (incompatible), mod:architectury (incompatible), mod:doapi (incompatible), mod:vinery (incompatible), mod:herbalbrews, mod:ftblibrary (incompatible), mod:furniture (incompatible), mod:farm_and_charm (incompatible), mod:bakery (incompatible), mod:ftbteams (incompatible), mod:ftbquests (incompatible), mod:brewery (incompatible), mod:meadow, mod:aiimprovements, mod:cupboard (incompatible), mod:refurbished_furniture, mod:undergarden, mod:monolib (incompatible), mod:more_bows_and_arrows (incompatible), mod:biomancy, mod:jei, mod:geckolib, mod:framework, mod:letmedespawn, mod:quarkdelight, mod:caupona, mod:amendments (incompatible), mod:sophisticatedstorage (incompatible), mod:limitedchunks (incompatible), mod:copycats (incompatible), mod:additionallanterns (incompatible), mod:realmrpg_demons, mod:obscure_api (incompatible), mod:create, mod:createcasing (incompatible), mod:create_central_kitchen (incompatible), mod:create_mechanical_extruder, mod:waystones, mod:fabledweaponry, mod:clumps (incompatible), mod:journeymap (incompatible), mod:comforts (incompatible), mod:artifacts, mod:cpm (incompatible), mod:mmode (incompatible), mod:moa_decor_science, mod:mr_lukis_grandcapitals, mod:create_confectionery, mod:betterdeserttemples, mod:explorerscompass, mod:bosses_of_mass_destruction, mod:terralith, mod:azurelib, mod:travelerstitles, mod:nyfsspiders (incompatible), mod:alexscaves, mod:moonlight (incompatible), mod:endermanoverhaul (incompatible), mod:regions_unexplored (incompatible), mod:dramaticdoors, mod:nightlights, mod:mixinsquared (incompatible), mod:obscure_tooltips (incompatible), mod:creativecore, mod:yawp, mod:quark (incompatible), mod:supplementaries, mod:create_sa, mod:malum (incompatible), mod:legendary_monsters, mod:irons_spellbooks, mod:creeperoverhaul, mod:alexsdelight, mod:ferritecore (incompatible), mod:kawaiidishes (incompatible), mod:justzoom (incompatible), mod:lodestone, mod:expandability (incompatible), mod:create_enchantment_industry (incompatible), Spelunkery Generated Pack, Supplementaries Generated Pack, create_central_kitchen:farmersdelight (incompatible), green_stove, optifine_support, tectonic/terratonic, mod:connectivity (incompatible), mod:logprot (incompatible), mod:trade_cycling, mod:redeco (incompatible), mod:relics, mod:tenebris, mod:crashutilities (incompatible), mod:dawnoftimebuilder (incompatible), mod:octolib, mod:abyssal_decor, mod:blueprint, mod:decorative_storage, mod:legendarycreatures, mod:questsadditions, mod:ftbqoptimizer (incompatible), mod:candlelight (incompatible), mod:displaydelight, mod:saturn (incompatible), mod:smoothboot, mod:supermartijn642configlib (incompatible), mod:grieflogger, file/supplementaries_blacklist, mod:ringsofascension (incompatible), mod:selfexpression_slim, mod:not_enough_gamerules (incompatible), mod:selfexpression, mod:necronomicon, mod:item_obliterator, mod:waterframes, mod:crittersandcompanions (incompatible), mod:ohthetreesyoullgrow, mod:corgilib, mod:camerapture (incompatible), mod:biomeswevegone, mod:alltheleaks, mod:bocchium (incompatible), mod:advancedbook, mod:attributefix (incompatible), mod:enlightened_end, mod:emojiful (incompatible), mod:craterlib (incompatible), mod:ftbessentials (incompatible), mod:ponder (incompatible), mod:dynamiclights (incompatible), mod:createdeco (incompatible), mod:create_henry, mod:yet_another_config_lib_v3 (incompatible), mod:rarcompat, create:dynamic_data, mod:create_aquatic_ambitions, mod:dummmmmmy (incompatible), mod:tempban (incompatible), mod:simplelogin (incompatible), mod:chunksending (incompatible), mod:immersive_optimization (incompatible), bushy_leaves, mod:emotecraft (incompatible), mod:badmobs (incompatible), mod:nanny (incompatible), better_leaves     Enabled Feature Flags: minecraft:vanilla     World Generation: Stable     Is Modded: Definitely; Server brand changed to 'forge'     Type: Dedicated Server (map_server.txt)     ModLauncher: 10.0.9+10.0.9+main.dcd20f30     ModLauncher launch target: forgeserver     ModLauncher naming: srg     ModLauncher services:          mixin-0.8.5.jar mixin PLUGINSERVICE          eventbus-6.0.5.jar eventbus PLUGINSERVICE          fmlloader-1.20.1-47.3.11.jar slf4jfixer PLUGINSERVICE          fmlloader-1.20.1-47.3.11.jar object_holder_definalize PLUGINSERVICE          fmlloader-1.20.1-47.3.11.jar runtime_enum_extender PLUGINSERVICE          fmlloader-1.20.1-47.3.11.jar capability_token_subclass PLUGINSERVICE          accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE          fmlloader-1.20.1-47.3.11.jar runtimedistcleaner PLUGINSERVICE          modlauncher-10.0.9.jar mixin TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar fml TRANSFORMATIONSERVICE      FML Language Providers:          minecraft@1.0         kotlinforforge@4.11.0         javafml@null         lowcodefml@null     Mod List:          saturn-mc1.20.1-0.1.3.jar                         |Saturn                        |saturn                        |0.1.3               |DONE      |Manifest: NOSIGNATURE         YungsBetterDungeons-1.20-Forge-4.0.3.jar          |YUNG's Better Dungeons        |betterdungeons                |1.20-Forge-4.0.3    |DONE      |Manifest: NOSIGNATURE         almanac-1.20.x-forge-1.0.2.jar                    |Almanac                       |almanac                       |1.0.2               |DONE      |Manifest: NOSIGNATURE         EasyAnvils-v8.0.2-1.20.1-Forge.jar                |Easy Anvils                   |easyanvils                    |8.0.2               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         supermartijn642configlib-1.1.8-forge-mc1.20.jar   |SuperMartijn642's Config Libra|supermartijn642configlib      |1.1.8               |DONE      |Manifest: NOSIGNATURE         player-animation-lib-forge-1.0.2-rc1+1.20.jar     |Player Animator               |playeranimator                |1.0.2-rc1+1.20      |DONE      |Manifest: NOSIGNATURE         braziliandelight-1.1.0-all.jar                    |Brazilian Delight             |braziliandelight              |1.1.0               |DONE      |Manifest: NOSIGNATURE         mcw-windows-2.3.0-mc1.20.1forge.jar               |Macaw's Windows               |mcwwindows                    |2.3.0               |DONE      |Manifest: NOSIGNATURE         NaNny-1.0.1 (1).jar                               |NaNny                         |nanny                         |1.0.1               |DONE      |Manifest: NOSIGNATURE         YungsApi-1.20-Forge-4.0.2.jar                     |YUNG's API                    |yungsapi                      |1.20-Forge-4.0.2    |DONE      |Manifest: NOSIGNATURE         fakename-1.20.1-1.3.1.jar                         |Fakename                      |fakename                      |1.3.1               |DONE      |Manifest: NOSIGNATURE         balm-forge-1.20.1-7.3.9-all.jar                   |Balm                          |balm                          |7.3.9               |DONE      |Manifest: NOSIGNATURE         dynview-1.20.1-4.0.jar                            |Dynamic view distance         |dynview                       |2.3                 |DONE      |Manifest: NOSIGNATURE         VideoPlayer-2.6.2-FORGE-1.20.X.jar                |VideoPlayer                   |videoplayer                   |2.6.2               |DONE      |Manifest: NOSIGNATURE         spelunkery-1.20.1-0.3.13-forge.jar                |Spelunkery                    |spelunkery                    |1.20.1-0.3.13       |DONE      |Manifest: NOSIGNATURE         Paraglider-forge-20.1.3.jar                       |Paraglider                    |paraglider                    |20.1.3              |DONE      |Manifest: NOSIGNATURE         cloth-config-11.1.118-forge.jar                   |Cloth Config v10 API          |cloth_config                  |11.1.118            |DONE      |Manifest: NOSIGNATURE         iter_rpg-0.7.2-forge-1.20.1.jar                   |Iter RPG                      |iter_rpg                      |0.7.1               |DONE      |Manifest: NOSIGNATURE         Emojiful-Forge-1.20.1-4.2.0.jar                   |Emojiful                      |emojiful                      |4.2.0               |DONE      |Manifest: NOSIGNATURE         athena-forge-1.20.1-3.1.2.jar                     |Athena                        |athena                        |3.1.2               |DONE      |Manifest: NOSIGNATURE         lmft-1.0.4+1.20.1-forge.jar                       |Load My F***ing Tags          |lmft                          |1.0.4+1.20.1        |DONE      |Manifest: NOSIGNATURE         corpse-forge-1.20.1-1.0.14.jar                    |Corpse                        |corpse                        |1.20.1-1.0.14       |DONE      |Manifest: NOSIGNATURE         torchmaster-20.1.6.jar                            |Torchmaster                   |torchmaster                   |20.1.6              |DONE      |Manifest: NOSIGNATURE         handcrafted-forge-1.20.1-3.0.6.jar                |Handcrafted                   |handcrafted                   |3.0.6               |DONE      |Manifest: NOSIGNATURE         supermartijn642corelib-1.1.17a-forge-mc1.20.1.jar |SuperMartijn642's Core Lib    |supermartijn642corelib        |1.1.17+a            |DONE      |Manifest: NOSIGNATURE         resourcefulconfig-forge-1.20.1-2.1.2.jar          |Resourcefulconfig             |resourcefulconfig             |2.1.2               |DONE      |Manifest: NOSIGNATURE         spark-1.10.53-forge.jar                           |spark                         |spark                         |1.10.53             |DONE      |Manifest: NOSIGNATURE         curios-forge-5.14.1+1.20.1.jar                    |Curios API                    |curios                        |5.14.1+1.20.1       |DONE      |Manifest: NOSIGNATURE         YungsExtras-1.20-Forge-4.0.3.jar                  |YUNG's Extras                 |yungsextras                   |1.20-Forge-4.0.3    |DONE      |Manifest: NOSIGNATURE         ApothicAttributes-1.20.1-1.3.7.jar                |Apothic Attributes            |attributeslib                 |1.3.7               |DONE      |Manifest: NOSIGNATURE         MushroomQuest-1.20.1-v4.1.2.jar                   |Mushroom Quest                |mushroomquest                 |4.0.0               |DONE      |Manifest: NOSIGNATURE         worldedit-mod-7.2.15.jar                          |WorldEdit                     |worldedit                     |7.2.15+6463-5ca4dff |DONE      |Manifest: NOSIGNATURE         constructionwand-1.20.1-2.11.jar                  |Construction Wand             |constructionwand              |1.20.1-2.11         |DONE      |Manifest: NOSIGNATURE         toms_storage-1.20-1.6.8.jar                       |Tom's Simple Storage Mod      |toms_storage                  |1.6.8               |DONE      |Manifest: NOSIGNATURE         FastLeafDecay-32.jar                              |Fast Leaf Decay               |fastleafdecay                 |32                  |DONE      |Manifest: NOSIGNATURE         YungsBetterMineshafts-1.20-Forge-4.0.4.jar        |YUNG's Better Mineshafts      |bettermineshafts              |1.20-Forge-4.0.4    |DONE      |Manifest: NOSIGNATURE         PlayerRevive_FORGE_v2.0.27_mc1.20.1.jar           |PlayerRevive                  |playerrevive                  |2.0.27              |DONE      |Manifest: NOSIGNATURE         sliceanddice-forge-3.4.0.jar                      |Create Slice & Dice           |sliceanddice                  |3.4.0               |DONE      |Manifest: NOSIGNATURE         DarkPaintings-Forge-1.20.1-17.0.4.jar             |DarkPaintings                 |darkpaintings                 |17.0.4              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         YungsBetterJungleTemples-1.20-Forge-2.0.5.jar     |YUNG's Better Jungle Temples  |betterjungletemples           |1.20-Forge-2.0.5    |DONE      |Manifest: NOSIGNATURE         timecontrol-1.20.1-1.6.0.jar                      |TimeControl                   |timecontrol                   |1.6.0               |DONE      |Manifest: NOSIGNATURE         mowziesmobs-1.6.5.jar                             |Mowzie's Mobs                 |mowziesmobs                   |1.6.4               |DONE      |Manifest: NOSIGNATURE         harvest-with-ease-forge-1.20.1-9.0.1.jar          |Harvest with ease             |harvest_with_ease             |9.0.1               |DONE      |Manifest: NOSIGNATURE         deltaboxlib-1.1.2.jar                             |Deltabox Lib                  |deltaboxlib                   |1.1.2               |DONE      |Manifest: NOSIGNATURE         AttributeFix-Forge-1.20.1-21.0.4.jar              |AttributeFix                  |attributefix                  |21.0.4              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         Pehkui-3.8.2+1.20.1-forge.jar                     |Pehkui                        |pehkui                        |3.8.2+1.20.1-forge  |DONE      |Manifest: NOSIGNATURE         goblintraders-forge-1.20.1-1.9.3.jar              |Goblin Traders                |goblintraders                 |1.9.3               |DONE      |Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         caelus-forge-3.2.0+1.20.1.jar                     |Caelus API                    |caelus                        |3.2.0+1.20.1        |DONE      |Manifest: NOSIGNATURE         RingsOfAscension-1.20.1-2.0.2.jar                 |Rings of Ascension            |ringsofascension              |2.0.0               |DONE      |Manifest: NOSIGNATURE         selfexpression_slim-1.5-forge-1.20.1.jar          |Selfexpression: Slim          |selfexpression_slim           |1.5                 |DONE      |Manifest: NOSIGNATURE         realmrpg_fallen_adventurers_1.0.3_forge_1.20.1.jar|Realm RPG: Fallen Adventurers |realmrpg_skeletons            |1.0.3               |DONE      |Manifest: NOSIGNATURE         fastasyncworldsave-1.20.1-2.3.jar                 |fastasyncworldsave mod        |fastasyncworldsave            |1.20.1-2.3          |DONE      |Manifest: NOSIGNATURE         Dungeon Now Loading-forge-1.20.1-1.5.jar          |Dungeon Now Loading           |dungeonnowloading             |1.5                 |DONE      |Manifest: NOSIGNATURE         integrated_api-1.5.1+1.20.1-forge.jar             |Integrated API                |integrated_api                |1.5.1+1.20.1-forge  |DONE      |Manifest: NOSIGNATURE         immersive_optimization-forge-1.20.1-0.0.2.jar     |Immersive Optimization        |immersive_optimization        |0.0.2               |DONE      |Manifest: NOSIGNATURE         NaturesCompass-1.20.1-1.11.2-forge.jar            |Nature's Compass              |naturescompass                |1.20.1-1.11.2-forge |DONE      |Manifest: NOSIGNATURE         create_wizardry-0.2.3-forge-1.20.1.jar            |Create: Wizardry              |create_wizardry               |0.2.3               |DONE      |Manifest: NOSIGNATURE         CraterLib-Forge-1.20-2.1.5.jar                    |CraterLib                     |craterlib                     |2.1.5               |DONE      |Manifest: NOSIGNATURE         additional_lights-1.20.1-2.1.7.jar                |Additional Lights             |additional_lights             |2.1.7               |DONE      |Manifest: NOSIGNATURE         questsadditions-1.4.7.jar                         |Quests Additions              |questsadditions               |1.4.7               |DONE      |Manifest: NOSIGNATURE         memoryleakfix-forge-1.17+-1.1.5.jar               |Memory Leak Fix               |memoryleakfix                 |1.1.5               |DONE      |Manifest: NOSIGNATURE         CraftTweaker-forge-1.20.1-14.0.43.jar             |CraftTweaker                  |crafttweaker                  |14.0.43             |DONE      |Manifest: NOSIGNATURE         LuckPerms-Forge-5.4.102.jar                       |LuckPerms                     |luckperms                     |5.4.102             |DONE      |Manifest: NOSIGNATURE         ftb-essentials-forge-2001.2.2.jar                 |FTB Essentials                |ftbessentials                 |2001.2.2            |DONE      |Manifest: NOSIGNATURE         puzzlesaccessapi-forge-8.0.7.jar                  |Puzzles Access Api            |puzzlesaccessapi              |8.0.7               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         forge-1.20.1-47.3.11-universal.jar                |Forge                         |forge                         |47.3.11             |DONE      |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90         Log-Begone-Forge-1.20.1-1.0.8.jar                 |Log Begone                    |logbegone                     |1.0.8               |DONE      |Manifest: NOSIGNATURE         mcw-paths-1.0.5-1.20.1forge.jar                   |Macaw's Paths and Pavings     |mcwpaths                      |1.0.5               |DONE      |Manifest: NOSIGNATURE         idas_forge-1.11.1+1.20.1.jar                      |Integrated Dungeons and Struct|idas                          |1.11.1+1.20.1       |DONE      |Manifest: NOSIGNATURE         emotecraft-for-MC1.20.1-2.2.7-b.build.50-forge.jar|Emotecraft                    |emotecraft                    |2.2.7-b.build.50    |DONE      |Manifest: NOSIGNATURE         DungeonsArise-1.20.x-2.1.58-release.jar           |When Dungeons Arise           |dungeons_arise                |2.1.58-1.20.x       |DONE      |Manifest: NOSIGNATURE         tectonic-forge-1.20.1-2.4.1.jar                   |Tectonic                      |tectonic                      |2.4.1               |DONE      |Manifest: NOSIGNATURE         server-1.20.1-20230612.114412-srg.jar             |Minecraft                     |minecraft                     |1.20.1              |DONE      |Manifest: NOSIGNATURE         logprot-1.20.1-3.4.jar                            |Logprot                       |logprot                       |1.4                 |DONE      |Manifest: NOSIGNATURE         voicechat-forge-1.20.1-2.5.22.jar                 |Simple Voice Chat             |voicechat                     |1.20.1-2.5.22       |DONE      |Manifest: NOSIGNATURE         trade-cycling-forge-1.20.1-1.0.15.jar             |Trade Cycling                 |trade_cycling                 |1.20.1-1.0.15       |DONE      |Manifest: NOSIGNATURE         TerraBlender-forge-1.20.1-3.0.1.7.jar             |TerraBlender                  |terrablender                  |3.0.1.7             |DONE      |Manifest: NOSIGNATURE         BiomesOPlenty-1.20.1-18.0.0.598.jar               |Biomes O' Plenty              |biomesoplenty                 |18.0.0.598          |DONE      |Manifest: NOSIGNATURE         Necronomicon-Forge-1.6.0+1.20.1.jar               |Necronomicon                  |necronomicon                  |1.6.0               |DONE      |Manifest: NOSIGNATURE         MoreSnifferFlowers-1.20.1-forge-1.4.5.2.jar       |More Sniffer Flowers          |moresnifferflowers            |1.4.5.2             |DONE      |Manifest: NOSIGNATURE         knightquest-1.6.1-forge.jar                       |Knight Quest                  |knightquest                   |1.6.1-forge         |DONE      |Manifest: NOSIGNATURE         Oh-The-Trees-Youll-Grow-forge-1.20.1-1.3.4.jar    |Oh The Trees You'll Grow      |ohthetreesyoullgrow           |1.20.1-1.3.4        |DONE      |Manifest: NOSIGNATURE         alltheleaks-0.1.0-beta+1.20.1-forge.jar           |All The Leaks                 |alltheleaks                   |0.1.0-beta+1.20.1-fo|DONE      |Manifest: NOSIGNATURE         createutilities-0.3.1+1.20.1.jar                  |Create Utilities              |createutilities               |0.3.1+1.20.1        |DONE      |Manifest: NOSIGNATURE         spectrelib-forge-0.13.15+1.20.1.jar               |SpectreLib                    |spectrelib                    |0.13.15+1.20.1      |DONE      |Manifest: NOSIGNATURE         Corgilib-Forge-1.20.1-4.0.3.3.jar                 |CorgiLib                      |corgilib                      |4.0.3.3             |DONE      |Manifest: NOSIGNATURE         antiportals-mc1.20.1-1.3.jar                      |AntiPortals                   |antiportals                   |1.3                 |DONE      |Manifest: NOSIGNATURE         garnished-2.1.2+1.20.1-neoforged.jar              |Create: Garnished             |garnished                     |2.1.2               |DONE      |Manifest: NOSIGNATURE         SimpleLogin-1.20.1-1.0.2-all.jar                  |Simple Login                  |simplelogin                   |1.0.1               |DONE      |Manifest: NOSIGNATURE         create_aquatic_ambitions_forge-1.20.1-1.1.3.jar   |Create: Aquatic Ambitions     |create_aquatic_ambitions      |1.20.1-1.1.1        |DONE      |Manifest: NOSIGNATURE         kffmod-4.11.0.jar                                 |Kotlin For Forge              |kotlinforforge                |4.11.0              |DONE      |Manifest: NOSIGNATURE         truly_custom_horse_tack-1.20.1-1.6.0.jar          |Truly Custom Horse Tack       |truly_custom_horse_tack       |1.6.0               |DONE      |Manifest: NOSIGNATURE         traveloptics-4.4.0-1.20.1.jar                     |T.O Magic 'n Extras           |traveloptics                  |4.4.0-1.20.1        |DONE      |Manifest: NOSIGNATURE         farmersrespite-1.20.1-2.1.2.jar                   |Farmer's Respite              |farmersrespite                |1.20.1-2.1          |DONE      |Manifest: NOSIGNATURE         flywheel-forge-1.20.1-1.0.2.jar                   |Flywheel                      |flywheel                      |1.0.2               |DONE      |Manifest: NOSIGNATURE         Ponder-Forge-1.20.1-1.0.52.jar                    |Ponder                        |ponder                        |1.0.52              |DONE      |Manifest: NOSIGNATURE         ecologics-forge-1.20.1-2.2.0.jar                  |Ecologics                     |ecologics                     |2.2.0               |DONE      |Manifest: NOSIGNATURE         decoration-delight-1.20.1.jar                     |Decoration Delight            |decoration_delight            |1.0.0               |DONE      |Manifest: NOSIGNATURE         bocchium-1.20.1-0.0.3.jar                         |Bocchium                      |bocchium                      |1.20.1-0.0.3        |DONE      |Manifest: NOSIGNATURE         LocalizedChat-forge-1.20.1-5.1.2.jar              |Localized Chat                |localizedchat                 |5.1.2               |DONE      |Manifest: NOSIGNATURE         polymorph-forge-0.49.5+1.20.1.jar                 |Polymorph                     |polymorph                     |0.49.5+1.20.1       |DONE      |Manifest: NOSIGNATURE         [1.20.1] SecurityCraft v1.9.10.jar                |SecurityCraft                 |securitycraft                 |1.9.10              |DONE      |Manifest: NOSIGNATURE         Zeta-1.0-24.jar                                   |Zeta                          |zeta                          |1.0-24              |DONE      |Manifest: NOSIGNATURE         cagedmobs-1.20.1-forge-2.0.5.jar                  |Caged Mobs                    |cagedmobs                     |1.20.1-2.0.5        |DONE      |Manifest: NOSIGNATURE         NEG-FORGE-1.20.1-r1.5.3.jar                       |Not Enough Gamerules          |not_enough_gamerules          |1.20.1-r1.5.3       |DONE      |Manifest: NOSIGNATURE         lootr-forge-1.20-0.7.34.89.jar                    |Lootr                         |lootr                         |0.7.34.87           |DONE      |Manifest: NOSIGNATURE         connectedglass-1.1.12-forge-mc1.20.1.jar          |Connected Glass               |connectedglass                |1.1.12              |DONE      |Manifest: NOSIGNATURE         PuzzlesLib-v8.1.22-1.20.1-Forge.jar               |Puzzles Lib                   |puzzleslib                    |8.1.22              |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         immersive_melodies-0.3.0+1.20.1-forge.jar         |Immersive Melodies            |immersive_melodies            |0.3.0+1.20.1        |DONE      |Manifest: NOSIGNATURE         cosmeticarmorreworked-1.20.1-v1a.jar              |CosmeticArmorReworked         |cosmeticarmorreworked         |1.20.1-v1a          |DONE      |Manifest: 5e:ed:25:99:e4:44:14:c0:dd:89:c1:a9:4c:10:b5:0d:e4:b1:52:50:45:82:13:d8:d0:32:89:67:56:57:01:53         chunksending-1.20.1-2.8.jar                       |chunksending mod              |chunksending                  |1.20.1-2.8          |DONE      |Manifest: NOSIGNATURE         Vanishmod-1.20.1-1.1.17.1.jar                     |Vanishmod                     |vmod                          |1.1.17.1            |DONE      |Manifest: NOSIGNATURE         aquamirae-6.API15.jar                             |Aquamirae                     |aquamirae                     |6.API15             |DONE      |Manifest: NOSIGNATURE         hexerei-0.4.2.1.jar                               |Hexerei                       |hexerei                       |1.20.1-0.4.2        |DONE      |Manifest: NOSIGNATURE         easy_npc-forge-1.20.1-5.9.0.jar                   |Easy NPC                      |easy_npc                      |5.9.0               |DONE      |Manifest: NOSIGNATURE         kuma-api-forge-20.1.8+1.20.1.jar                  |KumaAPI                       |kuma_api                      |20.1.8              |DONE      |Manifest: NOSIGNATURE         create_misc_and_things_ 1.20.1_4.0A.jar           |create: things and misc       |create_things_and_misc        |1.0.0               |DONE      |Manifest: NOSIGNATURE         YungsBetterWitchHuts-1.20-Forge-3.0.3.jar         |YUNG's Better Witch Huts      |betterwitchhuts               |1.20-Forge-3.0.3    |DONE      |Manifest: NOSIGNATURE         beautify-2.0.2.jar                                |Beautify                      |beautify                      |2.0.2               |DONE      |Manifest: NOSIGNATURE         incontrol-1.20-9.2.8.jar                          |InControl                     |incontrol                     |1.20-9.2.8          |DONE      |Manifest: NOSIGNATURE         YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar    |YUNG's Better Ocean Monuments |betteroceanmonuments          |1.20-Forge-3.0.4    |DONE      |Manifest: NOSIGNATURE         connectivity-1.20.1-7.1.jar                       |Connectivity Mod              |connectivity                  |1.20.1-7.1          |DONE      |Manifest: NOSIGNATURE         dynamiclights-1.20.1.2.jar                        |Dynamic Lights                |dynamiclights                 |1.20.1.2            |DONE      |Manifest: NOSIGNATURE         sophisticatedcore-1.20.1-1.2.9.867.jar            |Sophisticated Core            |sophisticatedcore             |1.2.9.867           |DONE      |Manifest: NOSIGNATURE         structureessentials-1.20.1-3.4.jar                |Structure Essentials mod      |structureessentials           |1.20.1-3.4          |DONE      |Manifest: NOSIGNATURE         Placebo-1.20.1-8.6.2.jar                          |Placebo                       |placebo                       |8.6.2               |DONE      |Manifest: NOSIGNATURE         citadel-2.6.0-1.20.1.jar                          |Citadel                       |citadel                       |2.6.0               |DONE      |Manifest: NOSIGNATURE         alexsmobs-1.22.9.jar                              |Alex's Mobs                   |alexsmobs                     |1.22.9              |DONE      |Manifest: NOSIGNATURE         mixinextras-forge-0.2.0.jar                       |MixinExtras                   |mixinextras                   |0.2.0               |DONE      |Manifest: NOSIGNATURE         Item-Obliterator-NeoForge-MC1.20.1-2.3.1.jar      |Item Obliterator              |item_obliterator              |2.3.0               |DONE      |Manifest: NOSIGNATURE         cobweb-forge-1.20.1-1.0.0.jar                     |Cobweb                        |cobweb                        |1.0.0               |DONE      |Manifest: NOSIGNATURE         Bookshelf-Forge-1.20.1-20.2.13.jar                |Bookshelf                     |bookshelf                     |20.2.13             |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         redeco-1.13-1.20.jar                              |Re:Deco                       |redeco                        |1.13                |DONE      |Manifest: NOSIGNATURE         sophisticatedbackpacks-1.20.1-3.23.4.1196.jar     |Sophisticated Backpacks       |sophisticatedbackpacks        |3.23.4.1196         |DONE      |Manifest: NOSIGNATURE         relics-1.20.1-0.8.0.7.jar                         |Relics                        |relics                        |0.8.0.7             |DONE      |Manifest: NOSIGNATURE         tenebris-2.0.0.10-1.20.1.jar                      |Tenebris                      |tenebris                      |2.0.0.10-1.20.1     |DONE      |Manifest: NOSIGNATURE         dummmmmmy-1.20-2.0.7.jar                          |MmmMmmMmmmmm                  |dummmmmmy                     |1.20-2.0.7          |DONE      |Manifest: NOSIGNATURE         konkrete_forge_1.8.0_MC_1.20-1.20.1.jar           |Konkrete                      |konkrete                      |1.8.0               |DONE      |Manifest: NOSIGNATURE         undergarden_delight_1.0.0_forge_1.20.1.jar        |Undergarden Delight           |undergardendelight            |1.0.0               |DONE      |Manifest: NOSIGNATURE         create_connected-1.0.1-mc1.20.1-all.jar           |Create: Connected             |create_connected              |1.0.1-mc1.20.1      |DONE      |Manifest: NOSIGNATURE         chipped-forge-1.20.1-3.0.7.jar                    |Chipped                       |chipped                       |3.0.7               |DONE      |Manifest: NOSIGNATURE         FarmersDelight-1.20.1-1.2.4.jar                   |Farmer's Delight              |farmersdelight                |1.20.1-1.2.4        |DONE      |Manifest: NOSIGNATURE         chefs-delight-1.0.3-forge-1.20.1.jar              |Chefs Delight                 |chefsdelight                  |1.0.3-forge-1.20.1  |DONE      |Manifest: NOSIGNATURE         culturaldelights-0.16.1.jar                       |Cultural Delights             |culturaldelights              |0.16.1              |DONE      |Manifest: NOSIGNATURE         crashutilities-8.1.4.jar                          |Crash Utilities               |crashutilities                |8.1.4               |DONE      |Manifest: NOSIGNATURE         garnishedstoneautomation-0.1.2+1.20.1-neoforged.ja|Garnished Stone Automation    |garnishedstoneautomation      |0.1.2               |DONE      |Manifest: NOSIGNATURE         getittogetherdrops-forge-1.20-1.3.jar             |Get It Together, Drops!       |getittogetherdrops            |1.3                 |DONE      |Manifest: NOSIGNATURE         advancedbook-1.0.4.jar                            |Advanced Book                 |advancedbook                  |1.0.4               |DONE      |Manifest: NOSIGNATURE         Chunky-1.3.146.jar                                |Chunky                        |chunky                        |1.3.146             |DONE      |Manifest: NOSIGNATURE         born_in_chaos_[Forge]1.20.1_1.5.2.jar             |Born in Chaos                 |born_in_chaos_v1              |1.5.2               |DONE      |Manifest: NOSIGNATURE         samurai_dynasty-0.0.48-1.20.1-neo.jar             |Samurai Dynasty               |samurai_dynasty               |0.0.48-1.20.1-neo   |DONE      |Manifest: NOSIGNATURE         lionfishapi-2.4-Fix.jar                           |LionfishAPI                   |lionfishapi                   |2.4-Fix             |DONE      |Manifest: NOSIGNATURE         leaky-1.20.1-2.1.jar                              |leaky mod                     |leaky                         |1.20.1-2.1          |DONE      |Manifest: NOSIGNATURE         L_Enders_Cataclysm-2.64.jar                       |cataclysm                     |cataclysm                     |2.64                |DONE      |Manifest: NOSIGNATURE         Tempban-forge-1.20-1.0.3.jar                      |Tempban                       |tempban                       |1.0                 |DONE      |Manifest: NOSIGNATURE         collective-1.20.1-7.84.jar                        |Collective                    |collective                    |7.84                |DONE      |Manifest: NOSIGNATURE         CerbonsAPI-Forge-1.20.1-1.1.0.jar                 |Cerbons API                   |cerbons_api                   |1.1.0               |DONE      |Manifest: NOSIGNATURE         realistic_horse_genetics-1.20.1-13.5.jar          |Realistic Horse Genetics      |horse_colors                  |1.20.1-13.5         |DONE      |Manifest: NOSIGNATURE         xercapaint-1.20.1-1.0.1.jar                       |Joy of Painting               |xercapaint                    |1.20.1-1.0.1        |DONE      |Manifest: NOSIGNATURE         elevatorid-1.20.1-lex-1.9.jar                     |Elevator Mod                  |elevatorid                    |1.20.1-lex-1.9      |DONE      |Manifest: NOSIGNATURE         DawnOfTimeBuilder-forge-1.20.1-1.5.9.jar          |DawnOfTimeBuilder             |dawnoftimebuilder             |1.5.9               |DONE      |Manifest: NOSIGNATURE         YungsBetterStrongholds-1.20-Forge-4.0.3.jar       |YUNG's Better Strongholds     |betterstrongholds             |1.20-Forge-4.0.3    |DONE      |Manifest: NOSIGNATURE         resourcefullib-forge-1.20.1-2.1.29.jar            |Resourceful Lib               |resourcefullib                |2.1.29              |DONE      |Manifest: NOSIGNATURE         architectury-9.2.14-forge.jar                     |Architectury                  |architectury                  |9.2.14              |DONE      |Manifest: NOSIGNATURE         letsdo-API-forge-1.2.15-forge.jar                 |[Let's Do] API                |doapi                         |1.2.15              |DONE      |Manifest: NOSIGNATURE         letsdo-vinery-forge-1.4.28.jar                    |[Let's Do] Vinery             |vinery                        |1.4.28              |DONE      |Manifest: NOSIGNATURE         letsdo-herbalbrews-forge-1.0.8.jar                |[Let's Do] HerbalBrews        |herbalbrews                   |1.0.8               |DONE      |Manifest: NOSIGNATURE         ftb-library-forge-2001.2.4.jar                    |FTB Library                   |ftblibrary                    |2001.2.4            |DONE      |Manifest: NOSIGNATURE         letsdo-furniture-forge-1.0.2.jar                  |[Let's Do] Furniture          |furniture                     |1.0.2               |DONE      |Manifest: NOSIGNATURE         letsdo-farm_and_charm-forge-1.0.3.jar             |[Let's Do] Farm & Charm       |farm_and_charm                |1.0.3               |DONE      |Manifest: NOSIGNATURE         grieflogger-1.2.2-1.20.1-forge.jar                |GriefLogger                   |grieflogger                   |1.2.2-1.20.1        |DONE      |Manifest: NOSIGNATURE         letsdo-candlelight-forge-2.0.2.jar                |[Let's Do] Candlelight        |candlelight                   |2.0.2               |DONE      |Manifest: NOSIGNATURE         letsdo-bakery-forge-2.0.2.jar                     |[Let's Do] Bakery             |bakery                        |2.0.2               |DONE      |Manifest: NOSIGNATURE         ftb-teams-forge-2001.3.0.jar                      |FTB Teams                     |ftbteams                      |2001.3.0            |DONE      |Manifest: NOSIGNATURE         ftb-quests-forge-2001.4.8.jar                     |FTB Quests                    |ftbquests                     |2001.4.8            |DONE      |Manifest: NOSIGNATURE         FTBQuestsOptimizer-forge-2.0.4-1.20.1.jar         |FTBQuestsOptimizer            |ftbqoptimizer                 |2.0.4-1.20.1        |DONE      |Manifest: NOSIGNATURE         letsdo-brewery-forge-2.0.3.jar                    |[Let's Do] Brewery            |brewery                       |2.0.3               |DONE      |Manifest: NOSIGNATURE         letsdo-meadow-forge-1.3.19.jar                    |[Let's Do] Meadow             |meadow                        |1.3.19              |DONE      |Manifest: NOSIGNATURE         AI-Improvements-1.20-0.5.2.jar                    |AI-Improvements               |aiimprovements                |0.5.2               |DONE      |Manifest: NOSIGNATURE         cupboard-1.20.1-2.7.jar                           |Cupboard utilities            |cupboard                      |1.20.1-2.7          |DONE      |Manifest: NOSIGNATURE         refurbished_furniture-forge-1.20.1-1.0.6.jar      |MrCrayfish's Furniture Mod: Re|refurbished_furniture         |1.0.6               |DONE      |Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         The_Undergarden-1.20.1-0.8.14.jar                 |The Undergarden               |undergarden                   |0.8.14              |DONE      |Manifest: NOSIGNATURE         monolib-forge-1.20.1-1.3.0.jar                    |MonoLib                       |monolib                       |1.3.0               |DONE      |Manifest: NOSIGNATURE         more_bows_and_arrows-merged-1.20.1-3.2.0.jar      |More Bows and Arrows          |more_bows_and_arrows          |3.2.0               |DONE      |Manifest: NOSIGNATURE         biomancy-forge-1.20.1-2.8.19.0.jar                |Biomancy 2                    |biomancy                      |2.8.19.0            |DONE      |Manifest: NOSIGNATURE         jei-1.20.1-forge-15.20.0.104.jar                  |Just Enough Items             |jei                           |15.20.0.104         |DONE      |Manifest: NOSIGNATURE         geckolib-forge-1.20.1-4.4.9.jar                   |GeckoLib 4                    |geckolib                      |4.4.9               |DONE      |Manifest: NOSIGNATURE         crittersandcompanions-forge-2.2.2.jar             |Critters and Companions       |crittersandcompanions         |2.2.2               |DONE      |Manifest: NOSIGNATURE         framework-forge-1.20.1-0.7.7.jar                  |Framework                     |framework                     |0.7.7               |DONE      |Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         Camerapture-1.9.1+mc1.20.1-forge.jar              |Camerapture                   |camerapture                   |1.9.1               |DONE      |Manifest: NOSIGNATURE         letmedespawn-1.20.x-forge-1.4.4.jar               |Let Me Despawn                |letmedespawn                  |1.4.4               |DONE      |Manifest: NOSIGNATURE         quark_delight_1.0.0_forge_1.20.1.jar              |Quark Delight                 |quarkdelight                  |1.0.0               |DONE      |Manifest: NOSIGNATURE         caupona-1.20.1-0.4.9.jar                          |Caupona                       |caupona                       |1.20.1-0.4.9        |DONE      |Manifest: NOSIGNATURE         amendments-1.20-1.2.8.jar                         |Amendments                    |amendments                    |1.20-1.2.8          |DONE      |Manifest: NOSIGNATURE         sophisticatedstorage-1.20.1-1.3.5.1068.jar        |Sophisticated Storage         |sophisticatedstorage          |1.3.5.1068          |DONE      |Manifest: NOSIGNATURE         limitedchunks-1.20.1-4.1.jar                      |Limited Chunkloading          |limitedchunks                 |1.8                 |DONE      |Manifest: NOSIGNATURE         OctoLib-FORGE-0.4.2+1.20.1.jar                    |OctoLib                       |octolib                       |0.4.2               |DONE      |Manifest: NOSIGNATURE         copycats-3.0.0+mc.1.20.1-forge.jar                |Create: Copycats+             |copycats                      |3.0.0+mc.1.20.1-forg|DONE      |Manifest: NOSIGNATURE         additionallanterns-1.1.1a-forge-mc1.20.jar        |Additional Lanterns           |additionallanterns            |1.1.1a              |DONE      |Manifest: NOSIGNATURE         realmrpg_imps_and_demons_0.9.0_forge_1.20.1.jar   |Realm RPG: Imps & Demons      |realmrpg_demons               |0.9.0               |DONE      |Manifest: NOSIGNATURE         Oh-The-Biomes-Weve-Gone-Forge-1.5.7.jar           |Oh The Biomes We've Gone      |biomeswevegone                |1.5.7               |DONE      |Manifest: NOSIGNATURE         abyssal_decor_1.20.1_0.1.7.jar                    |Abyssal Decor                 |abyssal_decor                 |1.0.0               |DONE      |Manifest: NOSIGNATURE         obscure_api-15.jar                                |Obscure API                   |obscure_api                   |15                  |DONE      |Manifest: NOSIGNATURE         enlightend-5.0.14-1.20.1.jar                      |Enlightend                    |enlightened_end               |5.0.14              |DONE      |Manifest: NOSIGNATURE         create-1.20.1-6.0.4.jar                           |Create                        |create                        |6.0.4               |DONE      |Manifest: NOSIGNATURE         createdeco-2.0.3-1.20.1-forge.jar                 |Create Deco                   |createdeco                    |2.0.3-1.20.1-forge  |DONE      |Manifest: NOSIGNATURE         Create Encased-1.20.1-1.7.1-fix1.jar              |Create Encased                |createcasing                  |1.7.1-fix1          |DONE      |Manifest: NOSIGNATURE         FramedBlocks-9.4.2.jar                            |FramedBlocks                  |framedblocks                  |9.4.2               |DONE      |Manifest: NOSIGNATURE         create_central_kitchen-1.20.1-for-create-6.0.4-1.4|Create: Central Kitchen       |create_central_kitchen        |1.4.0.c             |DONE      |Manifest: NOSIGNATURE         create_mechanical_extruder-1.20.1-1.6.6-6.0.2.jar |Create Mechanical Extruder    |create_mechanical_extruder    |1.20.1-1.6.5-6.0.2  |DONE      |Manifest: NOSIGNATURE         Create-Henry-1.20.1-0.0.1-6.0.jar                 |Create: Henry                 |create_henry                  |0.0.1-6.0           |DONE      |Manifest: NOSIGNATURE         waystones-forge-1.20-14.1.5.jar                   |Waystones                     |waystones                     |14.1.5              |DONE      |Manifest: NOSIGNATURE         fabledweaponry-1.20.1-1.0.7.5.jar                 |Fabled Weaponry               |fabledweaponry                |1.20.1-1.0.7.5      |DONE      |Manifest: NOSIGNATURE         Clumps-forge-1.20.1-12.0.0.4.jar                  |Clumps                        |clumps                        |12.0.0.4            |DONE      |Manifest: NOSIGNATURE         journeymap-1.20.1-5.10.2-forge.jar                |Journeymap                    |journeymap                    |5.10.2              |DONE      |Manifest: NOSIGNATURE         comforts-forge-6.4.0+1.20.1.jar                   |Comforts                      |comforts                      |6.4.0+1.20.1        |DONE      |Manifest: NOSIGNATURE         artifacts-forge-9.5.13.jar                        |Artifacts                     |artifacts                     |9.5.13              |DONE      |Manifest: NOSIGNATURE         CustomPlayerModels-1.20-0.6.19a.jar               |Customizable Player Models    |cpm                           |0.6.19a             |DONE      |Manifest: NOSIGNATURE         MaintenanceMode-Universal-1.3.1.jar               |Maintenance Mode              |mmode                         |1.3.1               |DONE      |Manifest: NOSIGNATURE         MOAdecor SCIENCE 1.20.1.jar                       |MOA DECOR: SCIENCE            |moa_decor_science             |1.20.1              |DONE      |Manifest: NOSIGNATURE         lukis-grand-capitals-1.0.jar                      |Luki's Grand Capitals         |mr_lukis_grandcapitals        |1.0                 |DONE      |Manifest: NOSIGNATURE         BadMobs-1.20.1-19.0.4.jar                         |BadMobs                       |badmobs                       |19.0.4              |DONE      |Manifest: NOSIGNATURE         create-confectionery1.20.1_v1.1.0.jar             |Create Confectionery          |create_confectionery          |1.1.0               |DONE      |Manifest: NOSIGNATURE         YungsBetterDesertTemples-1.20-Forge-3.0.3.jar     |YUNG's Better Desert Temples  |betterdeserttemples           |1.20-Forge-3.0.3    |DONE      |Manifest: NOSIGNATURE         ExplorersCompass-1.20.1-1.3.3-forge.jar           |Explorer's Compass            |explorerscompass              |1.20.1-1.3.3-forge  |DONE      |Manifest: NOSIGNATURE         BOMD-Forge-1.20.1-1.1.2.jar                       |Bosses of Mass Destruction    |bosses_of_mass_destruction    |1.1.2               |DONE      |Manifest: NOSIGNATURE         Terralith_1.20.x_v2.5.4.jar                       |Terralith                     |terralith                     |2.5.4               |DONE      |Manifest: NOSIGNATURE         blueprint-1.20.1-7.1.0.jar                        |Blueprint                     |blueprint                     |7.1.0               |DONE      |Manifest: NOSIGNATURE         azurelib-neo-1.20.1-2.0.39.jar                    |AzureLib                      |azurelib                      |2.0.39              |DONE      |Manifest: NOSIGNATURE         TravelersTitles-1.20-Forge-4.0.2.jar              |Traveler's Titles             |travelerstitles               |1.20-Forge-4.0.2    |DONE      |Manifest: NOSIGNATURE         selfexpression-2.20.3-forge-1.20.1.jar            |Selfexpression                |selfexpression                |2.20.3              |DONE      |Manifest: NOSIGNATURE         nyfsspiders-forge-1.20.1-2.1.1.jar                |Nyf's Spiders                 |nyfsspiders                   |2.1.1               |DONE      |Manifest: NOSIGNATURE         alexscaves-2.0.2.jar                              |Alex's Caves                  |alexscaves                    |2.0.2               |DONE      |Manifest: NOSIGNATURE         moonlight-1.20-2.14.11-forge.jar                  |Moonlight Library             |moonlight                     |1.20-2.14.11        |DONE      |Manifest: NOSIGNATURE         endermanoverhaul-forge-1.20.1-1.0.4.jar           |Enderman Overhaul             |endermanoverhaul              |1.0.4               |DONE      |Manifest: NOSIGNATURE         RegionsUnexploredForge-0.5.6+1.20.1.jar           |Regions Unexplored            |regions_unexplored            |0.5.6               |DONE      |Manifest: NOSIGNATURE         DramaticDoors-QuiFabrge-1.20.1-3.3.0.jar          |Dramatic Doors                |dramaticdoors                 |1.20.1-3.3.0        |DONE      |Manifest: NOSIGNATURE         nightlights-1.20.1-1.1.jar                        |Night Lights                  |nightlights                   |1.1                 |DONE      |Manifest: NOSIGNATURE         mixinsquared-forge-0.2.0.jar                      |MixinSquared                  |mixinsquared                  |0.2.0               |DONE      |Manifest: NOSIGNATURE         Obscure-Tooltips-2.2.jar                          |Obscure Tooltips              |obscure_tooltips              |2.2                 |DONE      |Manifest: NOSIGNATURE         displaydelight-1.2.0.jar                          |Display Delight               |displaydelight                |1.2.0               |DONE      |Manifest: NOSIGNATURE         CreativeCore_FORGE_v2.11.30_mc1.20.1.jar          |CreativeCore                  |creativecore                  |2.11.30             |DONE      |Manifest: NOSIGNATURE         waterframes-FORGE-mc1.20.1-v2.0.14.jar            |WaterFrames                   |waterframes                   |2.0.14              |DONE      |Manifest: NOSIGNATURE         smoothboot(reloaded)-mc1.20.1-0.0.4.jar           |Smooth Boot (Reloaded)        |smoothboot                    |0.0.4               |DONE      |Manifest: NOSIGNATURE         yawp-1.20.1-0.0.4.1-beta5-forge.jar               |Yet Another World Protector   |yawp                          |0.0.4.1-beta5       |DONE      |Manifest: NOSIGNATURE         Quark-4.0-460.jar                                 |Quark                         |quark                         |4.0-460             |DONE      |Manifest: NOSIGNATURE         supplementaries-1.20-3.1.34.jar                   |Supplementaries               |supplementaries               |1.20-3.1.34         |DONE      |Manifest: NOSIGNATURE         create-stuff-additions1.20.1_v2.0.9.jar           |Create Stuff & Additions      |create_sa                     |2.0.9               |DONE      |Manifest: NOSIGNATURE         malum-1.20.1-1.6.5.1.jar                          |Malum                         |malum                         |1.20.1-1.6.5.1      |DONE      |Manifest: NOSIGNATURE         legendarymonsters-1.7.7 MC 1.20.1.jar             |LegendaryMonsters             |legendary_monsters            |1.20.1              |DONE      |Manifest: NOSIGNATURE         irons_spellbooks-1.20.1-3.4.0.9.jar               |Iron's Spells 'n Spellbooks   |irons_spellbooks              |1.20.1-3.4.0.9      |DONE      |Manifest: NOSIGNATURE         decorative_storage-2.1011-forge-1.20.1.jar        |Decorative Storage            |decorative_storage            |2.1011              |DONE      |Manifest: NOSIGNATURE         legendarycreatures-1.20.1-1.0.12.jar              |Legendary Creatures           |legendarycreatures            |1.20.1-1.0.12       |DONE      |Manifest: NOSIGNATURE         creeperoverhaul-3.0.2-forge.jar                   |Creeper Overhaul              |creeperoverhaul               |3.0.2               |DONE      |Manifest: NOSIGNATURE         alexsdelight-1.5.jar                              |Alex's Delight                |alexsdelight                  |1.5                 |DONE      |Manifest: NOSIGNATURE         ferritecore-6.0.1-forge.jar                       |Ferrite Core                  |ferritecore                   |6.0.1               |DONE      |Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a         yet_another_config_lib_v3-3.6.6+1.20.1-forge.jar  |YetAnotherConfigLib           |yet_another_config_lib_v3     |3.6.6+1.20.1-forge  |DONE      |Manifest: NOSIGNATURE         KawaiiDishes_1.10.2-1.20.1.jar                    |Kawaii Dishes                 |kawaiidishes                  |1.10.2              |DONE      |Manifest: NOSIGNATURE         justzoom_forge_1.0.2_MC_1.20.1.jar                |Just Zoom                     |justzoom                      |1.0.2               |DONE      |Manifest: NOSIGNATURE         rarcompat-1.20.1-0.1.7.jar                        |RAR-Compat                    |rarcompat                     |0.1.7               |DONE      |Manifest: NOSIGNATURE         lodestone-1.20.1-1.6.4.1.jar                      |Lodestone                     |lodestone                     |1.20.1-1.6.4.1      |DONE      |Manifest: NOSIGNATURE         expandability-forge-9.0.4.jar                     |ExpandAbility                 |expandability                 |9.0.4               |DONE      |Manifest: NOSIGNATURE         create_enchantment_industry-1.3.2-for-create-6.0.4|Create Enchantment Industry   |create_enchantment_industry   |1.3.2-for-create-6.0|DONE      |Manifest: NOSIGNATURE     Crash Report UUID: e66e9e00-1f50-474d-b47a-7fea2071fa06     FML: 47.3     Forge: net.minecraftforge:47.3.11
    • Trying to set up a server on apexhosting, and it keeps crashing, could someone help me with this? Information i feel is of note: 1: this was created with mrpack file converted into a zip file 2: It says i have fabric, but i believe this is the mod Forgified Fabric API, apologies if this makes it so you can't help me. Crash log: https://pastebin.com/YbhQY3We  
  • Topics

  • Who's Online (See full list)

    • There are no registered users currently online
×
×
  • Create New...

Important Information

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