Jump to content

Recommended Posts

Posted

Hi, I made a double furnace in an older version of MCF and now I'm updating it, however, I get an "unexpected error" (null pointer) when the onBlockActivated() method is called. Help?

 

BlockSmelter

package blfngl.rpg.block;

import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
import blfngl.rpg.BlfRPG;
import blfngl.rpg.tileentity.TileEntitySmelter;

public class BlockSmelter extends BlockContainer
{
public BlockSmelter()
{
	super(Material.rock);
}

@Override
public TileEntity createNewTileEntity(World world, int metadata)
{
	return new TileEntitySmelter();
}

@Override
public boolean onBlockActivated(World world, int posX, int posY, int posZ, EntityPlayer player, int p_149727_6_, float p_149727_7_, float p_149727_8_, float p_149727_9_)
{
	TileEntitySmelter tileEntity = (TileEntitySmelter) world.getTileEntity(posX, posY, posZ);

	if (tileEntity != null)
	{
		player.openGui(BlfRPG.instance, BlfRPG.GUI_SMELTER_ID, world, posX, posY, posZ);
	}

	return true;
}
}

 

 

TileEntitySmelter

package blfngl.rpg.tileentity;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Items;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.item.ItemSword;
import net.minecraft.item.ItemTool;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
import net.minecraft.tileentity.TileEntity;
import blfngl.rpg.player.crafting.RecipesSmelter;
import cpw.mods.fml.common.registry.GameRegistry;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

public class TileEntitySmelter extends TileEntity implements IInventory
{
private ItemStack[] inventory = new ItemStack[4];

public static final int INGOT_SLOT_1_INDEX = 0;
public static final int INGOT_SLOT_2_INDEX = 1;
public static final int FUEL_INVENTORY_INDEX = 2;
public static final int OUTPUT_INVENTORY_INDEX = 3;

public int furnaceBurnTime = 0;
public int currentItemBurnTime = 0;
public int furnaceCookTime = 0;

public String customName;

@Override
public int getSizeInventory()
{
	return this.inventory.length;
}

@Override
public int getInventoryStackLimit()
{
	return 64;
}

@Override
public boolean isUseableByPlayer(EntityPlayer entityplayer)
{
	return true;
}


@Override
public ItemStack getStackInSlot(int slot)
{
	return this.inventory[slot];
}

@SuppressWarnings("null")
@Override
public ItemStack decrStackSize(int slot, int amount)
{
	ItemStack itemStack = getStackInSlot(slot);
	if (itemStack != null)
	{
		setInventorySlotContents(slot, null);
	}

	else
	{
		itemStack = itemStack.splitStack(amount);
		if (itemStack.stackSize == 0)
		{
			setInventorySlotContents(slot, null);
		}
	}

	return itemStack;
}

@Override
public ItemStack getStackInSlotOnClosing(int slot)
{
	ItemStack itemStack = getStackInSlot(slot);
	if (itemStack != null)
	{
		setInventorySlotContents(slot, null);
	}

	return itemStack;
}

@Override
public void setInventorySlotContents(int slot, ItemStack itemStack)
{
	this.inventory[slot] = itemStack;
	if (itemStack != null && itemStack.stackSize > getInventoryStackLimit())
	{
		itemStack.stackSize = getInventoryStackLimit();
	}
}

@Override
public void readFromNBT(NBTTagCompound nbtTagCompound)
{
	super.readFromNBT(nbtTagCompound);
	NBTTagList tagList = nbtTagCompound.getTagList("Items", nbtTagCompound.getId());
	this.inventory = new ItemStack[this.getSizeInventory()];

	for (int i = 0; i < tagList.tagCount(); ++i)
	{
		NBTTagCompound tagCompound = (NBTTagCompound) tagList.getCompoundTagAt(i);
		byte slot = tagCompound.getByte("Slot");
		if (slot >= 0 && slot < inventory.length)
		{
			this.inventory[slot] = ItemStack.loadItemStackFromNBT(tagCompound);
		}
	}

	this.furnaceBurnTime = nbtTagCompound.getShort("BurnTime");
	this.furnaceCookTime = nbtTagCompound.getShort("CookTime");
	this.currentItemBurnTime = getItemBurnTime(inventory[1]);

	if (nbtTagCompound.hasKey("CustomName", )
	{
		customName = nbtTagCompound.getString("CustomName");
	}
}

@Override
public void writeToNBT(NBTTagCompound nbtTagCompound)
{
	super.writeToNBT(nbtTagCompound);
	nbtTagCompound.setShort("BurnTime", (short) this.furnaceBurnTime);
	nbtTagCompound.setShort("CookTime", (short) this.furnaceCookTime);
	NBTTagList tagList = new NBTTagList();

	for (int currentIndex = 0; currentIndex < this.inventory.length; ++currentIndex)
	{
		if (this.inventory[currentIndex] != null)
		{
			NBTTagCompound tagCompound = new NBTTagCompound();
			tagCompound.setByte("Slot", (byte) currentIndex);
			this.inventory[currentIndex].writeToNBT(tagCompound);
			tagList.appendTag(tagCompound);
		}
	}

	nbtTagCompound.setTag("Items", tagList);

	if (this.hasCustomInventoryName())
	{
		nbtTagCompound.setString("CustomName", customName);
	}
}

@Override
public void updateEntity()
{
	boolean flag = this.furnaceBurnTime > 0;
	boolean flag1 = false;

	if (this.furnaceBurnTime > 0)
	{
		--this.furnaceBurnTime;
	}

	if (!this.worldObj.isRemote)
	{
		if (this.furnaceBurnTime == 0)
		{
			if (this.canDoubleSmelt())
			{
				this.currentItemBurnTime = this.furnaceBurnTime = getItemBurnTime(this.inventory[2]);

				if (this.furnaceBurnTime > 0)
				{
					flag1 = true;

					if (this.inventory[2] != null)
					{
						--this.inventory[2].stackSize;

						if (this.inventory[2].stackSize == 0)
						{
							this.inventory[2] = this.inventory[2].getItem().getContainerItem(inventory[2]);
						}
					}
				}
			}
		}

		if (this.isBurning() && this.canDoubleSmelt())
		{
			++this.furnaceCookTime;

			if (this.furnaceCookTime == 400)
			{
				this.furnaceCookTime = 0;
				this.smeltDoubleItem();
				flag1 = true;
			}
		}

		else
		{
			this.furnaceCookTime = 0;
		}

		if (flag != this.furnaceBurnTime > 0)
		{
			flag1 = true;
		}

		if (flag1)
		{
			this.markDirty();
			//BlockSmelter.updateFurnaceBlockState(this.furnaceBurnTime > 0, this.worldObj, this.xCoord, this.yCoord, this.zCoord);
		}
	}
}

@SideOnly(Side.CLIENT)
public int getBurnTimeRemainingScaled(int par1)
{
	if (this.currentItemBurnTime == 0)
	{
		this.currentItemBurnTime = 400;
	}

	return this.furnaceBurnTime * par1 / this.currentItemBurnTime;
}

public int getCookProgressScaled(int par1)
{
	return this.furnaceCookTime * par1 / 400;
}

public boolean isBurning()
{
	return this.furnaceBurnTime > 0;
}

private boolean canDoubleSmelt()
{
	if (this.inventory[0] == null)
	{
		return false;
	} 

	else if (this.inventory[1] == null)
	{
		return false;
	} 

	else
	{
		ItemStack itemstack = RecipesSmelter.smelting().getDoubleSmeltingResult(this.inventory[0], this.inventory[1]);

		if (itemstack == null) return false;
		if (this.inventory[0].stackSize < RecipesSmelter.smelting().getSlot1ReduceAmount(this.inventory[0]).stackSize) return false;
		if (this.inventory[1].stackSize < RecipesSmelter.smelting().getSlot2ReduceAmount(this.inventory[1]).stackSize) return false;
		if (this.inventory[3] == null) return true;
		if (!this.inventory[3].isItemEqual(itemstack)) return false;
		int result = inventory[3].stackSize + itemstack.stackSize;
		return (result <= getInventoryStackLimit() && result <= itemstack.getMaxStackSize());
	}
}

public void smeltDoubleItem()
{
	if (this.canDoubleSmelt())
	{
		ItemStack itemstack = RecipesSmelter.smelting().getDoubleSmeltingResult(this.inventory[0], this.inventory[1]);

		if (this.inventory[3] == null)
		{
			this.inventory[3] = itemstack.copy();
		}

		else if (this.inventory[3].isItemEqual(itemstack))
		{
			inventory[3].stackSize += itemstack.stackSize;
		}

		this.inventory[0].stackSize -= RecipesSmelter.smelting().getSlot1ReduceAmount(this.inventory[0]).stackSize;
		this.inventory[1].stackSize -= RecipesSmelter.smelting().getSlot2ReduceAmount(this.inventory[1]).stackSize;

		if (this.inventory[0].stackSize <= 0)
		{
			this.inventory[0] = null;
		}

		if (this.inventory[1].stackSize <= 0)
		{
			this.inventory[1] = null;
		}
	}
}

public static int getItemBurnTime(ItemStack itemStack)
{
	if (itemStack == null)
	{
		return 0;
	}

	else
	{
		Item burningItem = itemStack.getItem();
		Item item = itemStack.getItem();

		/*if (itemStack.getItem() instanceof ItemBlock) // && Block.blocksList[i] != null)
		{
			Block block = Block.blocksList[i];

			if (block == Block.woodSingleSlab)
			{
				return 15;
			}

			if (block.blockMaterial == Material.wood)
			{
				return 30;
			}
		}*/

		if (item instanceof ItemTool && ((ItemTool) item).getToolMaterialName().equals("WOOD")) return 10;
		if (item instanceof ItemSword && ((ItemSword) item).getToolMaterialName().equals("WOOD")) return 10;
		if (burningItem == Items.stick) return 5;
		if (burningItem == Items.coal) return 80;
		if (burningItem == Items.blaze_rod) return 120;
		if (burningItem == Items.lava_bucket) return 400;

		return GameRegistry.getFuelValue(itemStack);
	}
}

public static boolean isItemFuel(ItemStack itemStack)
{
	return getItemBurnTime(itemStack) > 0;
}

@Override
public boolean isItemValidForSlot(int i, ItemStack itemstack)
{
	if (i == 3)
	{
		return false;
	}

	else
	{
		return true;
	}
}

@Override
public String getInventoryName()
{
	return "Smelter";
}

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

@Override
public void openInventory() {}

@Override
public void closeInventory() {}
}

 

 

GuiHandler

@Override
public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
{
	TileEntity tileEntity = world.getTileEntity(x, y, z);

	if (ID == BlfRPG.GUI_SMELTER_ID && tileEntity != null)
	{
		System.out.println("topkek");
		return new ContainerSmelter(player.inventory, (TileEntitySmelter) tileEntity);
	}

	return null;
}

@Override
public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
{
	TileEntity tileEntity = world.getTileEntity(x, y, z);

	if (ID == BlfRPG.GUI_SMELTER_ID && tileEntity != null)
	{
		System.out.println("topkek");
		return new GuiSmelter(player.inventory, (TileEntitySmelter) tileEntity);
	}

	return null;
}

 

 

ContainerSmelter

package blfngl.rpg.player.inventory;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.inventory.Container;
import net.minecraft.inventory.ICrafting;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
import blfngl.rpg.tileentity.TileEntitySmelter;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

public class ContainerSmelter extends Container
{
private TileEntitySmelter furnace;
private int lastCookTime = 0;
public int lastBurnTime = 0;
private int lastItemBurnTime = 0;

public ContainerSmelter(InventoryPlayer inventoryPlayer, TileEntitySmelter tileFurnace)
{
	this.furnace = tileFurnace;
	this.addSlotToContainer(new Slot(tileFurnace, TileEntitySmelter.INGOT_SLOT_1_INDEX, 26, 17));
	this.addSlotToContainer(new Slot(tileFurnace, TileEntitySmelter.INGOT_SLOT_2_INDEX, 64, 17));
	this.addSlotToContainer(new Slot(tileFurnace, TileEntitySmelter.FUEL_INVENTORY_INDEX, 45, 53));
	this.addSlotToContainer(new Slot(tileFurnace, TileEntitySmelter.OUTPUT_INVENTORY_INDEX, 126, 35));

	for (int invRow = 0; invRow < 3; ++invRow)
	{
		for (int invCol = 0; invCol < 9; ++invCol)
		{
			this.addSlotToContainer(new Slot(inventoryPlayer, invCol + invRow * 9 + 9, 8 + invCol * 18, 84 + invRow * 18));
		}
	}

	for (int actionBar = 0; actionBar < 9; ++actionBar)
	{
		this.addSlotToContainer(new Slot(inventoryPlayer, actionBar, 8 + actionBar * 18, 142));
	}
}

@Override
public void addCraftingToCrafters(ICrafting par1ICrafting)
{
	super.addCraftingToCrafters(par1ICrafting);
	par1ICrafting.sendProgressBarUpdate(this, 0, this.furnace.furnaceCookTime);
	par1ICrafting.sendProgressBarUpdate(this, 1, this.furnace.furnaceBurnTime);
	par1ICrafting.sendProgressBarUpdate(this, 2, this.furnace.currentItemBurnTime);
}

@Override
public void detectAndSendChanges()
{
	super.detectAndSendChanges();

	for (int i = 0; i < this.crafters.size(); ++i)
	{
		ICrafting icrafting = (ICrafting)this.crafters.get(i);

		if (this.lastCookTime != this.furnace.furnaceCookTime)
		{
			icrafting.sendProgressBarUpdate(this, 0, this.furnace.furnaceCookTime);
		}

		if (this.lastBurnTime != this.furnace.furnaceBurnTime)
		{
			icrafting.sendProgressBarUpdate(this, 1, this.furnace.furnaceBurnTime);
		}

		if (this.lastItemBurnTime != this.furnace.currentItemBurnTime)
		{
			icrafting.sendProgressBarUpdate(this, 2, this.furnace.currentItemBurnTime);
		}
	}

	this.lastCookTime = this.furnace.furnaceCookTime;
	this.lastBurnTime = this.furnace.furnaceBurnTime;
	this.lastItemBurnTime = this.furnace.currentItemBurnTime;
}

@SideOnly(Side.CLIENT)
public void updateProgressBar(int par1, int par2)
{
	if (par1 == 0)
	{
		this.furnace.furnaceCookTime = par2;
	}

	if (par1 == 1)
	{
		this.furnace.furnaceBurnTime = par2;
	}

	if (par1 == 2)
	{
		this.furnace.currentItemBurnTime = par2;
	}
}

@Override
public boolean canInteractWith(EntityPlayer entityplayer)
{
	return true;
}

@Override
public ItemStack transferStackInSlot(EntityPlayer entityPlayer, int par2)
{
	return null;
}
}

 

 

Error Message

---- Minecraft Crash Report ----
// This is a token for 1 free hug. Redeem at your nearest Mojangsta: [~~HUG~~]

Time: 12/27/14 12:46 AM
Description: Unexpected error

java.lang.NullPointerException: Unexpected error
at cpw.mods.fml.common.network.NetworkRegistry.getLocalGuiContainer(NetworkRegistry.java:263)
at cpw.mods.fml.common.network.internal.FMLNetworkHandler.openGui(FMLNetworkHandler.java:93)
at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2501)
at blfngl.rpg.block.BlockSmelter.onBlockActivated(BlockSmelter.java:31)
at net.minecraft.client.multiplayer.PlayerControllerMP.onPlayerRightClick(PlayerControllerMP.java:376)
at net.minecraft.client.Minecraft.func_147121_ag(Minecraft.java:1518)
at net.minecraft.client.Minecraft.runTick(Minecraft.java:2033)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1028)
at net.minecraft.client.Minecraft.run(Minecraft.java:951)
at net.minecraft.client.main.Main.main(Main.java:164)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78)
at GradleStart.main(GradleStart.java:45)


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

-- Head --
Stacktrace:
at cpw.mods.fml.common.network.NetworkRegistry.getLocalGuiContainer(NetworkRegistry.java:263)
at cpw.mods.fml.common.network.internal.FMLNetworkHandler.openGui(FMLNetworkHandler.java:93)
at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2501)
at blfngl.rpg.block.BlockSmelter.onBlockActivated(BlockSmelter.java:31)
at net.minecraft.client.multiplayer.PlayerControllerMP.onPlayerRightClick(PlayerControllerMP.java:376)
at net.minecraft.client.Minecraft.func_147121_ag(Minecraft.java:1518)

-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityClientPlayerMP['Player687'/352, l='MpServer', x=206.45, y=67.62, z=204.88]]
Chunk stats: MultiplayerChunkCache: 180, 180
Level seed: 0
Level generator: ID 00 - default, ver 1. Features enabled: false
Level generator options: 
Level spawn location: World: (128,64,256), Chunk: (at 0,4,0 in 8,16; contains blocks 128,0,256 to 143,255,271), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
Level time: 40302 game time, 5175 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: 61 total; [EntitySpider['Spider'/268, l='MpServer', x=236.00, y=12.00, z=146.06], EntitySkeleton['Skeleton'/269, l='MpServer', x=229.50, y=12.00, z=149.09], EntityCreeper['Creeper'/270, l='MpServer', x=237.53, y=25.00, z=205.88], EntityCreeper['Creeper'/271, l='MpServer', x=239.47, y=25.00, z=222.00], EntityCreeper['Creeper'/272, l='MpServer', x=239.63, y=25.00, z=217.97], EntityHorse['Horse'/147, l='MpServer', x=137.38, y=70.00, z=127.84], EntityZombie['Zombie'/149, l='MpServer', x=139.16, y=61.00, z=139.47], EntityHorse['Horse'/150, l='MpServer', x=136.72, y=69.00, z=136.81], EntityZombie['Zombie'/151, l='MpServer', x=143.50, y=48.00, z=148.91], EntityHorse['Horse'/152, l='MpServer', x=137.84, y=68.00, z=159.22], EntityCreeper['Creeper'/153, l='MpServer', x=139.47, y=40.00, z=169.00], EntityCreeper['Creeper'/154, l='MpServer', x=139.97, y=40.00, z=172.63], EntityHorse['Donkey'/155, l='MpServer', x=131.06, y=67.00, z=173.75], EntityEnderman['Enderman'/156, l='MpServer', x=129.59, y=35.00, z=226.03], EntityBat['Bat'/157, l='MpServer', x=126.94, y=38.17, z=231.93], EntitySkeleton['Skeleton'/158, l='MpServer', x=139.50, y=26.00, z=252.13], EntitySkeleton['Skeleton'/159, l='MpServer', x=132.53, y=25.00, z=252.84], EntityChicken['Chicken'/287, l='MpServer', x=241.47, y=64.00, z=142.25], EntityCreeper['Creeper'/288, l='MpServer', x=251.30, y=12.00, z=163.09], EntitySkeleton['Skeleton'/160, l='MpServer', x=142.31, y=22.00, z=251.50], EntityBat['Bat'/289, l='MpServer', x=251.84, y=15.10, z=169.50], EntitySkeleton['Skeleton'/161, l='MpServer', x=143.94, y=20.00, z=256.47], EntitySkeleton['Skeleton'/290, l='MpServer', x=255.34, y=29.00, z=175.91], EntityCreeper['Creeper'/162, l='MpServer', x=142.25, y=28.00, z=272.69], EntitySpider['Spider'/291, l='MpServer', x=242.66, y=42.00, z=249.00], EntityClientPlayerMP['Player687'/352, l='MpServer', x=206.45, y=67.62, z=204.88], EntitySpider['Spider'/172, l='MpServer', x=149.22, y=56.00, z=134.00], EntityZombie['Zombie'/173, l='MpServer', x=151.88, y=63.00, z=140.28], EntityCreeper['Creeper'/174, l='MpServer', x=154.63, y=54.00, z=140.16], EntityZombie['Zombie'/303, l='MpServer', x=263.97, y=21.00, z=188.53], EntitySkeleton['Skeleton'/175, l='MpServer', x=147.50, y=54.00, z=140.66], EntitySpider['Spider'/304, l='MpServer', x=268.54, y=21.00, z=178.02], EntitySkeleton['Skeleton'/176, l='MpServer', x=147.50, y=54.00, z=137.84], EntityCreeper['Creeper'/305, l='MpServer', x=265.91, y=21.00, z=183.16], EntitySkeleton['Skeleton'/177, l='MpServer', x=151.75, y=54.00, z=140.47], EntitySkeleton['Skeleton'/178, l='MpServer', x=144.34, y=48.00, z=149.50], EntityChicken['Chicken'/306, l='MpServer', x=264.56, y=69.00, z=182.41], EntityHorse['Donkey'/179, l='MpServer', x=157.34, y=68.00, z=149.72], EntitySkeleton['Skeleton'/180, l='MpServer', x=155.38, y=40.00, z=211.22], EntityCreeper['Creeper'/181, l='MpServer', x=151.48, y=22.60, z=254.49], EntityBat['Bat'/182, l='MpServer', x=150.61, y=23.86, z=259.13], EntitySkeleton['Skeleton'/183, l='MpServer', x=151.41, y=15.00, z=268.63], EntityBat['Bat'/184, l='MpServer', x=146.14, y=20.95, z=264.90], EntityBat['Bat'/185, l='MpServer', x=148.14, y=21.57, z=265.88], EntityHorse['Horse'/313, l='MpServer', x=283.03, y=66.00, z=152.38], EntityBat['Bat'/186, l='MpServer', x=148.00, y=19.07, z=264.16], EntityZombie['Zombie'/314, l='MpServer', x=286.88, y=45.00, z=216.53], EntitySpider['Spider'/201, l='MpServer', x=164.75, y=44.00, z=125.72], EntityCreeper['Creeper'/205, l='MpServer', x=175.47, y=43.00, z=128.44], EntityBat['Bat'/206, l='MpServer', x=161.30, y=44.26, z=128.50], EntityCreeper['Creeper'/207, l='MpServer', x=162.66, y=51.00, z=128.47], EntitySkeleton['Skeleton'/208, l='MpServer', x=174.50, y=46.00, z=156.50], EntityCreeper['Creeper'/209, l='MpServer', x=165.63, y=53.00, z=145.50], EntityZombie['Zombie'/210, l='MpServer', x=161.50, y=54.00, z=145.88], EntityBat['Bat'/211, l='MpServer', x=165.03, y=35.79, z=170.39], EntitySkeleton['Skeleton'/212, l='MpServer', x=160.38, y=39.00, z=230.75], EntityBat['Bat'/226, l='MpServer', x=189.50, y=33.10, z=150.50], EntitySkeleton['Skeleton'/227, l='MpServer', x=182.38, y=32.00, z=153.88], EntityCreeper['Creeper'/228, l='MpServer', x=183.00, y=42.00, z=234.44], EntitySkeleton['Skeleton'/242, l='MpServer', x=207.84, y=25.00, z=145.72], EntityZombie['Zombie'/243, l='MpServer', x=194.03, y=44.00, z=223.50]]
Retry entities: 0 total; []
Server brand: fml,forge
Server type: Integrated singleplayer server
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:415)
at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2555)
at net.minecraft.client.Minecraft.run(Minecraft.java:980)
at net.minecraft.client.main.Main.main(Main.java:164)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78)
at GradleStart.main(GradleStart.java:45)

-- System Details --
Details:
Minecraft Version: 1.7.10
Operating System: Windows 8.1 (amd64) version 6.3
Java Version: 1.8.0_25, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 853513480 bytes (813 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)
JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
IntCache: cache: 13, tcache: 0, allocated: 13, tallocated: 95
FML: MCP v9.05 FML v7.10.85.1230 Minecraft Forge 10.13.2.1230 4 mods loaded, 4 mods active
mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
FML{7.10.85.1230} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Forge{10.13.2.1230} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
blfrpg{v0.1} [blfRPG] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Launched Version: 1.7.10
LWJGL: 2.9.1
OpenGL: GeForce GTX 860M/PCIe/SSE2 GL version 4.4.0, NVIDIA Corporation
GL Caps: Using GL 1.3 multitexturing.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Anisotropic filtering is supported and maximum anisotropy is 16.
Shaders are available because OpenGL 2.1 is supported.

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)
Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
Anisotropic Filtering: Off (1)

 

Posted

Did you register your GUI handler?

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

 

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

 

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

Posted

Null pointers are usually pretty easy to figure out compared to other errors. In your

onBlockActivated()

, there are a few things that could cause it (not limited to these two cases though):

[*]

world.getTileEntity()

, if

world

is null

[*]

player.openGui()

, if

 player

is null

 

Check if those are null when you run the code (using prints or your preferred method).

 

Basically, any time there is a

variable.something

, where

something

isn't static, you can potentially cause a null pointer, if

variable

is null.

 

Edit:

 

Actually, check the code inside of

NetworkRegistry.getLocalGuiContainer()

. There should be some variable that is incorrectly null inside that function. You can set a break point in that function and see exactly which line breaks when you run using debug mode. Then you can check what each variable is inside debug mode. It might also be caused by your

getClientGuiElement

returning null sometimes. Instead of just returning null, it's helpful to put some sort of notice when you reach that part of code. For example, you can put

System.err.println("something went wrong");

right before you return null.

 

 

Posted

 

Null pointers are usually pretty easy to figure out compared to other errors. In your

onBlockActivated()

, there are a few things that could cause it (not limited to these two cases though):

[*]

world.getTileEntity()

, if

world

is null

[*]

player.openGui()

, if

 player

is null

 

Check if those are null when you run the code (using prints or your preferred method).

 

Basically, any time there is a

variable.something

, where

something

isn't static, you can potentially cause a null pointer, if

variable

is null.

 

Edit:

 

Actually, check the code inside of

NetworkRegistry.getLocalGuiContainer()

. There should be some variable that is incorrectly null inside that function. You can set a break point in that function and see exactly which line breaks when you run using debug mode. Then you can check what each variable is inside debug mode. It might also be caused by your

getClientGuiElement

returning null sometimes. Instead of just returning null, it's helpful to put some sort of notice when you reach that part of code. For example, you can put

System.err.println("something went wrong");

right before you return null.

 

So I did some debugging and the getClientGuiElement is never called, it will cut before it even gets there. It does seem to be something with getLocalGuiContainer() but I can't figure out how to fix it.

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

    • https://paste.ee/e/LCimXJdh/0   Using the TechnicLauncher and the official Pixelmon Reforged modpack. Only thing I changed was added Litematica and MaLiLib to it. Everytime I leave a server it crashes.
    • Extra virgin olive oil, not like regular oil, isn't always constantly processed thoroughly, so it keeps extra nutrients, antioxidants and nutrients that are important for our frame. Does olive oil reduce cholesterol  and guide heart health? Its normal consumption can reduce the risk of cardiovascular ailment because of the excess content of monounsaturated fats.
    • I've been playing on this single player modded world for about a month probably it's been working perfectly fine until this morning when i was playing, it crashed and said "invalid player id"  since this every subsequent attempt to rejoin the world results in that. all the other worlds i've made are still playable and i can create new worlds as well and they play fine. this is the latest [08:55:51] [main/INFO]: ModLauncher running: args [--username, Callousedbeans, --version, forge-47.3.0, --gameDir, C:\Users\14313\curseforge\minecraft\Instances\Cobblemon, --assetsDir, C:\Users\14313\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, 8006a7731afc4cdcb0a5c5f57edf6e02, --accessToken, ????????, --clientId, MzM4ZGY1MTYtZTAzOC00OTQ3LWEwMjktMjRlZDMwM2I4NGZi, --xuid, 2535451237089590, --userType, msa, --versionType, release, --width, 854, --height, 480, --quickPlayPath, C:\Users\14313\curseforge\minecraft\Install\quickPlay\java\1736952947979.json, --launchTarget, forgeclient, --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [08:55:51] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Microsoft; OS Windows 10 arch amd64 version 10.0 [08:55:53] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [08:55:53] [main/INFO]: Trying GL version 4.6 [08:55:53] [main/INFO]: Requested GL version 4.6 got version 4.6 [08:55:54] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/14313/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [08:55:54] [pool-2-thread-1/INFO]: GL info: Intel(R) UHD Graphics GL version 4.6.0 - Build 27.20.100.8476, Intel [08:55:54] [main/INFO]: Found mod file AdditionalStructures-1.20.x-(v.4.2.2).jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file amendments-1.20-1.2.14.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file BiomesOPlenty-1.20.1-18.0.0.592.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file cobbledex-1.20.1-forge-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file Cobblemon O' Plenty 1.20.1 B.2.0.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file cobblemon-counter-1.5-forge-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file Cobblemon-forge-1.5.2+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file cobblemon-spawn-notification-1.5-forge-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file cobblemon-unchained-1.5-forge-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file cobblemonoutbreaks-1.1.4-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file cobblemonrider-1.2.4.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file Cobblepedia-Forge-0.6.8.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file comforts-forge-6.4.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file cristellib-1.1.6-forge.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file decorative_blocks-forge-1.20.1-4.1.3.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file journeymap-1.20.1-5.10.3-forge.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file kotlinforforge-4.11.0-all.jar of type LIBRARY with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file mcw-doors-1.1.1forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file mcw-furniture-3.3.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file modernfix-forge-5.20.0+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file moonlight-1.20-2.13.49-forge.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file MouseTweaks-forge-mc1.20.1-2.25.1.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file mvs-4.1.4-1.20-forge.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file packetfixer-forge-1.4.3-1.19-to-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file Patchouli-1.20.1-84-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file polytone-1.20-2.3.3.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file repurposed_structures-7.1.15+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file sophisticatedbackpacks-1.20.1-3.22.2.1172.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file sophisticatedcore-1.20.1-1.1.3.835.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file supplementaries-1.20-3.1.11.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file TerraBlender-forge-1.20.1-3.0.1.7.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file Towns-and-Towers-1.12-Fabric+Forge.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:55] [main/WARN]: Mod file C:\Users\14313\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.3.0\fmlcore-1.20.1-47.3.0.jar is missing mods.toml file [08:55:55] [main/WARN]: Mod file C:\Users\14313\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.3.0\javafmllanguage-1.20.1-47.3.0.jar is missing mods.toml file [08:55:55] [main/WARN]: Mod file C:\Users\14313\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.3.0\lowcodelanguage-1.20.1-47.3.0.jar is missing mods.toml file [08:55:55] [main/WARN]: Mod file C:\Users\14313\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.3.0\mclanguage-1.20.1-47.3.0.jar is missing mods.toml file [08:55:55] [main/INFO]: Found mod file fmlcore-1.20.1-47.3.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@64138b0c [08:55:55] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.3.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@64138b0c [08:55:55] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.3.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@64138b0c [08:55:55] [main/INFO]: Found mod file mclanguage-1.20.1-47.3.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@64138b0c [08:55:55] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@64138b0c [08:55:55] [main/INFO]: Found mod file forge-1.20.1-47.3.0-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@64138b0c [08:55:55] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [08:55:55] [main/INFO]: Found 10 dependencies adding them to mods collection [08:55:55] [main/INFO]: Found mod file MixinSquared-0.1.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:55:55] [main/INFO]: Found mod file mixinextras-forge-0.4.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:55:55] [main/INFO]: Found mod file kfflib-4.11.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:55:55] [main/INFO]: Found mod file kffmod-4.11.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:55:55] [main/INFO]: Found mod file exp4j-0.4.8.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:55:55] [main/INFO]: Found mod file MixinExtras-0.4.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:55:55] [main/INFO]: Found mod file jankson-1.2.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:55:55] [main/INFO]: Found mod file mixinsquared-forge-0.1.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:55:55] [main/INFO]: Found mod file kfflang-4.11.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:55:55] [main/INFO]: Found mod file spectrelib-forge-0.13.15+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:56:01] [main/INFO]: Compatibility level set to JAVA_17 [08:56:01] [main/INFO]: Launching target 'forgeclient' with arguments [--version, forge-47.3.0, --gameDir, C:\Users\14313\curseforge\minecraft\Instances\Cobblemon, --assetsDir, C:\Users\14313\curseforge\minecraft\Install\assets, --uuid, 8006a7731afc4cdcb0a5c5f57edf6e02, --username, Callousedbeans, --assetIndex, 5, --accessToken, ????????, --clientId, MzM4ZGY1MTYtZTAzOC00OTQ3LWEwMjktMjRlZDMwM2I4NGZi, --xuid, 2535451237089590, --userType, msa, --versionType, release, --width, 854, --height, 480, --quickPlayPath, C:\Users\14313\curseforge\minecraft\Install\quickPlay\java\1736952947979.json] [08:56:02] [main/INFO]: Loaded configuration file for ModernFix 5.20.0+mc1.20.1: 86 options available, 0 override(s) found [08:56:02] [main/INFO]: Applying Nashorn fix [08:56:02] [main/INFO]: Applied Forge config corruption patch [08:56:02] [main/WARN]: Reference map 'mvs-forge-refmap.json' for mvs-forge.mixins.json could not be read. If this is a development environment you can ignore this message [08:56:02] [main/WARN]: Reference map 'packetfixer-forge-forge-refmap.json' for packetfixer-forge.mixins.json could not be read. If this is a development environment you can ignore this message [08:56:02] [main/WARN]: Reference map 'cristellib-forge-refmap.json' for cristellib.mixins.json could not be read. If this is a development environment you can ignore this message [08:56:03] [main/WARN]: Error loading class: vectorwing/farmersdelight/client/renderer/HangingCanvasSignRenderer (java.lang.ClassNotFoundException: vectorwing.farmersdelight.client.renderer.HangingCanvasSignRenderer) [08:56:03] [main/WARN]: Error loading class: vectorwing/farmersdelight/client/renderer/CanvasSignRenderer (java.lang.ClassNotFoundException: vectorwing.farmersdelight.client.renderer.CanvasSignRenderer) [08:56:03] [main/ERROR]: Error occurred applying transform of coremod coremods/field_to_method.js function biome java.lang.IllegalStateException: Field f_47437_ is not private and an instance field at net.minecraftforge.coremod.api.ASMAPI.redirectFieldToMethod(ASMAPI.java:270) ~[coremods-5.1.6.jar:?] at org.openjdk.nashorn.internal.scripts.Script$Recompilation$21$292A$\^eval\_.initializeCoreMod#transformer(<eval>:11) ~[?:?] at org.openjdk.nashorn.internal.runtime.ScriptFunctionData.invoke(ScriptFunctionData.java:648) ~[nashorn-core-15.3.jar:?] at org.openjdk.nashorn.internal.runtime.ScriptFunction.invoke(ScriptFunction.java:513) ~[nashorn-core-15.3.jar:?] at org.openjdk.nashorn.internal.runtime.ScriptRuntime.apply(ScriptRuntime.java:520) ~[nashorn-core-15.3.jar:?] at org.openjdk.nashorn.api.scripting.ScriptObjectMirror.call(ScriptObjectMirror.java:111) ~[nashorn-core-15.3.jar:?] at net.minecraftforge.coremod.NashornFactory.lambda$getFunction$0(NashornFactory.java:22) ~[coremods-5.1.6.jar:5.1.6] at net.minecraftforge.coremod.transformer.CoreModClassTransformer.runCoremod(CoreModClassTransformer.java:22) ~[coremods-5.1.6.jar:?] at net.minecraftforge.coremod.transformer.CoreModClassTransformer.runCoremod(CoreModClassTransformer.java:14) ~[coremods-5.1.6.jar:?] at net.minecraftforge.coremod.transformer.CoreModBaseTransformer.transform(CoreModBaseTransformer.java:42) ~[coremods-5.1.6.jar:?] at cpw.mods.modlauncher.TransformerHolder.transform(TransformerHolder.java:41) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.ClassTransformer.performVote(ClassTransformer.java:179) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:117) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar:?] at cpw.mods.cl.ModuleClassLoader.getMaybeTransformedClassBytes(ModuleClassLoader.java:250) ~[securejarhandler-2.1.10.jar:?] at cpw.mods.modlauncher.TransformingClassLoader.buildTransformedClassNodeFor(TransformingClassLoader.java:58) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.LaunchPluginHandler.lambda$announceLaunch$10(LaunchPluginHandler.java:100) ~[modlauncher-10.0.9.jar:?] at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.getClassNode(MixinLaunchPluginLegacy.java:222) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.getClassNode(MixinLaunchPluginLegacy.java:207) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.ClassInfo.forName(ClassInfo.java:2005) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinInfo.getTargetClass(MixinInfo.java:1017) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinInfo.readTargetClasses(MixinInfo.java:1007) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinInfo.parseTargets(MixinInfo.java:895) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinConfig.prepareMixins(MixinConfig.java:867) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinConfig.prepare(MixinConfig.java:775) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinProcessor.prepareConfigs(MixinProcessor.java:539) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinProcessor.select(MixinProcessor.java:462) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]... (109 KB left) this is the crash report [15Jan2025 09:18:53.804] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--username, Callousedbeans, --version, forge-47.3.0, --gameDir, C:\Users\14313\curseforge\minecraft\Instances\Cobblemon, --assetsDir, C:\Users\14313\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, 8006a7731afc4cdcb0a5c5f57edf6e02, --accessToken, ????????, --clientId, MzM4ZGY1MTYtZTAzOC00OTQ3LWEwMjktMjRlZDMwM2I4NGZi, --xuid, 2535451237089590, --userType, msa, --versionType, release, --width, 854, --height, 480, --quickPlayPath, C:\Users\14313\curseforge\minecraft\Install\quickPlay\java\1736954330212.json, --launchTarget, forgeclient, --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [15Jan2025 09:18:53.811] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Microsoft; OS Windows 10 arch amd64 version 10.0 [15Jan2025 09:18:53.844] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev] [15Jan2025 09:18:53.862] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] [15Jan2025 09:18:53.882] [main/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner] [15Jan2025 09:18:53.900] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services [15Jan2025 09:18:53.909] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is C:\Users\14313\curseforge\minecraft\Instances\Cobblemon [15Jan2025 09:18:53.910] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods [15Jan2025 09:18:53.910] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\config [15Jan2025 09:18:53.910] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\config\fml.toml [15Jan2025 09:18:55.185] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: [15Jan2025 09:18:55.191] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow [15Jan2025 09:18:55.276] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 [15Jan2025 09:18:55.346] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 [15Jan2025 09:18:55.407] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml] [15Jan2025 09:18:55.407] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading [15Jan2025 09:18:55.408] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin [15Jan2025 09:18:55.409] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin [15Jan2025 09:18:55.409] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml [15Jan2025 09:18:55.411] [main/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion/CORE]: Found FMLLauncher version 1.0 [15Jan2025 09:18:55.412] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML 1.0 loading [15Jan2025 09:18:55.412] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found ModLauncher version : 10.0.9+10.0.9+main.dcd20f30 [15Jan2025 09:18:55.413] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7 [15Jan2025 09:18:55.414] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found EventBus version : 6.0.5+6.0.5+master.eb8e549b [15Jan2025 09:18:55.415] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found Runtime Dist Cleaner [15Jan2025 09:18:55.417] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found CoreMod version : 5.1.6 [15Jan2025 09:18:55.419] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6 [15Jan2025 09:18:55.419] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package specification 5 [15Jan2025 09:18:55.420] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml [15Jan2025 09:18:55.421] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services [15Jan2025 09:18:55.431] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing [15Jan2025 09:18:55.432] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin [15Jan2025 09:18:55.457] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@37858383 [15Jan2025 09:18:55.496] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/14313/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [15Jan2025 09:18:55.506] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager [15Jan2025 09:18:55.507] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) [15Jan2025 09:18:55.508] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) [15Jan2025 09:18:55.509] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) [15Jan2025 09:18:55.510] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) [15Jan2025 09:18:55.510] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) [15Jan2025 09:18:55.513] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin [15Jan2025 09:18:55.514] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml [15Jan2025 09:18:55.514] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Setting up basic FML game directories [15Jan2025 09:18:55.515] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is C:\Users\14313\curseforge\minecraft\Instances\Cobblemon [15Jan2025 09:18:55.516] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods [15Jan2025 09:18:55.516] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\config [15Jan2025 09:18:55.516] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\config\fml.toml [15Jan2025 09:18:55.516] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading configuration [15Jan2025 09:18:55.521] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing ModFile [15Jan2025 09:18:55.526] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing launch handler [15Jan2025 09:18:55.527] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Using forgeclient as launch service [15Jan2025 09:18:55.534] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: Intel(R) UHD Graphics GL version 4.6.0 - Build 27.20.100.8476, Intel [15Jan2025 09:18:55.559] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Received command line version data : VersionInfo[forgeVersion=47.3.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge] [15Jan2025 09:18:55.566] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml [15Jan2025 09:18:55.567] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'srg' [15Jan2025 09:18:55.569] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {} [15Jan2025 09:18:55.569] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning [15Jan2025 09:18:55.570] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin [15Jan2025 09:18:55.572] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin [15Jan2025 09:18:55.572] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml [15Jan2025 09:18:55.572] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Initiating mod scan [15Jan2025 09:18:55.602] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler/CORE]: Found mod coordinates from lists: [] [15Jan2025 09:18:55.611] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null) [15Jan2025 09:18:55.611] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) [15Jan2025 09:18:55.629] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\AdditionalStructures-1.20.x-(v.4.2.2).jar [15Jan2025 09:18:55.715] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file AdditionalStructures-1.20.x-(v.4.2.2).jar with {additionalstructures} mods - versions {4.2.2} [15Jan2025 09:18:55.721] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\amendments-1.20-1.2.14.jar [15Jan2025 09:18:55.724] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file amendments-1.20-1.2.14.jar with {amendments} mods - versions {1.20-1.2.14} [15Jan2025 09:18:55.732] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\BiomesOPlenty-1.20.1-18.0.0.592.jar [15Jan2025 09:18:55.745] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file BiomesOPlenty-1.20.1-18.0.0.592.jar with {biomesoplenty} mods - versions {18.0.0.592} [15Jan2025 09:18:55.751] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\cobbledex-1.20.1-forge-1.1.0.jar [15Jan2025 09:18:55.755] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cobbledex-1.20.1-forge-1.1.0.jar with {cobbledex} mods - versions {1.1.0} [15Jan2025 09:18:55.760] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\Cobblemon O' Plenty 1.20.1 B.2.0.jar [15Jan2025 09:18:55.762] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Cobblemon O' Plenty 1.20.1 B.2.0.jar with {tmtcop} mods - versions {2.0.0} [15Jan2025 09:18:55.767] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\cobblemon-counter-1.5-forge-1.2.0.jar [15Jan2025 09:18:55.769] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cobblemon-counter-1.5-forge-1.2.0.jar with {cobbled_counter} mods - versions {1.5-forge-1.2.0} [15Jan2025 09:18:55.821] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\Cobblemon-forge-1.5.2+1.20.1.jar [15Jan2025 09:18:55.823] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Cobblemon-forge-1.5.2+1.20.1.jar with {cobblemon} mods - versions {1.5.2+1.20.1} [15Jan2025 09:18:55.829] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\cobblemon-spawn-notification-1.5-forge-1.2.0.jar [15Jan2025 09:18:55.831] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cobblemon-spawn-notification-1.5-forge-1.2.0.jar with {spawn_notification} mods - versions {1.5-forge-1.2.0} [15Jan2025 09:18:55.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\cobblemon-unchained-1.5-forge-1.0.1.jar [15Jan2025 09:18:55.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cobblemon-unchained-1.5-forge-1.0.1.jar with {unchained} mods - versions {1.5-forge-1.0.1} [15Jan2025 09:18:55.846] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\cobblemonoutbreaks-1.1.4-1.20.1.jar [15Jan2025 09:18:55.848] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cobblemonoutbreaks-1.1.4-1.20.1.jar with {cobblemonoutbreaks} mods - versions {1.1.4-1.20.1} [15Jan2025 09:18:55.852] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\cobblemonrider-1.2.4.jar [15Jan2025 09:18:55.854] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cobblemonrider-1.2.4.jar with {cobblemonrider} mods - versions {1.2.4} [15Jan2025 09:18:55.860] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\Cobblepedia-Forge-0.6.8.jar [15Jan2025 09:18:55.863] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Cobblepedia-Forge-0.6.8.jar with {cobblepedia} mods - versions {0.6.8} [15Jan2025 09:18:55.869] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\comforts-forge-6.4.0+1.20.1.jar [15Jan2025 09:18:55.870] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file comforts-forge-6.4.0+1.20.1.jar with {comforts} mods - versions {6.4.0+1.20.1} [15Jan2025 09:18:55.875] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\cristellib-1.1.6-forge.jar [15Jan2025 09:18:55.880] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cristellib-1.1.6-forge.jar with {cristellib} mods - versions {1.1.6} [15Jan2025 09:18:55.886] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\decorative_blocks-forge-1.20.1-4.1.3.jar [15Jan2025 09:18:55.889] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file decorative_blocks-forge-1.20.1-4.1.3.jar with {decorative_blocks} mods - versions {4.1.3} [15Jan2025 09:18:55.899] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\journeymap-1.20.1-5.10.3-forge.jar [15Jan2025 09:18:55.900] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file journeymap-1.20.1-5.10.3-forge.jar with {journeymap} mods - versions {5.10.3} [15Jan2025 09:18:55.981] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\mcw-doors-1.1.1forge-mc1.20.1.jar [15Jan2025 09:18:55.982] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mcw-doors-1.1.1forge-mc1.20.1.jar with {mcwdoors} mods - versions {1.1.1} [15Jan2025 09:18:55.992] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\mcw-furniture-3.3.0-mc1.20.1forge.jar [15Jan2025 09:18:55.994] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mcw-furniture-3.3.0-mc1.20.1forge.jar with {mcwfurnitures} mods - versions {3.3.0}... (493 KB left)
  • Topics

×
×
  • Create New...

Important Information

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