Jump to content

Recommended Posts

Posted

My custom Paxel causes a crash if I use it in Survival Mode. Here is the code in ItemPaxel:

 

 

package f1repl4ce.fireplacecore.tools;

import java.util.Set;

import com.google.common.collect.Sets;

import cpw.mods.fml.common.eventhandler.Event.Result;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Blocks;
import net.minecraft.item.ItemStack;
import net.minecraft.item.ItemTool;
import net.minecraft.world.World;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.entity.player.UseHoeEvent;

public class ItemPaxel extends ItemTool
{
    private static float damageVsEntity;

protected ItemPaxel(ToolMaterial p_i45333_2_, Set field_150914_c) {
	super(damageVsEntity, p_i45333_2_, field_150914_c);
	field_150914_c = Sets.newHashSet(new Block[] {Blocks.planks, Blocks.bookshelf, Blocks.log, Blocks.log2, Blocks.chest, Blocks.pumpkin, Blocks.lit_pumpkin, Blocks.cobblestone, Blocks.double_stone_slab, Blocks.stone_slab, Blocks.stone, Blocks.sandstone, Blocks.mossy_cobblestone, Blocks.iron_ore, Blocks.iron_block, Blocks.coal_ore, Blocks.gold_block, Blocks.gold_ore, Blocks.diamond_ore, Blocks.diamond_block, Blocks.ice, Blocks.netherrack, Blocks.lapis_ore, Blocks.lapis_block, Blocks.redstone_ore, Blocks.lit_redstone_ore, Blocks.rail, Blocks.detector_rail, Blocks.golden_rail, Blocks.activator_rail, Blocks.grass, Blocks.dirt, Blocks.sand, Blocks.gravel, Blocks.snow_layer, Blocks.snow, Blocks.clay, Blocks.farmland, Blocks.soul_sand, Blocks.mycelium});
}

public int getItemEnchantability()
    {
        return this.toolMaterial.getEnchantability();
    }

    public boolean hitEntity(ItemStack par1ItemStack, EntityLivingBase par2EntityLivingBase, EntityLivingBase par3EntityLivingBase)
    {
        par1ItemStack.damageItem(2, par3EntityLivingBase);
        return true;
    }
}

 

 

And the code for one of the Paxels:

 

 

package f1repl4ce.devonmod.paxels;

import java.util.Set;

import f1repl4ce.devonmod.DevonModBase;
import f1repl4ce.fireplacecore.tools.ItemPaxel;
import net.minecraft.client.renderer.texture.IIconRegister;

public class IronPaxel extends ItemPaxel{

public IronPaxel(ToolMaterial par2ToolMaterial, Set field_150914_c) {
	super(par2ToolMaterial, field_150914_c);
        setMaxStackSize(1);
        setCreativeTab(DevonModBase.TabDevonMod);
        setUnlocalizedName("ironPaxel");
        setTextureName("devonmod:PaxelIron");
}
}

 

 

And the Crash Report:

 

 

[14:36:25] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[14:36:25] [main/INFO]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[14:36:25] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
[14:36:25] [main/INFO]: Forge Mod Loader version 7.2.213.1133 for Minecraft 1.7.2 loading
[14:36:25] [main/INFO]: Java is Java HotSpot(TM) Client VM, version 1.8.0_05, running on Windows 7:x86:6.1, installed at C:\Program Files\Java\jre8
[14:36:25] [main/INFO]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[14:36:25] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[14:36:25] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
[14:36:25] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[14:36:25] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[14:36:25] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[14:36:25] [main/ERROR]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[14:36:26] [main/ERROR]: The minecraft jar file:/C:/Users/Lance/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.2-10.12.2.1133/forgeSrc-1.7.2-10.12.2.1133.jar!/net/minecraft/client/ClientBrandRetriever.class appears to be corrupt! There has been CRITICAL TAMPERING WITH MINECRAFT, it is highly unlikely minecraft will work! STOP NOW, get a clean copy and try again!
[14:36:26] [main/ERROR]: FML has been ordered to ignore the invalid or missing minecraft certificate. This is very likely to cause a problem!
[14:36:26] [main/ERROR]: Technical information: ClientBrandRetriever was at jar:file:/C:/Users/Lance/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.2-10.12.2.1133/forgeSrc-1.7.2-10.12.2.1133.jar!/net/minecraft/client/ClientBrandRetriever.class, there were 0 certificates for it
[14:36:26] [main/ERROR]: FML appears to be missing any signature data. This is not a good thing
[14:36:26] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[14:36:26] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
[14:36:26] [main/INFO]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[14:36:28] [main/INFO]: Setting user: Player894
[14:36:29] [Client thread/INFO]: LWJGL Version: 2.9.0
[14:36:30] [Client thread/INFO]: Attempting early MinecraftForge initialization
[14:36:30] [Client thread/INFO]: MinecraftForge v10.12.2.1133 Initialized
[14:36:30] [Client thread/INFO]: Replaced 182 ore recipies
[14:36:30] [Client thread/INFO]: Completed early MinecraftForge initialization
[14:36:31] [Client thread/INFO]: Searching B:\Libraries\Forge\eclipse\mods for mods
[14:36:31] [Client thread/ERROR]: FML has detected a mod that is using a package name based on 'net.minecraft.src' : net.minecraft.src.FMLRenderAccessLibrary. This is generally a severe programming error.  There should be no mod code in the minecraft namespace. MOVE YOUR MOD! If you're in eclipse, select your source code and 'refactor' it into a new package. Go on. DO IT NOW!
[14:36:33] [Client thread/INFO]: Forge Mod Loader has identified 5 mods to load
[14:36:33] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Devon's Random Things, FMLFileResourcePack:Fireplace Core
[14:36:34] [Client thread/INFO]: Processing ObjectHolder annotations
[14:36:34] [Client thread/INFO]: Found 341 ObjectHolder annotations
[14:36:34] [Client thread/INFO]: Configured a dormant chunk cache size of 0
[14:36:34] [Client thread/INFO]: Applying holder lookups
[14:36:34] [Client thread/INFO]: Holder lookups applied

Starting up SoundSystem...
Initializing LWJGL OpenAL
    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
OpenAL initialized.

[14:36:34] [sound Library Loader/INFO]: Sound engine started
[14:36:35] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
[14:36:35] [Client thread/INFO]: Created: 256x256 textures/items-atlas
[14:36:35] [Client thread/INFO]: Forge Mod Loader has successfully loaded 5 mods
[14:36:35] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Devon's Random Things, FMLFileResourcePack:Fireplace Core
[14:36:35] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
[14:36:35] [Client thread/INFO]: Created: 256x256 textures/items-atlas

SoundSystem shutting down...
    Author: Paul Lamb, www.paulscode.com


Starting up SoundSystem...
Initializing LWJGL OpenAL
    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
OpenAL initialized.

[14:36:36] [sound Library Loader/INFO]: Sound engine started
[14:36:37] [MCO Availability Checker #1/ERROR]: Couldn't connect to Realms
[14:36:57] [server thread/INFO]: Starting integrated minecraft server version 1.7.2
[14:36:57] [server thread/INFO]: Generating keypair
[14:36:58] [server thread/INFO]: Injecting existing block and item data into this server instance
[14:36:58] [server thread/INFO]: Applying holder lookups
[14:36:58] [server thread/INFO]: Holder lookups applied
[14:36:58] [server thread/INFO]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@e9f6fc)
[14:36:58] [server thread/INFO]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@e9f6fc)
[14:36:58] [server thread/INFO]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@e9f6fc)
[14:36:58] [server thread/INFO]: Preparing start region for level 0
[14:36:59] [Netty Client IO #0/INFO]: Server protocol version 1
[14:36:59] [Netty IO #1/INFO]: Client protocol version 1
[14:36:59] [Netty IO #1/INFO]: Client attempting to join with 5 mods : [email protected],[email protected],[email protected],[email protected],[email protected]
[14:36:59] [Netty IO #1/INFO]: Attempting connection with missing mods [] at CLIENT
[14:36:59] [Netty Client IO #0/INFO]: Attempting connection with missing mods [] at SERVER
[14:36:59] [server thread/INFO]: [server thread] Server side modded connection established
[14:36:59] [Client thread/INFO]: [Client thread] Client side modded connection established
[14:36:59] [server thread/INFO]: Player894[local:E:3907cc47] logged in with entity id 1021 at (589.3779650518893, 5.0, -379.6119641523467)
[14:36:59] [server thread/INFO]: Player894 joined the game
[14:37:04] [server thread/ERROR]: Encountered an unexpected exception
net.minecraft.util.ReportedException: Ticking memory connection
at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:198) ~[NetworkSystem.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:721) ~[MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:608) ~[MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) ~[integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:482) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:747) [MinecraftServer$2.class:?]
Caused by: java.lang.NullPointerException
at net.minecraft.item.ItemTool.func_150893_a(ItemTool.java:51) ~[itemTool.class:?]
at net.minecraft.item.Item.getDigSpeed(Item.java:939) ~[item.class:?]
at net.minecraft.item.ItemTool.getDigSpeed(ItemTool.java:151) ~[itemTool.class:?]
at net.minecraft.entity.player.EntityPlayer.getBreakSpeed(EntityPlayer.java:929) ~[EntityPlayer.class:?]
at net.minecraftforge.common.ForgeHooks.blockStrength(ForgeHooks.java:128) ~[ForgeHooks.class:?]
at net.minecraft.block.Block.getPlayerRelativeBlockHardness(Block.java:790) ~[block.class:?]
at net.minecraft.server.management.ItemInWorldManager.onBlockClicked(ItemInWorldManager.java:189) ~[itemInWorldManager.class:?]
at net.minecraft.network.NetHandlerPlayServer.processPlayerDigging(NetHandlerPlayServer.java:520) ~[NetHandlerPlayServer.class:?]
at net.minecraft.network.play.client.C07PacketPlayerDigging.processPacket(C07PacketPlayerDigging.java:61) ~[C07PacketPlayerDigging.class:?]
at net.minecraft.network.play.client.C07PacketPlayerDigging.processPacket(C07PacketPlayerDigging.java:94) ~[C07PacketPlayerDigging.class:?]
at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:232) ~[NetworkManager.class:?]
at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:182) ~[NetworkSystem.class:?]
... 5 more
[14:37:04] [server thread/ERROR]: This crash report has been saved to: B:\Libraries\Forge\eclipse\.\crash-reports\crash-2014-06-27_14.37.04-server.txt
[14:37:04] [server thread/INFO]: Stopping server
[14:37:04] [server thread/INFO]: Saving players
[14:37:04] [server thread/INFO]: Saving worlds
[14:37:04] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[14:37:04] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[14:37:04] [server thread/INFO]: Saving chunks for level 'New World'/The End
[14:37:04] [server thread/INFO]: Unloading dimension 0
[14:37:04] [server thread/INFO]: Unloading dimension -1
[14:37:04] [server thread/INFO]: Unloading dimension 1
[14:37:04] [server thread/INFO]: Applying holder lookups
[14:37:04] [server thread/INFO]: Holder lookups applied
[14:37:04] [server thread/INFO]: The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded.
[14:37:04] [Client thread/FATAL]: Unreported exception thrown!
java.lang.NullPointerException
at net.minecraft.item.ItemTool.func_150893_a(ItemTool.java:51) ~[itemTool.class:?]
at net.minecraft.item.Item.getDigSpeed(Item.java:939) ~[item.class:?]
at net.minecraft.item.ItemTool.getDigSpeed(ItemTool.java:151) ~[itemTool.class:?]
at net.minecraft.entity.player.EntityPlayer.getBreakSpeed(EntityPlayer.java:929) ~[EntityPlayer.class:?]
at net.minecraftforge.common.ForgeHooks.blockStrength(ForgeHooks.java:128) ~[ForgeHooks.class:?]
at net.minecraft.block.Block.getPlayerRelativeBlockHardness(Block.java:790) ~[block.class:?]
at net.minecraft.client.multiplayer.PlayerControllerMP.clickBlock(PlayerControllerMP.java:216) ~[PlayerControllerMP.class:?]
at net.minecraft.client.Minecraft.func_147116_af(Minecraft.java:1460) ~[Minecraft.class:?]
at net.minecraft.client.Minecraft.runTick(Minecraft.java:2006) ~[Minecraft.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:996) ~[Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:912) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:112) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_05]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_05]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_05]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_05]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]
---- Minecraft Crash Report ----
// I blame Dinnerbone.

Time: 6/27/14 2:37 PM
Description: Unexpected error

java.lang.NullPointerException: Unexpected error
at net.minecraft.item.ItemTool.func_150893_a(ItemTool.java:51)
at net.minecraft.item.Item.getDigSpeed(Item.java:939)
at net.minecraft.item.ItemTool.getDigSpeed(ItemTool.java:151)
at net.minecraft.entity.player.EntityPlayer.getBreakSpeed(EntityPlayer.java:929)
at net.minecraftforge.common.ForgeHooks.blockStrength(ForgeHooks.java:128)
at net.minecraft.block.Block.getPlayerRelativeBlockHardness(Block.java:790)
at net.minecraft.client.multiplayer.PlayerControllerMP.clickBlock(PlayerControllerMP.java:216)
at net.minecraft.client.Minecraft.func_147116_af(Minecraft.java:1460)
at net.minecraft.client.Minecraft.runTick(Minecraft.java:2006)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:996)
at net.minecraft.client.Minecraft.run(Minecraft.java:912)
at net.minecraft.client.main.Main.main(Main.java:112)
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:134)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)


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

-- Head --
Stacktrace:
at net.minecraft.item.ItemTool.func_150893_a(ItemTool.java:51)
at net.minecraft.item.Item.getDigSpeed(Item.java:939)
at net.minecraft.item.ItemTool.getDigSpeed(ItemTool.java:151)
at net.minecraft.entity.player.EntityPlayer.getBreakSpeed(EntityPlayer.java:929)
at net.minecraftforge.common.ForgeHooks.blockStrength(ForgeHooks.java:128)
at net.minecraft.block.Block.getPlayerRelativeBlockHardness(Block.java:790)
at net.minecraft.client.multiplayer.PlayerControllerMP.clickBlock(PlayerControllerMP.java:216)
at net.minecraft.client.Minecraft.func_147116_af(Minecraft.java:1460)

-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityClientPlayerMP['Player894'/1021, l='MpServer', x=589.38, y=6.62, z=-379.61]]
Chunk stats: MultiplayerChunkCache: 225, 225
Level seed: 0
Level generator: ID 01 - flat, ver 0. Features enabled: false
Level generator options: 
Level spawn location: World: (661,4,-255), Chunk: (at 5,0,1 in 41,-16; contains blocks 656,0,-256 to 671,255,-241), Region: (1,-1; contains chunks 32,-32 to 63,-1, blocks 512,0,-512 to 1023,255,-1)
Level time: 8466 game time, 8466 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: survival (ID 0). Hardcore: false. Cheats: false
Forced entities: 260 total; [EntityCow['Cow'/0, l='MpServer', x=521.97, y=4.00, z=-398.88], EntityCow['Cow'/7, l='MpServer', x=534.44, y=4.00, z=-380.31], EntityCow['Cow'/8, l='MpServer', x=538.59, y=4.00, z=-379.81], EntityCow['Cow'/9, l='MpServer', x=535.63, y=4.00, z=-379.24], EntityCow['Cow'/10, l='MpServer', x=533.15, y=4.00, z=-374.57], EntityChicken['Chicken'/11, l='MpServer', x=543.53, y=4.00, z=-382.56], EntityChicken['Chicken'/12, l='MpServer', x=538.28, y=4.00, z=-375.28], EntityCow['Cow'/29, l='MpServer', x=552.81, y=4.00, z=-386.78], EntityChicken['Chicken'/30, l='MpServer', x=552.56, y=4.00, z=-389.44], EntityCow['Cow'/31, l='MpServer', x=550.16, y=4.00, z=-374.81], EntityChicken['Chicken'/32, l='MpServer', x=553.28, y=4.00, z=-383.66], EntityItem['item.tile.dirt.default'/37, l='MpServer', x=572.19, y=1.13, z=-421.88], EntityItem['item.tile.dirt.default'/38, l='MpServer', x=572.66, y=1.13, z=-426.78], EntityItem['item.tile.dirt.default'/39, l='MpServer', x=573.13, y=1.13, z=-427.84], EntityItem['item.tile.dirt.default'/40, l='MpServer', x=575.97, y=1.13, z=-427.31], EntityItem['item.tile.dirt.default'/41, l='MpServer', x=569.13, y=1.13, z=-405.88], EntityCow['Cow'/42, l='MpServer', x=565.84, y=4.00, z=-386.13], EntityItem['item.tile.dirt.default'/43, l='MpServer', x=566.16, y=1.13, z=-374.38], EntityItem['item.tile.dirt.default'/44, l='MpServer', x=566.19, y=1.13, z=-378.75], EntityItem['item.tile.dirt.default'/45, l='MpServer', x=566.13, y=2.13, z=-383.88], EntityItem['item.tile.dirt.default'/46, l='MpServer', x=572.16, y=1.13, z=-341.41], EntityItem['item.tile.dirt.default'/47, l='MpServer', x=573.75, y=1.13, z=-340.19], EntityItem['item.tile.dirt.default'/48, l='MpServer', x=575.31, y=2.13, z=-339.72], EntityItem['item.tile.dirt.default'/49, l='MpServer', x=574.19, y=1.13, z=-339.13], EntityItem['item.tile.dirt.default'/50, l='MpServer', x=566.56, y=2.13, z=-327.88], EntityItem['item.tile.dirt.default'/51, l='MpServer', x=565.84, y=2.13, z=-320.38], EntityItem['item.tile.dirt.default'/52, l='MpServer', x=566.09, y=1.13, z=-326.88], EntityItem['item.tile.dirt.default'/53, l='MpServer', x=567.28, y=1.13, z=-321.41], EntityItem['item.tile.dirt.default'/54, l='MpServer', x=571.28, y=3.13, z=-322.13], EntityItem['item.tile.dirt.default'/55, l='MpServer', x=565.03, y=1.13, z=-322.91], EntityItem['item.tile.dirt.default'/56, l='MpServer', x=568.56, y=2.13, z=-327.78], EntityItem['item.tile.dirt.default'/57, l='MpServer', x=568.66, y=1.13, z=-323.97], EntityItem['item.tile.dirt.default'/58, l='MpServer', x=568.88, y=1.13, z=-320.13], EntityItem['item.tile.dirt.default'/59, l='MpServer', x=565.47, y=1.13, z=-321.72], EntityClientPlayerMP['Player894'/1021, l='MpServer', x=589.38, y=6.62, z=-379.61], EntityItem['item.tile.dirt.default'/60, l='MpServer', x=566.25, y=1.13, z=-323.09], EntityItem['item.tile.dirt.default'/61, l='MpServer', x=565.28, y=2.13, z=-327.16], EntityItem['item.tile.dirt.default'/62, l='MpServer', x=565.88, y=1.13, z=-324.22], EntityItem['item.tile.dirt.default'/63, l='MpServer', x=565.28, y=3.13, z=-328.53], EntityItem['item.tile.dirt.default'/64, l='MpServer', x=563.47, y=2.13, z=-325.69], EntityItem['item.tile.dirt.default'/65, l='MpServer', x=569.47, y=3.13, z=-328.88], EntityItem['item.tile.dirt.default'/66, l='MpServer', x=563.56, y=2.13, z=-324.13], EntityItem['item.tile.dirt.default'/67, l='MpServer', x=570.78, y=1.13, z=-323.16], EntityItem['item.tile.dirt.default'/68, l='MpServer', x=567.59, y=1.13, z=-326.91], EntityItem['item.tile.dirt.default'/69, l='MpServer', x=563.53, y=3.13, z=-322.47], EntityItem['item.tile.dirt.default'/70, l='MpServer', x=569.66, y=1.13, z=-325.81], EntityItem['item.tile.dirt.default'/71, l='MpServer', x=566.78, y=2.13, z=-320.56], EntityItem['item.tile.dirt.default'/583, l='MpServer', x=642.88, y=3.13, z=-342.91], EntityItem['item.tile.dirt.default'/72, l='MpServer', x=566.88, y=1.13, z=-324.44], EntityItem['item.tile.dirt.default'/584, l='MpServer', x=642.56, y=3.13, z=-340.03], EntityItem['item.tile.dirt.default'/585, l='MpServer', x=640.19, y=1.13, z=-344.81], EntityItem['item.tile.dirt.default'/73, l='MpServer', x=566.88, y=3.13, z=-319.31], EntityItem['item.tile.dirt.default'/586, l='MpServer', x=640.38, y=1.13, z=-341.13], EntityItem['item.tile.dirt.default'/587, l='MpServer', x=641.81, y=3.13, z=-321.56], EntityItem['item.tile.dirt.default'/588, l='MpServer', x=641.88, y=1.13, z=-321.34], EntityItem['item.tile.dirt.default'/589, l='MpServer', x=640.69, y=1.13, z=-322.75], EntityItem['item.tile.dirt.default'/590, l='MpServer', x=640.31, y=1.13, z=-320.03], EntityPig['Pig'/591, l='MpServer', x=641.03, y=4.00, z=-334.13], EntityItem['item.tile.dirt.default'/596, l='MpServer', x=641.88, y=1.13, z=-317.31], EntityItem['item.tile.dirt.default'/597, l='MpServer', x=641.44, y=2.13, z=-318.31], EntityItem['item.tile.dirt.default'/111, l='MpServer', x=577.41, y=1.13, z=-429.56], EntityItem['item.tile.dirt.default'/112, l='MpServer', x=577.88, y=2.13, z=-430.88], EntityItem['item.tile.dirt.default'/113, l='MpServer', x=578.41, y=1.13, z=-428.59], EntityItem['item.tile.dirt.default'/114, l='MpServer', x=577.19, y=1.13, z=-427.47], EntityItem['item.tile.dirt.default'/115, l='MpServer', x=585.13, y=1.13, z=-425.63], EntityItem['item.tile.dirt.default'/116, l='MpServer', x=579.31, y=2.13, z=-431.88], EntityItem['item.tile.dirt.default'/117, l='MpServer', x=582.88, y=1.13, z=-428.88], EntityItem['item.tile.dirt.default'/118, l='MpServer', x=586.88, y=2.13, z=-422.13], EntityItem['item.tile.dirt.default'/119, l='MpServer', x=576.13, y=1.13, z=-429.88], EntityItem['item.tile.dirt.default'/120, l='MpServer', x=582.38, y=1.13, z=-426.84], EntityItem['item.tile.dirt.default'/121, l='MpServer', x=582.09, y=1.13, z=-429.88], EntityItem['item.tile.dirt.default'/122, l='MpServer', x=578.75, y=1.13, z=-427.56], EntityItem['item.tile.dirt.default'/123, l='MpServer', x=580.69, y=1.13, z=-427.19], EntityItem['item.tile.dirt.default'/124, l='MpServer', x=576.13, y=1.13, z=-428.56], EntityItem['item.tile.dirt.default'/125, l='MpServer', x=580.22, y=1.13, z=-428.88], EntityItem['item.tile.dirt.default'/126, l='MpServer', x=581.88, y=2.13, z=-384.88], EntityItem['item.item.slimeball'/127, l='MpServer', x=583.66, y=4.13, z=-393.81], EntityItem['item.tile.dirt.default'/128, l='MpServer', x=582.63, y=1.13, z=-396.34], EntityItem['item.tile.dirt.default'/129, l='MpServer', x=581.97, y=1.13, z=-398.13], EntityItem['item.item.slimeball'/130, l='MpServer', x=584.19, y=4.13, z=-397.31], EntityItem['item.item.slimeball'/131, l='MpServer', x=580.75, y=1.13, z=-390.28], EntityItem['item.tile.dirt.default'/132, l='MpServer', x=578.97, y=2.13, z=-372.56], EntityItem['item.tile.dirt.default'/133, l='MpServer', x=580.19, y=3.13, z=-379.38], EntityItem['item.tile.dirt.default'/134, l='MpServer', x=580.13, y=4.13, z=-382.81], EntityItem['item.tile.dirt.default'/135, l='MpServer', x=578.88, y=1.13, z=-364.44], EntityItem['item.item.slimeball'/136, l='MpServer', x=581.16, y=1.13, z=-355.03], EntityItem['item.tile.dirt.default'/137, l='MpServer', x=577.22, y=3.13, z=-339.13], EntityItem['item.tile.dirt.default'/138, l='MpServer', x=589.53, y=1.13, z=-336.13], EntityItem['item.tile.dirt.default'/139, l='MpServer', x=588.69, y=1.13, z=-337.81], EntityItem['item.tile.dirt.default'/140, l='MpServer', x=590.91, y=1.13, z=-338.31], EntityItem['item.tile.dirt.default'/141, l='MpServer', x=584.09, y=1.13, z=-322.66], EntityItem['item.tile.dirt.default'/142, l='MpServer', x=583.63, y=2.13, z=-324.88], EntityItem['item.tile.dirt.default'/143, l='MpServer', x=581.56, y=1.13, z=-321.34], EntityItem['item.tile.dirt.default'/144, l='MpServer', x=587.84, y=2.13, z=-320.88], EntityItem['item.tile.dirt.default'/145, l='MpServer', x=587.88, y=3.13, z=-327.88], EntityItem['item.tile.dirt.default'/146, l='MpServer', x=587.88, y=3.13, z=-323.19], EntityItem['item.tile.dirt.default'/147, l='MpServer', x=578.88, y=3.13, z=-323.81], EntityItem['item.tile.dirt.default'/148, l='MpServer', x=586.19, y=1.13, z=-320.88], EntityItem['item.tile.dirt.default'/149, l='MpServer', x=579.78, y=2.13, z=-321.13], EntityItem['item.tile.dirt.default'/150, l='MpServer', x=580.78, y=2.13, z=-323.56], EntityItem['item.tile.dirt.default'/151, l='MpServer', x=584.31, y=2.13, z=-324.09], EntityItem['item.tile.dirt.default'/152, l='MpServer', x=581.88, y=1.13, z=-323.66], EntityItem['item.tile.dirt.default'/153, l='MpServer', x=584.69, y=1.13, z=-320.69], EntityItem['item.tile.dirt.default'/154, l='MpServer', x=580.63, y=1.13, z=-320.88], EntityItem['item.tile.dirt.default'/155, l='MpServer', x=586.91, y=2.13, z=-320.38], EntityItem['item.tile.dirt.default'/156, l='MpServer', x=582.06, y=1.13, z=-320.06], EntityItem['item.tile.dirt.default'/157, l='MpServer', x=586.88, y=3.13, z=-330.63], EntityItem['item.tile.dirt.default'/182, l='MpServer', x=583.81, y=1.13, z=-316.75], EntityItem['item.tile.dirt.default'/184, l='MpServer', x=582.56, y=1.13, z=-318.47], EntityItem['item.tile.dirt.default'/192, l='MpServer', x=579.38, y=2.13, z=-317.88], EntityItem['item.tile.dirt.default'/197, l='MpServer', x=584.66, y=1.13, z=-317.25], EntityItem['item.tile.dirt.default'/198, l='MpServer', x=583.59, y=1.13, z=-318.38], EntityItem['item.tile.dirt.default'/199, l='MpServer', x=578.09, y=3.13, z=-317.63], EntityItem['item.tile.dirt.default'/200, l='MpServer', x=581.03, y=2.13, z=-317.56], EntityItem['item.tile.dirt.default'/201, l='MpServer', x=580.13, y=2.13, z=-318.66], EntityItem['item.tile.dirt.default'/202, l='MpServer', x=578.41, y=3.13, z=-319.13], EntityItem['item.tile.dirt.default'/203, l='MpServer', x=590.88, y=3.13, z=-316.88], EntityItem['item.tile.dirt.default'/204, l='MpServer', x=581.25, y=1.13, z=-316.88], EntityItem['item.tile.dirt.default'/205, l='MpServer', x=586.81, y=2.13, z=-317.72], EntityItem['item.tile.dirt.default'/206, l='MpServer', x=583.56, y=1.13, z=-319.66], EntityItem['item.tile.dirt.default'/207, l='MpServer', x=581.25, y=1.13, z=-319.78], EntityItem['item.tile.dirt.default'/208, l='MpServer', x=584.81, y=1.13, z=-319.81], EntityChicken['Chicken'/221, l='MpServer', x=605.13, y=4.00, z=-345.47], EntityItem['item.tile.dirt.default'/222, l='MpServer', x=603.88, y=2.13, z=-342.13], EntityItem['item.tile.dirt.default'/223, l='MpServer', x=605.38, y=1.13, z=-339.84], EntityItem['item.tile.dirt.default'/224, l='MpServer', x=599.72, y=3.13, z=-345.88], EntityItem['item.tile.dirt.default'/225, l='MpServer', x=597.78, y=2.13, z=-346.66], EntityItem['item.tile.dirt.default'/226, l='MpServer', x=598.66, y=1.13, z=-343.88], EntityItem['item.tile.dirt.default'/227, l='MpServer', x=599.88, y=1.13, z=-343.03], EntityItem['item.tile.dirt.default'/228, l='MpServer', x=594.69, y=1.13, z=-348.22], EntityItem['item.tile.dirt.default'/229, l='MpServer', x=592.06, y=3.13, z=-350.88], EntityItem['item.tile.dirt.default'/230, l='MpServer', x=593.31, y=1.13, z=-348.59], EntityItem['item.tile.dirt.default'/231, l='MpServer', x=594.91, y=2.13, z=-325.59], EntityItem['item.tile.dirt.default'/232, l='MpServer', x=594.13, y=2.13, z=-325.81], EntityItem['item.tile.dirt.default'/233, l='MpServer', x=594.97, y=1.13, z=-329.69], EntityItem['item.tile.dirt.default'/234, l='MpServer', x=593.84, y=2.13, z=-330.25], EntityItem['item.tile.dirt.default'/235, l='MpServer', x=600.88, y=1.13, z=-328.34], EntityItem['item.tile.dirt.default'/236, l='MpServer', x=598.94, y=1.13, z=-326.34], EntityItem['item.tile.dirt.default'/237, l='MpServer', x=593.56, y=2.13, z=-331.44], EntityItem['item.tile.dirt.default'/238, l='MpServer', x=593.13, y=3.13, z=-333.44], EntityItem['item.tile.dirt.default'/239, l='MpServer', x=596.06, y=1.13, z=-327.94], EntityItem['item.tile.dirt.default'/240, l='MpServer', x=594.13, y=1.13, z=-327.94], EntityItem['item.tile.dirt.default'/241, l='MpServer', x=601.81, y=3.13, z=-327.09], EntityItem['item.tile.dirt.default'/242, l='MpServer', x=595.63, y=2.13, z=-327.03], EntityItem['item.tile.dirt.default'/243, l='MpServer', x=600.88, y=3.13, z=-325.59], EntityItem['item.tile.dirt.default'/244, l='MpServer', x=601.06, y=3.13, z=-327.34], EntityItem['item.tile.dirt.default'/245, l='MpServer', x=592.81, y=3.13, z=-331.22], EntityItem['item.tile.dirt.default'/246, l='MpServer', x=599.66, y=1.13, z=-329.38], EntityItem['item.tile.dirt.default'/247, l='MpServer', x=593.31, y=3.13, z=-334.72], EntityPig['Pig'/248, l='MpServer', x=599.94, y=3.00, z=-324.91], EntityItem['item.tile.dirt.default'/249, l='MpServer', x=600.88, y=1.13, z=-330.09], EntityItem['item.tile.dirt.default'/250, l='MpServer', x=605.69, y=1.13, z=-335.97], EntityItem['item.tile.dirt.default'/251, l='MpServer', x=605.19, y=1.13, z=-333.97], EntityItem['item.tile.dirt.default'/252, l='MpServer', x=604.88, y=1.13, z=-331.41], EntityItem['item.tile.dirt.default'/253, l='MpServer', x=606.53, y=1.13, z=-333.19], EntityItem['item.tile.dirt.default'/254, l='MpServer', x=607.84, y=1.13, z=-332.13], EntityItem['item.tile.dirt.default'/255, l='MpServer', x=603.19, y=1.13, z=-330.13], EntityItem['item.tile.dirt.default'/256, l='MpServer', x=604.16, y=1.13, z=-331.13], EntityItem['item.tile.dirt.default'/260, l='MpServer', x=596.19, y=1.13, z=-316.34], EntityItem['item.tile.dirt.default'/262, l='MpServer', x=593.47, y=3.13, z=-316.81], EntityItem['item.tile.dirt.default'/263, l='MpServer', x=596.13, y=1.13, z=-317.69], EntityItem['item.tile.dirt.default'/264, l='MpServer', x=595.53, y=2.13, z=-316.97], EntityItem['item.tile.dirt.default'/267, l='MpServer', x=600.72, y=1.13, z=-319.75], EntityItem['item.tile.dirt.default'/270, l='MpServer', x=597.84, y=1.13, z=-316.94], EntityItem['item.tile.dirt.default'/273, l='MpServer', x=596.13, y=1.13, z=-318.88], EntityPig['Pig'/302, l='MpServer', x=621.14, y=4.00, z=-344.08], EntityHorse['Horse'/303, l='MpServer', x=614.09, y=4.00, z=-331.00], EntityItem['item.item.feather'/304, l='MpServer', x=617.63, y=1.13, z=-328.22], EntityItem['item.item.chickenRaw'/305, l='MpServer', x=617.13, y=1.13, z=-327.28], EntityItem['item.item.chickenRaw'/306, l='MpServer', x=615.09, y=4.13, z=-331.09], EntityItem['item.tile.dirt.default'/307, l='MpServer', x=616.13, y=3.13, z=-331.88], EntityItem['item.tile.dirt.default'/308, l='MpServer', x=617.78, y=1.13, z=-328.44], EntityItem['item.tile.dirt.default'/309, l='MpServer', x=619.06, y=1.13, z=-330.03], EntityItem['item.tile.dirt.default'/310, l='MpServer', x=622.56, y=1.13, z=-326.72], EntityItem['item.tile.dirt.default'/311, l='MpServer', x=618.34, y=1.13, z=-325.19], EntityItem['item.tile.dirt.default'/312, l='MpServer', x=621.19, y=3.13, z=-331.75], EntityItem['item.tile.dirt.default'/313, l='MpServer', x=620.38, y=3.13, z=-332.88], EntityItem['item.tile.dirt.default'/314, l='MpServer', x=623.16, y=2.13, z=-327.88], EntityItem['item.tile.dirt.default'/315, l='MpServer', x=623.56, y=2.13, z=-328.69], EntityItem['item.tile.dirt.default'/316, l='MpServer', x=613.97, y=3.13, z=-327.84], EntityItem['item.tile.dirt.default'/317, l='MpServer', x=614.97, y=3.13, z=-327.91], EntityItem['item.tile.dirt.default'/318, l='MpServer', x=619.19, y=1.13, z=-326.16], EntityItem['item.tile.dirt.default'/319, l='MpServer', x=620.66, y=1.13, z=-326.44], EntityItem['item.tile.dirt.default'/320, l='MpServer', x=619.53, y=1.13, z=-324.97], EntityItem['item.tile.dirt.default'/321, l='MpServer', x=622.88, y=1.13, z=-331.84], EntityItem['item.tile.dirt.default'/322, l='MpServer', x=623.41, y=1.13, z=-329.22], EntityItem['item.tile.dirt.default'/323, l='MpServer', x=622.38, y=2.13, z=-329.66], EntityItem['item.tile.dirt.default'/324, l='MpServer', x=623.13, y=2.13, z=-333.03], EntityItem['item.tile.dirt.default'/325, l='MpServer', x=623.13, y=2.13, z=-335.66], EntityItem['item.tile.dirt.default'/326, l='MpServer', x=623.72, y=2.13, z=-327.13], EntityItem['item.tile.dirt.default'/327, l='MpServer', x=617.25, y=1.13, z=-323.41], EntityItem['item.tile.dirt.default'/328, l='MpServer', x=613.75, y=1.13, z=-322.28], EntityItem['item.tile.dirt.default'/329, l='MpServer', x=619.84, y=1.13, z=-323.44], EntityItem['item.tile.dirt.default'/330, l='MpServer', x=621.88, y=1.13, z=-323.88], EntityItem['item.tile.dirt.default'/331, l='MpServer', x=613.16, y=1.13, z=-321.31], EntityItem['item.tile.dirt.default'/332, l='MpServer', x=611.44, y=1.13, z=-320.19], EntityItem['item.tile.dirt.default'/346, l='MpServer', x=608.84, y=2.13, z=-319.84], EntityItem['item.tile.dirt.default'/349, l='MpServer', x=620.22, y=1.13, z=-318.75], EntityItem['item.tile.dirt.default'/350, l='MpServer', x=621.88, y=1.13, z=-317.13], EntityItem['item.tile.dirt.default'/351, l='MpServer', x=609.09, y=2.13, z=-317.44], EntityItem['item.tile.dirt.default'/354, l='MpServer', x=622.88, y=1.13, z=-319.59], EntityItem['item.item.leather'/435, l='MpServer', x=630.75, y=4.13, z=-345.19], EntityItem['item.tile.dirt.default'/436, l='MpServer', x=639.25, y=2.13, z=-346.66], EntityItem['item.tile.dirt.default'/437, l='MpServer', x=638.47, y=1.13, z=-345.09], EntityItem['item.tile.dirt.default'/438, l='MpServer', x=639.22, y=3.13, z=-348.53], EntityItem['item.tile.dirt.default'/439, l='MpServer', x=632.88, y=3.13, z=-340.53], EntityItem['item.tile.dirt.default'/440, l='MpServer', x=633.13, y=2.13, z=-342.81], EntityItem['item.tile.dirt.default'/441, l='MpServer', x=632.63, y=3.13, z=-345.31], EntityItem['item.tile.dirt.default'/442, l='MpServer', x=632.47, y=3.13, z=-346.53], EntityItem['item.tile.dirt.default'/443, l='MpServer', x=638.06, y=2.13, z=-347.78], EntityItem['item.tile.dirt.default'/444, l='MpServer', x=632.38, y=3.13, z=-341.31], EntityItem['item.tile.dirt.default'/445, l='MpServer', x=635.56, y=1.13, z=-345.41], EntityItem['item.tile.dirt.default'/446, l='MpServer', x=634.41, y=3.13, z=-348.44], EntityItem['item.tile.dirt.default'/447, l='MpServer', x=634.81, y=2.13, z=-341.63], EntityItem['item.tile.dirt.default'/448, l='MpServer', x=634.47, y=2.13, z=-340.81], EntityItem['item.tile.dirt.default'/449, l='MpServer', x=635.09, y=1.13, z=-343.88], EntityItem['item.tile.dirt.default'/450, l='MpServer', x=635.16, y=1.13, z=-346.44], EntityItem['item.tile.dirt.default'/451, l='MpServer', x=637.31, y=2.13, z=-340.69], EntityItem['item.tile.dirt.default'/452, l='MpServer', x=637.88, y=1.13, z=-345.97], EntityItem['item.tile.dirt.default'/453, l='MpServer', x=637.72, y=3.13, z=-348.88], EntityItem['item.tile.dirt.default'/454, l='MpServer', x=637.13, y=1.13, z=-342.13], EntityItem['item.tile.dirt.default'/455, l='MpServer', x=637.66, y=1.13, z=-344.53], EntityItem['item.tile.dirt.default'/456, l='MpServer', x=636.81, y=1.13, z=-343.34], EntityItem['item.tile.dirt.default'/457, l='MpServer', x=634.81, y=2.13, z=-345.25], EntityItem['item.item.leather'/458, l='MpServer', x=629.88, y=2.13, z=-336.78], EntityItem['item.tile.dirt.default'/459, l='MpServer', x=625.03, y=4.13, z=-337.25], EntityItem['item.tile.dirt.default'/460, l='MpServer', x=631.78, y=2.13, z=-336.88], EntityItem['item.tile.dirt.default'/461, l='MpServer', x=634.44, y=1.13, z=-321.88], EntityItem['item.tile.dirt.default'/462, l='MpServer', x=639.22, y=1.13, z=-321.69], EntityItem['item.tile.dirt.default'/463, l='MpServer', x=638.13, y=1.13, z=-323.66], EntityItem['item.tile.dirt.default'/464, l='MpServer', x=639.03, y=1.13, z=-322.88], EntityItem['item.tile.dirt.default'/465, l='MpServer', x=636.22, y=1.13, z=-322.66], EntityItem['item.tile.dirt.default'/466, l='MpServer', x=635.13, y=1.13, z=-323.88], EntityItem['item.tile.dirt.default'/467, l='MpServer', x=633.81, y=1.13, z=-323.88], EntityItem['item.tile.dirt.default'/468, l='MpServer', x=632.81, y=1.13, z=-322.63], EntityItem['item.tile.dirt.default'/469, l='MpServer', x=627.22, y=1.13, z=-325.13], EntityItem['item.tile.dirt.default'/470, l='MpServer', x=628.03, y=1.13, z=-326.63], EntityItem['item.tile.dirt.default'/471, l='MpServer', x=633.88, y=1.13, z=-327.75], EntityItem['item.tile.dirt.default'/472, l='MpServer', x=626.44, y=1.13, z=-326.13], EntityItem['item.tile.dirt.default'/473, l='MpServer', x=633.88, y=3.13, z=-325.97], EntityItem['item.tile.dirt.default'/474, l='MpServer', x=633.88, y=1.13, z=-330.47], EntityItem['item.tile.dirt.default'/475, l='MpServer', x=626.25, y=1.13, z=-327.59], EntityItem['item.tile.dirt.default'/476, l='MpServer', x=632.88, y=1.13, z=-329.72], EntityItem['item.tile.dirt.default'/477, l='MpServer', x=631.47, y=1.13, z=-330.44], EntityItem['item.tile.dirt.default'/478, l='MpServer', x=625.81, y=1.13, z=-325.16], EntityItem['item.tile.dirt.default'/479, l='MpServer', x=631.19, y=1.13, z=-329.41], EntityItem['item.tile.dirt.default'/480, l='MpServer', x=629.19, y=1.13, z=-335.19], EntityItem['item.tile.dirt.default'/481, l='MpServer', x=632.03, y=3.13, z=-324.78], EntityItem['item.tile.dirt.default'/482, l='MpServer', x=624.16, y=1.13, z=-334.88], EntityItem['item.tile.dirt.default'/483, l='MpServer', x=624.81, y=1.13, z=-331.19], EntityItem['item.tile.dirt.default'/484, l='MpServer', x=625.66, y=1.13, z=-335.88], EntityItem['item.tile.dirt.default'/485, l='MpServer', x=629.97, y=1.13, z=-326.13], EntityItem['item.tile.dirt.default'/486, l='MpServer', x=634.81, y=3.13, z=-328.75], EntityItem['item.tile.dirt.default'/487, l='MpServer', x=634.88, y=3.13, z=-330.88], EntityItem['item.tile.dirt.default'/488, l='MpServer', x=632.69, y=1.13, z=-326.75], EntityItem['item.tile.dirt.default'/489, l='MpServer', x=624.34, y=1.13, z=-329.13], EntityItem['item.tile.dirt.default'/490, l='MpServer', x=624.16, y=1.13, z=-333.09], EntityItem['item.tile.dirt.default'/500, l='MpServer', x=638.13, y=1.13, z=-319.75], EntityItem['item.tile.dirt.default'/502, l='MpServer', x=636.75, y=1.13, z=-316.44], EntityItem['item.tile.dirt.default'/507, l='MpServer', x=639.97, y=1.13, z=-317.19]]
Retry entities: 0 total; []
Server brand: fml,forge
Server type: Integrated singleplayer server
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:412)
at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2523)
at net.minecraft.client.Minecraft.run(Minecraft.java:941)
at net.minecraft.client.main.Main.main(Main.java:112)
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:134)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

-- System Details --
Details:
Minecraft Version: 1.7.2
Operating System: Windows 7 (x86) version 6.1
Java Version: 1.8.0_05, Oracle Corporation
Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
Memory: 940895936 bytes (897 MB) / 1060372480 bytes (1011 MB) up to 1060372480 bytes (1011 MB)
JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
AABB Pool Size: 12450 (697200 bytes; 0 MB) allocated, 2 (112 bytes; 0 MB) used
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: MCP v9.03 FML v7.2.213.1133 Minecraft Forge 10.12.2.1133 5 mods loaded, 5 mods active
mcp{9.03} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
FML{7.2.213.1133} [Forge Mod Loader] (forgeSrc-1.7.2-10.12.2.1133.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Forge{10.12.2.1133} [Minecraft Forge] (forgeSrc-1.7.2-10.12.2.1133.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
fireplacecore{1.0.4} [Fireplace Core] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
devonmod{5.0.0} [Devon's Random Things] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Launched Version: 1.6
LWJGL: 2.9.0
OpenGL: GeForce GT 620/PCIe/SSE2 GL version 4.4.0, NVIDIA Corporation
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: 1533 (85848 bytes; 0 MB) allocated, 21 (1176 bytes; 0 MB) used
Anisotropic Filtering: Off (1)
#@!@# Game crashed! Crash report saved to: #@!@# B:\Libraries\Forge\eclipse\.\crash-reports\crash-2014-06-27_14.37.04-client.txt
AL lib: (EE) alc_cleanup: 1 device not closed
Java HotSpot(TM) Client VM warning: Using incremental CMS is deprecated and will likely be removed in a future release

 

 

If I helped please press the Thank You button.

 

Check out my mods at http://www.curse.com/users/The_Fireplace/projects

Posted

Main Mod File:

 

 

package f1repl4ce.devonmod;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.init.Blocks;
import net.minecraft.init.Items;
import net.minecraft.item.Item;
import net.minecraft.item.Item.ToolMaterial;
import net.minecraft.item.ItemArmor.ArmorMaterial;
import net.minecraft.item.ItemStack;
import net.minecraftforge.common.util.EnumHelper;
import net.minecraftforge.oredict.OreDictionary;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
import cpw.mods.fml.common.Mod.Instance;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import cpw.mods.fml.common.registry.GameRegistry;
import f1repl4ce.devonmod.armor.*;
import f1repl4ce.devonmod.blocks.*;
import f1repl4ce.devonmod.handlers.DevonModFuelHandler;
import f1repl4ce.devonmod.items.*;
import f1repl4ce.devonmod.paxels.*;
import f1repl4ce.devonmod.worldgen.WorldGeneratorDarkDirt;
import f1repl4ce.fireplacecore.tools.ItemPaxel;

@Mod(modid="devonmod", name="Devon's Random Things", version="5.0.0", acceptedMinecraftVersions = "1.7.2", dependencies = "required-after:fireplacecore@[1.0.2,)")
public class DevonModBase {
@Instance(value = "Devon's Random Things")
    public static DevonModBase instance;
//Creative Tab
public static CreativeTabs TabDevonMod = new DevonModCreativeTab(CreativeTabs.getNextID(), "Devon's Random Things");
//Armor Materials
    public static ArmorMaterial DirtArmorMaterial = EnumHelper.addArmorMaterial("DIRT", 10, new int[]{1, 3, 2, 1}, 25);
    public static ArmorMaterial eArmorIron = EnumHelper.addArmorMaterial("eIRON", 15, new int[] {2, 6, 5, 2}, 19);
    public static ArmorMaterial eArmorGold = EnumHelper.addArmorMaterial("eGOLD", 7, new int[]{2, 5, 3, 1}, 35);
    public static ArmorMaterial eArmorDiamond = EnumHelper.addArmorMaterial("EDIAMOND", 33, new int[]{3, 8, 6, 3}, 20);
    //Tool Materials
    public static ToolMaterial toolDirt = EnumHelper.addToolMaterial("DIRT", 1, 20, 2.0F, 0.1F, 60);
//Blocks
public static Block ChargedCoalBlock = new ChargedCoalBlock(Material.rock);
public static Block DarkDirt = new DarkDirt(Material.ground);
public static Block SlottedStone = new SlottedStone(Material.rock);
//Items
public static Item ChargedCoal = new ChargedCoal();
public static Item CoalGun = new CoalGun();
    public static Item GunBarrel = new GunBarrel();
    public static Item GunStock = new GunStock();
//Armor
public static Item DirtHelmet = new DirtArmor(DirtArmorMaterial, 1, 0).setCreativeTab(TabDevonMod).setUnlocalizedName("DirtHelmet").setTextureName("devonmod:DirtHelmet");
public static Item DirtChestplate = new DirtArmor(DirtArmorMaterial, 1, 1).setCreativeTab(TabDevonMod).setUnlocalizedName("DirtChestplate").setTextureName("devonmod:DirtChestplate");
public static Item DirtLeggings = new DirtArmor(DirtArmorMaterial, 1, 2).setCreativeTab(TabDevonMod).setUnlocalizedName("DirtLeggings").setTextureName("devonmod:DirtLeggings");
public static Item DirtBoots = new DirtArmor(DirtArmorMaterial, 1, 3).setCreativeTab(TabDevonMod).setUnlocalizedName("DirtBoots").setTextureName("devonmod:DirtBoots");
    public static Item eIronHelmet = new eIronArmor(eArmorIron, 1, 0, "eIRON").setUnlocalizedName("eIronHelmet").setCreativeTab(TabDevonMod).setTextureName("devonmod:e_iron_helmet");
    public static Item eIronChestplate = new eIronArmor(eArmorIron, 1, 1, "eIRON").setUnlocalizedName("eIronChestplate").setCreativeTab(TabDevonMod).setTextureName("devonmod:e_iron_chestplate");
    public static Item eIronLeggings = new eIronArmor(eArmorIron, 1, 2, "eIRON").setUnlocalizedName("eIronLeggings").setCreativeTab(TabDevonMod).setTextureName("devonmod:e_iron_leggings");
    public static Item eIronBoots = new eIronArmor(eArmorIron, 1, 3, "eIRON").setUnlocalizedName("eIronBoots").setCreativeTab(TabDevonMod).setTextureName("devonmod:e_iron_boots");
    public static Item eGoldHelmet = new eGoldArmor(eArmorGold, 4, 0, "eGOLD").setUnlocalizedName("eGoldHelmet").setCreativeTab(TabDevonMod).setTextureName("devonmod:e_gold_helmet");
    public static Item eGoldChestplate = new eGoldArmor(eArmorGold, 4, 1, "eGOLD").setUnlocalizedName("eGoldChestplate").setCreativeTab(TabDevonMod).setTextureName("devonmod:e_gold_chestplate");
    public static Item eGoldLeggings = new eGoldArmor(eArmorGold, 4, 2, "eGOLD").setUnlocalizedName("eGoldLeggings").setCreativeTab(TabDevonMod).setTextureName("devonmod:e_gold_leggings");
    public static Item eGoldBoots = new eGoldArmor(eArmorGold, 4, 3, "eGOLD").setUnlocalizedName("eGoldBoots").setCreativeTab(TabDevonMod).setTextureName("devonmod:e_gold_boots");
    public static Item eDiamondHelmet = new eDiamondArmor(eArmorDiamond, 3, 0, "eDIAMOND").setUnlocalizedName("eDiamondHelmet").setCreativeTab(TabDevonMod).setTextureName("devonmod:e_diamond_helmet");
    public static Item eDiamondChestplate = new eDiamondArmor(eArmorDiamond, 3, 1, "eDIAMOND").setUnlocalizedName("eDiamondChestplate").setCreativeTab(TabDevonMod).setTextureName("devonmod:e_diamond_chestplate");
    public static Item eDiamondLeggings = new eDiamondArmor(eArmorDiamond, 3, 2, "eDIAMOND").setUnlocalizedName("eDiamondLeggings").setCreativeTab(TabDevonMod).setTextureName("devonmod:e_diamond_leggings");
    public static Item eDiamondBoots = new eDiamondArmor(eArmorDiamond, 3, 3, "eDIAMOND").setUnlocalizedName("eDiamondBoots").setCreativeTab(TabDevonMod).setTextureName("devonmod:e_diamond_boots");
    //Equipment
    public static ItemPaxel dirtPaxel = new DirtPaxel(toolDirt, null);
    public static ItemPaxel woodPaxel = new WoodPaxel(ToolMaterial.WOOD, null);
    public static ItemPaxel stonePaxel = new StonePaxel(ToolMaterial.STONE, null);
    public static ItemPaxel ironPaxel = new IronPaxel(ToolMaterial.IRON, null);
    public static ItemPaxel goldPaxel = new GoldPaxel(ToolMaterial.GOLD, null);
    public static ItemPaxel diamondPaxel = new DiamondPaxel(ToolMaterial.EMERALD, null);
@EventHandler
    public void preInit(FMLPreInitializationEvent event) {
	//Block Registry
	GameRegistry.registerBlock(ChargedCoalBlock, "ChargedCoalBlock");
        GameRegistry.registerBlock(DarkDirt, "DarkDirt");
        GameRegistry.registerBlock(SlottedStone, "SlottedStone");
	//Item Registry
	GameRegistry.registerItem(ChargedCoal, "ChargedCoal");
	GameRegistry.registerItem(CoalGun, "CoalGun");
        GameRegistry.registerItem(GunBarrel, "DevonModGunBarrel");
        GameRegistry.registerItem(GunStock, "DevonModGunStock");
	//Armor Registry
	GameRegistry.registerItem(DirtHelmet, "DirtHelmet");
	GameRegistry.registerItem(DirtChestplate, "DirtChestplate");
	GameRegistry.registerItem(DirtLeggings, "DirtLeggings");
	GameRegistry.registerItem(DirtBoots, "DirtBoots");
        GameRegistry.registerItem(eIronHelmet, "eIronHelmet");
        GameRegistry.registerItem(eIronChestplate, "eIronChestplate");
        GameRegistry.registerItem(eIronLeggings, "eIronLeggings");
        GameRegistry.registerItem(eIronBoots, "eIronBoots");
        GameRegistry.registerItem(eGoldHelmet, "eGoldHelmet");
        GameRegistry.registerItem(eGoldChestplate, "eGoldChestplate");
        GameRegistry.registerItem(eGoldLeggings, "eGoldLeggings");
        GameRegistry.registerItem(eGoldBoots, "eGoldBoots");
        GameRegistry.registerItem(eDiamondHelmet, "eDiamondHelmet");
        GameRegistry.registerItem(eDiamondChestplate, "eDiamondChestplate");
        GameRegistry.registerItem(eDiamondLeggings, "eDiamondLeggings");
        GameRegistry.registerItem(eDiamondBoots, "eDiamondBoots");
        //Paxel Registry
        GameRegistry.registerItem(dirtPaxel, "dirtPaxel");
        GameRegistry.registerItem(woodPaxel, "woodPaxel");
        GameRegistry.registerItem(stonePaxel, "stonePaxel");
        GameRegistry.registerItem(ironPaxel, "ironPaxel");
        GameRegistry.registerItem(goldPaxel, "goldPaxel");
        GameRegistry.registerItem(diamondPaxel, "diamondPaxel");
	//Block ItemStacks
	ItemStack ChargedCoalBlockStack = new ItemStack(ChargedCoalBlock);
	ItemStack ChargedCoalBlockStack8 = new ItemStack(ChargedCoalBlock, ;
	ItemStack CoalBlockStack = new ItemStack(Blocks.coal_block);
	ItemStack RedstoneBlockStack = new ItemStack(Blocks.redstone_block);
      	ItemStack CoalBlockStack9 = new ItemStack(Blocks.coal_block, 9);
        ItemStack DirtStack = new ItemStack(Blocks.dirt);
    	ItemStack DirtStack9 = new ItemStack(Blocks.dirt, 9);
        ItemStack DarkDirtStack = new ItemStack(DarkDirt);
        ItemStack SlottedStoneStack4 = new ItemStack(SlottedStone, 4);
        ItemStack StoneSlabStack = new ItemStack(Blocks.stone_slab);
        ItemStack WoodStack = new ItemStack(Blocks.planks);
        ItemStack HayStack = new ItemStack(Blocks.hay_block);
        ItemStack TntStack = new ItemStack(Blocks.tnt);
        ItemStack NetherBrickStack = new ItemStack(Blocks.nether_brick);
        ItemStack BricksStack = new ItemStack(Blocks.brick_block);
        ItemStack QuartzBlockStack = new ItemStack(Blocks.quartz_block);
        ItemStack IronBlockStack = new ItemStack(Blocks.iron_block);
        ItemStack EndStoneStack = new ItemStack(Blocks.end_stone);
        ItemStack SoulSandStack = new ItemStack(Blocks.soul_sand);
        ItemStack IronOreStack = new ItemStack(Blocks.iron_ore);
        ItemStack NetherQuartzOreStack = new ItemStack(Blocks.quartz_ore);
        ItemStack FenceStack = new ItemStack(Blocks.fence);
        ItemStack nbFenceStack = new ItemStack(Blocks.nether_brick_fence);
        ItemStack BrickStairsStack = new ItemStack(Blocks.brick_stairs);
        ItemStack nbStairsStack = new ItemStack(Blocks.nether_brick_stairs);
        ItemStack ObsidianStack = new ItemStack(Blocks.obsidian);
        ItemStack NetherrackStack = new ItemStack(Blocks.netherrack);
        ItemStack GlowstoneStack = new ItemStack(Blocks.glowstone);
        ItemStack CobblestoneStack = new ItemStack(Blocks.cobblestone);
	//Item ItemStacks
	ItemStack ChargedCoalStack = new ItemStack(ChargedCoal);
	ItemStack ChargedCoalStack8 = new ItemStack(ChargedCoal, ;
	ItemStack CoalStack = new ItemStack(Items.coal, 1, OreDictionary.WILDCARD_VALUE);
	ItemStack RedstoneStack = new ItemStack(Items.redstone);
        ItemStack IronStack = new ItemStack(Items.iron_ingot);
        ItemStack EmeraldStack = new ItemStack(Items.emerald);
        ItemStack FlintStack = new ItemStack(Items.flint);
        ItemStack StickStack = new ItemStack(Items.stick);
        ItemStack DiamondStack = new ItemStack(Items.diamond);
        ItemStack ReedStack = new ItemStack(Items.reeds);
        ItemStack StringStack = new ItemStack(Items.string);
        ItemStack GoldStack = new ItemStack(Items.gold_ingot);
        ItemStack StringStack4 = new ItemStack(Items.string, 4);
        ItemStack EnderPearlStack = new ItemStack(Items.ender_pearl);
        ItemStack LavaStack = new ItemStack(Items.lava_bucket);
        ItemStack BlazePowderStack = new ItemStack(Items.blaze_powder);
        ItemStack OrangeDyeStack = new ItemStack(Items.dye, 1, 14);
        ItemStack GlowstoneDustStack = new ItemStack(Items.glowstone_dust);
        ItemStack MagmaCreamStack = new ItemStack(Items.magma_cream);
        ItemStack BlazeRodStack = new ItemStack(Items.blaze_rod);
        ItemStack NetherrackBrickStack = new ItemStack(Items.netherbrick);
        ItemStack BrickStack = new ItemStack(Items.brick);
        ItemStack NetherQuartzStack = new ItemStack(Items.quartz);
        ItemStack BottleStack = new ItemStack(Items.glass_bottle);
        ItemStack NetherWartStack = new ItemStack(Items.nether_wart);
        ItemStack WheatStack = new ItemStack(Items.wheat);
	//Tools, Weapons, and Parts
        ItemStack GunBarrelStack = new ItemStack(GunBarrel);
        ItemStack GunStockStack = new ItemStack(GunStock);
        ItemStack FlintAndSteelStack = new ItemStack(Items.flint_and_steel);
        ItemStack CoalGunStack = new ItemStack(CoalGun);
        ItemStack DirtHelmStack = new ItemStack(DirtHelmet);
        ItemStack DirtChestStack = new ItemStack(DirtChestplate);
        ItemStack DirtLegStack = new ItemStack(DirtLeggings);
        ItemStack DirtBootsStack = new ItemStack(DirtBoots);
        ItemStack DirtPaxelStack = new ItemStack(dirtPaxel);
        ItemStack WoodPaxelStack = new ItemStack(woodPaxel);
        ItemStack StonePaxelStack = new ItemStack(stonePaxel);
        ItemStack IronPaxelStack = new ItemStack(ironPaxel);
        ItemStack GoldPaxelStack = new ItemStack(goldPaxel);
        ItemStack DiamondPaxelStack = new ItemStack(diamondPaxel);
        ItemStack eIronHelmStack = new ItemStack(eIronHelmet);
        ItemStack eIronChestStack = new ItemStack(eIronChestplate);
        ItemStack eIronLegsStack = new ItemStack(eIronLeggings);
        ItemStack eIronBootsStack = new ItemStack(eIronBoots);
        ItemStack eGoldHelmStack = new ItemStack(eGoldHelmet);
        ItemStack eGoldChestStack = new ItemStack(eGoldChestplate);
        ItemStack eGoldLegsStack = new ItemStack(eGoldLeggings);
        ItemStack eGoldBootsStack = new ItemStack(eGoldBoots);
        ItemStack eDiamondHelmStack = new ItemStack(eDiamondHelmet);
        ItemStack eDiamondChestStack = new ItemStack(eDiamondChestplate);
        ItemStack eDiamondLegsStack = new ItemStack(eDiamondLeggings);
        ItemStack eDiamondBootsStack = new ItemStack(eDiamondBoots);
	//Recipes
	GameRegistry.addRecipe(ChargedCoalBlockStack, "xxx", "xxx", "xxx",
			'x', ChargedCoalStack);
	GameRegistry.addRecipe(ChargedCoalBlockStack8, "xxx", "xyx", "xxx",
			'x', CoalBlockStack, 'y', RedstoneBlockStack);
	GameRegistry.addRecipe(ChargedCoalStack8, "xxx", "xyx", "xxx",
			'x', CoalStack, 'y', RedstoneStack);
        GameRegistry.addRecipe(GunBarrelStack, "xxx", "  y", "xxx",
                'x', IronStack, 'y', FlintAndSteelStack);
        GameRegistry.addRecipe(GunStockStack, "xyx", "yxy",
		'x', IronStack, 'y', FlintStack);
	GameRegistry.addRecipe(CoalGunStack, "xy",
		'x', GunStockStack, 'y', GunBarrelStack);
	GameRegistry.addRecipe(DirtHelmStack, "xxx", "x x",
		'x', DarkDirtStack);
	GameRegistry.addRecipe(DirtChestStack, "x x", "xxx", "xxx",
		'x', DarkDirtStack);
	GameRegistry.addRecipe(DirtLegStack, "xxx", "x x", "x x",
		'x', DarkDirtStack);
	GameRegistry.addRecipe(DirtBootsStack, "x x", "x x",
		'x', DarkDirtStack);
	GameRegistry.addRecipe(DirtPaxelStack, "xxx", "xy ", " y ",
		'x', DarkDirtStack, 'y', StickStack);
	GameRegistry.addRecipe(DirtPaxelStack, "xxx", " yx", " y ",
		'x', DarkDirtStack, 'y', StickStack);
	GameRegistry.addRecipe(WoodPaxelStack, "xxx", "xy ", " y ",
		'x', WoodStack, 'y', StickStack);
	GameRegistry.addRecipe(WoodPaxelStack, "xxx", " yx", " y ",
		'x', WoodStack, 'y', StickStack);
	GameRegistry.addRecipe(StonePaxelStack, "xxx", "xy ", " y ",
		'x', CobblestoneStack, 'y', StickStack);
	GameRegistry.addRecipe(StonePaxelStack, "xxx", " yx", " y ",
		'x', CobblestoneStack, 'y', StickStack);
	GameRegistry.addRecipe(IronPaxelStack, "xxx", "xy ", " y ",
		'x', IronStack, 'y', StickStack);
	GameRegistry.addRecipe(IronPaxelStack, "xxx", " yx", " y ",
		'x', IronStack, 'y', StickStack);
	GameRegistry.addRecipe(GoldPaxelStack, "xxx", "xy ", " y ",
		'x', GoldStack, 'y', StickStack);
	GameRegistry.addRecipe(GoldPaxelStack, "xxx", " yx", " y ",
		'x', GoldStack, 'y', StickStack);
	GameRegistry.addRecipe(DiamondPaxelStack, "xxx", "xy ", " y ",
		'x', DiamondStack, 'y', StickStack);
	GameRegistry.addRecipe(DiamondPaxelStack, "xxx", " yx", " y ",
		'x', DiamondStack, 'y', StickStack);
	GameRegistry.addRecipe(DarkDirtStack, "xxx", "xxx", "xxx",
		'x', DirtStack);
	GameRegistry.addRecipe(SlottedStoneStack4, "xxx", "xxx", "xxx",
		'x', StoneSlabStack);
	GameRegistry.addRecipe(eIronHelmStack, "xyx", "x x",
		'x', IronStack, 'y', EmeraldStack);
	GameRegistry.addRecipe(eIronLegsStack, "xxx", "y y", "x x",
		'x', IronStack, 'y', EmeraldStack);
	GameRegistry.addRecipe(eIronChestStack, "x x", "xyx", "xxx",
		'x', IronStack, 'y', EmeraldStack);
	GameRegistry.addRecipe(eIronBootsStack, "x x", "y y",
		'x', IronStack, 'y', EmeraldStack);
	GameRegistry.addRecipe(eGoldHelmStack, "xyx", "x x",
		'x', GoldStack, 'y', EmeraldStack);
	GameRegistry.addRecipe(eGoldLegsStack, "xxx", "y y", "x x",
		'x', GoldStack, 'y', EmeraldStack);
	GameRegistry.addRecipe(eGoldChestStack, "x x", "xyx", "xxx",
		'x', GoldStack, 'y', EmeraldStack);
	GameRegistry.addRecipe(eGoldBootsStack, "x x", "y y",
		'x', GoldStack, 'y', EmeraldStack);
	GameRegistry.addRecipe(eDiamondHelmStack, "xyx", "x x",
		'x', DiamondStack, 'y', EmeraldStack);
	GameRegistry.addRecipe(eDiamondLegsStack, "xxx", "y y", "x x",
		'x', DiamondStack, 'y', EmeraldStack);
	GameRegistry.addRecipe(eDiamondChestStack, "x x", "xyx", "xxx",
		'x', DiamondStack, 'y', EmeraldStack);
	GameRegistry.addRecipe(eDiamondBootsStack, "x x", "y y",
				'x', DiamondStack, 'y', EmeraldStack);
    	//Ore Gen Registry
	GameRegistry.registerWorldGenerator(new WorldGeneratorDarkDirt(), 12);
	//Fuel Handler
        GameRegistry.registerFuelHandler(new DevonModFuelHandler());
    }
    
    @EventHandler
    public void load(FMLInitializationEvent event) {
    }
    
    @EventHandler
    public void postInit(FMLPostInitializationEvent event) {
    }

}

 

 

If I helped please press the Thank You button.

 

Check out my mods at http://www.curse.com/users/The_Fireplace/projects

Posted

In your Main Mod File you give it null when defining your paxels, give it what you define in ItemPaxel, you change it after super, when doing new ItemPaxel(toolDirt, null); change null to Sets.newHashSet(new Block[] {Blocks.planks, Blocks.bookshelf, Blocks.log, Blocks.log2, Blocks.chest, Blocks.pumpkin, Blocks.lit_pumpkin, Blocks.cobblestone, Blocks.double_stone_slab, Blocks.stone_slab, Blocks.stone, Blocks.sandstone, Blocks.mossy_cobblestone, Blocks.iron_ore, Blocks.iron_block, Blocks.coal_ore, Blocks.gold_block, Blocks.gold_ore, Blocks.diamond_ore, Blocks.diamond_block, Blocks.ice, Blocks.netherrack, Blocks.lapis_ore, Blocks.lapis_block, Blocks.redstone_ore, Blocks.lit_redstone_ore, Blocks.rail, Blocks.detector_rail, Blocks.golden_rail, Blocks.activator_rail, Blocks.grass, Blocks.dirt, Blocks.sand, Blocks.gravel, Blocks.snow_layer, Blocks.snow, Blocks.clay, Blocks.farmland, Blocks.soul_sand, Blocks.mycelium})

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hello, I tried to make a small modpack for myself but whenever I try to create a world I get the following error: The game crashed: mouseclicked event handler Error: java.lang.IllegalStateException: Failed to load registries due to above errors   Here's the log:https://mclo.gs/7maf12W Does anyone know a fix?
    • I'm trying to make a block that sends me to a new dimension, but when I try right clicking it, nothing happens.I've put a few debug messages to send a message to the chat or to show up in the logs when right clicked. Right now I am using: ``` public ActionResultType onBlockActivated(BlockState state, World worldIn, BlockPos pos, PlayerEntity player, Hand handIn, BlockRayTraceResult hit) // Client-side: Only show a status message if (worldIn.isRemote()) { player.sendStatusMessage(new StringTextComponent("Client: Block activated!"), true); return ActionResultType.SUCCESS; } // Server-side logic below player.sendMessage(new StringTextComponent("blockActivated"), player.getUniqueID()); } I am getting a warning _"Overrides deprecated method in 'net.minecraft.block.AbstractBlock'"_ is deprecated, but I'm not sure what to use instead.
    • Add crash-reports with sites like https://mclo.gs/ Make a test without epicfight
    • [16May2025 05:34:17.905] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--username, SoulEviction, --version, forge-47.4.0, --gameDir, C:\Users\Tired\curseforge\minecraft\Instances\The Last Era, --assetsDir, C:\Users\Tired\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, 0ab14d5b657b42b381d7c05574dbbb8f, --accessToken, ????????, --clientId, MzM0YjgwZjgtNGU5NS00NTFmLThjZDktMmFhZjE3YmQ2OTg3, --xuid, 2535462721540232, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\Tired\curseforge\minecraft\Install\quickPlay\java\1747388056221.json, --launchTarget, forgeclient, --fml.forgeVersion, 47.4.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [16May2025 05:34:17.909] [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 11 arch amd64 version 10.0 [16May2025 05:34:19.106] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow [16May2025 05:34:19.461] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 [16May2025 05:34:19.668] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 [16May2025 05:34:19.775] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: NVIDIA GeForce RTX 4060 Ti/PCIe/SSE2 GL version 4.6.0 NVIDIA 572.83, NVIDIA Corporation [16May2025 05:34:20.173] [main/INFO] [gg.essential.loader.stage1.EssentialLoaderBase/]: Starting Essential Loader (stage2) version 1.6.5 (1425fa2d69fa2b31e49c42a2d84be645) [stable] [16May2025 05:34:20.210] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/Tired/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [16May2025 05:34:20.351] [main/INFO] [CrashAssistantJarInJarHelper/]: Launching CrashAssistantApp (CrashAssistant-forge-1.19.2-1.20.1-1.7.28.jar) [16May2025 05:34:21.663] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\Tired\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.4.0\fmlcore-1.20.1-47.4.0.jar is missing mods.toml file [16May2025 05:34:21.666] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\Tired\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.4.0\javafmllanguage-1.20.1-47.4.0.jar is missing mods.toml file [16May2025 05:34:21.668] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\Tired\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.4.0\lowcodelanguage-1.20.1-47.4.0.jar is missing mods.toml file [16May2025 05:34:21.671] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\Tired\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.4.0\mclanguage-1.20.1-47.4.0.jar is missing mods.toml file [16May2025 05:34:22.054] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [16May2025 05:34:22.055] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 28 dependencies adding them to mods collection [16May2025 05:34:22.109] [main/INFO] [gg.essential.loader.stage2.util.KFFMerger/]: Found Kotlin-containing mod Jar[union:/C:/Users/Tired/curseforge/minecraft/Instances/The%20Last%20Era/essential/libraries/forge_1.20.1/kotlin-for-forge-4.3.0-slim.jar%23385!/], checking whether we need to upgrade it.. [16May2025 05:34:22.113] [main/INFO] [gg.essential.loader.stage2.util.KFFMerger/]: Found outdated Kotlin core libs 0.0.0 (we ship 1.9.23) [16May2025 05:34:22.113] [main/INFO] [gg.essential.loader.stage2.util.KFFMerger/]: Found outdated Kotlin Coroutines libs 0.0.0 (we ship 1.8.0) [16May2025 05:34:22.113] [main/INFO] [gg.essential.loader.stage2.util.KFFMerger/]: Found outdated Kotlin Serialization libs 0.0.0 (we ship 1.6.3) [16May2025 05:34:22.116] [main/INFO] [gg.essential.loader.stage2.util.KFFMerger/]: Generating jar with updated Kotlin at C:\Users\Tired\AppData\Local\Temp\kff-updated-kotlin-14689192504442218770-4.3.0-slim.jar [16May2025 05:34:25.081] [main/INFO] [mixin/]: Compatibility level set to JAVA_17 [16May2025 05:34:25.153] [main/ERROR] [mixin/]: Mixin config mixins.epicironcompat.json does not specify "minVersion" property [16May2025 05:34:25.233] [main/ERROR] [mixin/]: Mixin config crashexploitfixer.mixins.json does not specify "minVersion" property [16May2025 05:34:25.269] [main/ERROR] [mixin/]: Mixin config azurelib.mixins.json does not specify "minVersion" property [16May2025 05:34:25.270] [main/ERROR] [mixin/]: Mixin config azurelib.forge.mixins.json does not specify "minVersion" property [16May2025 05:34:25.329] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [16May2025 05:34:25.330] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclient' with arguments [--version, forge-47.4.0, --gameDir, C:\Users\Tired\curseforge\minecraft\Instances\The Last Era, --assetsDir, C:\Users\Tired\curseforge\minecraft\Install\assets, --uuid, 0ab14d5b657b42b381d7c05574dbbb8f, --username, SoulEviction, --assetIndex, 5, --accessToken, ????????, --clientId, MzM0YjgwZjgtNGU5NS00NTFmLThjZDktMmFhZjE3YmQ2OTg3, --xuid, 2535462721540232, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\Tired\curseforge\minecraft\Install\quickPlay\java\1747388056221.json] [16May2025 05:34:25.408] [main/INFO] [ModernFix/]: Loaded configuration file for ModernFix 5.21.0+mc1.20.1: 88 options available, 0 override(s) found [16May2025 05:34:25.409] [main/INFO] [ModernFix/]: Applying Nashorn fix [16May2025 05:34:25.425] [main/INFO] [ModernFix/]: Applied Forge config corruption patch [16May2025 05:34:25.450] [main/INFO] [Embeddium/]: Loaded configuration file for Embeddium: 279 options available, 3 override(s) found [16May2025 05:34:25.451] [main/INFO] [Embeddium-GraphicsAdapterProbe/]: Searching for graphics cards... [16May2025 05:34:25.504] [main/INFO] [Embeddium-GraphicsAdapterProbe/]: Found graphics card: GraphicsAdapterInfo[vendor=NVIDIA, name=NVIDIA GeForce RTX 4060 Ti, version=DriverVersion=32.0.15.7283] [16May2025 05:34:25.507] [main/WARN] [Embeddium-Workarounds/]: Embeddium has applied one or more workarounds to prevent crashes or other issues on your system: [NVIDIA_THREADED_OPTIMIZATIONS] [16May2025 05:34:25.507] [main/WARN] [Embeddium-Workarounds/]: This is not necessarily an issue, but it may result in certain features or optimizations being disabled. You can sometimes fix these issues by upgrading your graphics driver. [16May2025 05:34:25.518] [main/WARN] [mixin/]: Reference map 'morevillagers-forge-forge-refmap.json' for morevillagers.mixins.json could not be read. If this is a development environment you can ignore this message [16May2025 05:34:25.567] [main/INFO] [Essential Logger - Plugin/]: Starting Essential v1.3.6.2 (#3a04f60330) [stable] [16May2025 05:34:25.688] [main/WARN] [mixin/]: Reference map 'puzzlesaccessapi.common.refmap.json' for puzzlesaccessapi.common.mixins.json could not be read. If this is a development environment you can ignore this message [16May2025 05:34:25.725] [main/INFO] [Puzzles Lib/]: Loading 234 mods: - alexscaves 2.0.2 - alexsmobs 1.22.9 - apotheosis 7.4.8 - apotheotic_additions 2.2.2 - arcaneessenceblock 1.0.0 - architectury 9.2.14 - artifacts 9.5.16 \-- expandability 9.0.4 - ash_of_sin_custom_anti_trap_cage_entity 1.0.0 - ash_of_sin_custom_entity_anti_effect 1.0.0 - attributefix 21.0.4 - attributeslib 1.3.7 - attributizer 2.1 - azurelib 2.0.41 - badmobs 19.0.4 - badoptimizations 2.2.2 - badpackets 0.4.3 - balm 7.3.29 \-- kuma_api 20.1.10 - betterchunkloading 1.20.1-5.4 - betterdeserttemples 1.20-Forge-3.0.3 - betterdungeons 1.20-Forge-4.0.4 - betterendisland 1.20-Forge-2.0.6 - betterfortresses 1.20-Forge-2.0.6 - betterfpsdist 1.20.1-6.0 - betterjungletemples 1.20-Forge-2.0.5 - bettermineshafts 1.20-Forge-4.0.4 - betteroceanmonuments 1.20-Forge-3.0.4 - betterstrongholds 1.20-Forge-4.0.3 - betterwitchhuts 1.20-Forge-3.0.3 - bhc 1.20.1-1.1.0 - blockui 1.20.1-1.0.190-snapshot - blueprint 7.1.3 - bookshelf 20.2.13 - bowinfinityfix 2.6.0 - caelus 3.2.0+1.20.1 - cataclysm 2.65 - cdmoveset 1.28 - chunksending 1.20.1-2.8 - citadel 2.6.1 - cloth_config 11.1.136 - clumps 12.0.0.4 - cofh_core 11.0.2 - colorfulhearts 4.3.16 - configured 2.2.3 - connectivity 1.20.1-7.1 - controlling 12.0.2 - coroutil 1.20.1-1.3.7 - corpse 1.20.1-1.0.20 - cosmeticarmorreworked 1.20.1-v1a - crash_assistant 1.7.28 - crashexploitfixer 1.1.0 - create 6.0.4 |-- flywheel 1.0.2 \-- ponder 1.0.52 - cristellib 1.1.6 - ctov 3.4.14 - cupboard 1.20.1-2.7 - curios 5.14.1+1.20.1 - darkloot 1.1.9 - despawntimers 3.0.1 - disenchanting 2.2.3 - dmnr 3.2.2 - domum_ornamentum 1.20.1-1.0.186-RELEASE - dummmmmmy 1.20-2.0.6 - dungeoncrawl 2.3.15 - dungeons_arise 2.1.58-1.20.x - dungeons_arise_seven_seas 1.0.2 - dungeons_enhanced 5.4.0 - easy_villagers 1.20.1-1.1.23 - ec_es_plugin 1.1.5 - efiscompat 2.2.4 - efm_compat 2.0 - efm_ex 20.10.7.11 - embeddium 0.3.31+mc1.20.1 \-- rubidium 0.7.1 - enchdesc 17.1.19 - entityculling 1.7.4 - epic_knights__japanese_armory 1.6.2 - epic_samurais_swords 1.0.0 - epic_stats_mod_remastered 2.0.1 - epicacg 20.9.6.0.fix4 - epicfight 20.10.4 - epictweaks 1.0.2 - essential 1.3.6.2 - expanded_combat 3.2.6 - explorerscompass 1.20.1-1.3.3-forge - falchionmoveset 20.8.2 - fallingtree 4.3.4 - fantasy_epicfied 1.4-1.20.1 - fantasy_weapons 0.3.1-1.20.1 - fantasyfurniture 9.0.0 |-- apexcore 10.0.0 \-- commonality 7.0.0 - fastasyncworldsave 1.20.1-2.4 - fastbench 8.0.4 - fastfurnace 8.0.2 - ferritecore 6.0.1 - forge 47.4.0 - framework 0.7.15 - gamma_creatures 1.2.2 - geckolib 4.7.1.2 - geophilic 3.4.1 - geophilic_reforged 1.2.0 - goety 2.5.33.3 - goety_cataclysm 1.20-1.3.1 - goety_spillage 1.20-1.3.0 - goety_ut 1.16.0 - gpumemleakfix 1.20.1-1.8 - guardvillagers 1.20.1-1.6.10 - hiccups_legacy 1.5.1 - humancompanions 1.20.1-1.7.6 - ias_spellbooks 0.5.0-1.20.1 - idas 1.11.1+1.20.1 - illageandspillage 1.2.8 - impactful 20.8.3 - improvedmobs 1.20.1-1.13.5 - indestructible 20.9.7 - integrated_api 1.5.3+1.20.1-forge - invincible 20.10.0 - iron_ender_chests 1.20-1.0.3 - iron_fishing_rods 1.0.0 - ironchest 1.20.1-14.4.4 - ironfurnaces 4.1.6 - irons_spellbooks 1.20.1-3.4.0.9 - itemproductionlib 1.0.2a - jade 11.13.1+forge - jei 15.20.0.106 - kleiders_custom_renderer 7.4.0 - lionfishapi 2.4-Fix - lithostitched 1.4.7 - lootbags 2.0.2 \-- resourcefullib 2.1.29 - lootbeams 1.20.1 - lootintegration_townsandtowers 1 - lootintegration_wda 1 - lootintegrations 1.20.1-4.4 - lootintegrations_cataclysm 1 - lootintegrations_ctov 1 - lootintegrations_dungeoncrawl 1 - lootintegrations_formations 1 - lootintegrations_hopo 1 - lootintegrations_moog 1 - lootintegrations_structory 1 - lootintegrations_yungs 1 - lootr 0.7.35.91 - medieval_buildings 1.1.1 - medievalorigins 6.6.0+1.20.1-forge |-- apugli 2.10.2+1.20.1-forge \-- mixinextras 0.4.1 - memorysettings 1.20.1-5.9 - minecolonies 1.20.1-1.1.873-alpha - minecraft 1.20.1 - mna 3.1.0.8 - mns 1.0.3-1.20-forge - mobtimizations 1.20.1-1.0.0 - modernfix 5.21.0+mc1.20.1 - moonlight 1.20-2.14.1 - morevillagers 5.0.0 - mousetweaks 2.25.1 - mowziesmobs 1.7.2 - mr_tidal_towns 1.3.4 - mss 1.2.7-1.20-forge - multipiston 1.20-1.2.43-RELEASE - mutantmonsters 8.0.7 - mvs 4.1.4-1.20-forge - naturescompass 1.20.1-1.11.2-forge - neruina 2.1.2 - obscure_api 15 - octolib 0.5.0.1 - oculus 1.8.0 - origins 1.20.1-1.10.0.9 |-- additionalentityattributes 1.4.0.5+1.20.1 |-- apoli 1.20.1-2.9.0.8 \-- calio 1.20.1-1.11.0.5 - origins_classes 1.2.1 - overloadedarmorbar 1.20.1-1 - particular 1.2.1 - passiveskilltreeadditions 1.1.1 - patchouli 1.20.1-84.1-FORGE - pehkui 3.8.2+1.20.1-forge - placebo 8.6.3 - playeranimator 1.0.2-rc1+1.20 - portablecraftingtable 3.2.2-[FORGE] - portablemobs 1.2.0 - puzzleslib 8.1.32 \-- puzzlesaccessapi 20.1.1 - quark 4.0-462 - raccompat 0.1.3 - ramcompat 0.1.4 - rarcompat 0.1.7 - recipeessentials 1.20.1-4.0 - refm 0.3.0 - refurbished_furniture 1.0.12 - relics 0.8.0.9 - samurai_dynasty 0.0.49-1.20.1-neo - searchables 1.0.3 - shifu_epic_fight_skill_recipe 1.0.0 - simplebackups 1.20.1-3.1.7 - skilltree 0.6.14a - skyarena 1.2.5 - skyvillages 1.0.4 - smallships 2.0.0-b1.4 - smoothchunk 1.20.1-4.1 - sodiumdynamiclights 1.0.9 - sodiumoptionsapi 1.0.10 \-- fabric_api_base 0.4.31+ef105b4977 - sophisticatedbackpacks 3.23.16.1239 - sophisticatedcore 1.2.58.980 - sound_physics_remastered 1.20.1-1.4.13 - stalwart_dungeons 1.2.8 - structory_towers 1.0.7 - structure_gel 2.16.2 - structureessentials 1.20.1-4.7 - structurize 1.20.1-1.0.772-snapshot - supermartijn642corelib 1.1.18 - supplementaries 1.20-3.1.30 \-- mixinsquared 0.1.1 - sword_soaring 20.10.0 - t_and_t 0.0NONE - tenshilib 1.20.1-1.7.6 - too_many_bows 3.6.1 - torchmaster 20.1.9 - totw_additions 1.3.1 - totw_modded 1.0.6 - towntalk 1.1.0 - traveloptics 4.4.0-1.20.1 - upgrade_aquatic 6.0.3 - valarian_conquest 3.2.1 - waystones 14.1.12 - wom 20.1.8.5.6 - xaerominimap 25.2.0 - xaeroworldmap 1.39.4 - yungsapi 1.20-Forge-4.0.6 - zeta 1.0-30 [16May2025 05:34:25.733] [main/WARN] [mixin/]: Reference map 'mns-forge-refmap.json' for mns-forge.mixins.json could not be read. If this is a development environment you can ignore this message [16May2025 05:34:25.736] [main/WARN] [mixin/]: Reference map '${mod_id}.refmap.json' for medievalorigins.mixins.json could not be read. If this is a development environment you can ignore this message [16May2025 05:34:25.740] [main/WARN] [mixin/]: 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 [16May2025 05:34:25.742] [main/WARN] [mixin/]: Reference map 'mixins.arcaneessenceblock.refmap.json' for mixins.arcaneessenceblock.json could not be read. If this is a development environment you can ignore this message [16May2025 05:34:25.781] [main/WARN] [mixin/]: Reference map 'colorfulhearts-common-api-api_common-refmap.json' for colorfulhearts-common.mixins.json could not be read. If this is a development environment you can ignore this message [16May2025 05:34:25.804] [main/WARN] [mixin/]: Reference map 'smallships-forge-refmap.json' for smallships.mixins.json could not be read. If this is a development environment you can ignore this message [16May2025 05:34:25.806] [main/WARN] [mixin/]: Reference map 'mixins.kleiders_custom_renderer.refmap.json' for mixins.kleiders_custom_renderer.json could not be read. If this is a development environment you can ignore this message [16May2025 05:34:25.845] [main/WARN] [mixin/]: Reference map 'coroutil.refmap.json' for coroutil.mixins.json could not be read. If this is a development environment you can ignore this message [16May2025 05:34:25.848] [main/WARN] [mixin/]: 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 [16May2025 05:34:26.018] [main/WARN] [mixin/]: Reference map 'apexcore.refmap.json' for apexcore.mixins.json could not be read. If this is a development environment you can ignore this message [16May2025 05:34:26.022] [main/INFO] [BadOptimizations/]: Loading config file [16May2025 05:34:26.022] [main/INFO] [BadOptimizations/]: Config version: 4 [16May2025 05:34:26.023] [main/INFO] [BadOptimizations/]: BadOptimizations config dump: [16May2025 05:34:26.023] [main/INFO] [BadOptimizations/]: enable_toast_optimizations: true [16May2025 05:34:26.023] [main/INFO] [BadOptimizations/]: ignore_mod_incompatibilities: false [16May2025 05:34:26.023] [main/INFO] [BadOptimizations/]: lightmap_time_change_needed_for_update: 80 [16May2025 05:34:26.023] [main/INFO] [BadOptimizations/]: enable_lightmap_caching: true [16May2025 05:34:26.023] [main/INFO] [BadOptimizations/]: enable_particle_manager_optimization: true [16May2025 05:34:26.023] [main/INFO] [BadOptimizations/]: enable_entity_renderer_caching: true [16May2025 05:34:26.023] [main/INFO] [BadOptimizations/]: log_config: true [16May2025 05:34:26.023] [main/INFO] [BadOptimizations/]: enable_remove_redundant_fov_calculations: true [16May2025 05:34:26.023] [main/INFO] [BadOptimizations/]: config_version: 4 [16May2025 05:34:26.023] [main/INFO] [BadOptimizations/]: enable_sky_angle_caching_in_worldrenderer: true [16May2025 05:34:26.023] [main/INFO] [BadOptimizations/]: enable_block_entity_renderer_caching: true [16May2025 05:34:26.023] [main/INFO] [BadOptimizations/]: skycolor_time_change_needed_for_update: 3 [16May2025 05:34:26.023] [main/INFO] [BadOptimizations/]: enable_entity_flag_caching: true [16May2025 05:34:26.024] [main/INFO] [BadOptimizations/]: enable_debug_renderer_disable_if_not_needed: true [16May2025 05:34:26.024] [main/INFO] [BadOptimizations/]: enable_sky_color_caching: true [16May2025 05:34:26.024] [main/INFO] [BadOptimizations/]: enable_remove_tutorial_if_not_demo: true [16May2025 05:34:26.024] [main/INFO] [BadOptimizations/]: show_f3_text: true [16May2025 05:34:26.032] [main/WARN] [mixin/]: Reference map 'mixins.epicfight.refmap.json' for mixins.epicfight.json could not be read. If this is a development environment you can ignore this message [16May2025 05:34:26.605] [main/INFO] [net.minecraftforge.coremod.CoreMod.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [16May2025 05:34:26.613] [main/INFO] [net.minecraftforge.coremod.CoreMod.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [16May2025 05:34:26.749] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 1 calls to Enchantment#getMaxLevel() in net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction [16May2025 05:34:26.749] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 1 calls to Enchantment#isDiscoverable() in net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction [16May2025 05:34:26.918] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/inventory/AnvilMenu [16May2025 05:34:26.923] [main/INFO] [net.minecraftforge.coremod.CoreMod.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [16May2025 05:34:26.924] [main/INFO] [net.minecraftforge.coremod.CoreMod.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [16May2025 05:34:26.930] [main/WARN] [mixin/]: Error loading class: com/hollingsworth/arsnouveau/common/items/SpellCrossbow (java.lang.ClassNotFoundException: com.hollingsworth.arsnouveau.common.items.SpellCrossbow) [16May2025 05:34:27.001] [main/WARN] [mixin/]: Error loading class: mekanism/client/render/entity/RenderFlame (java.lang.ClassNotFoundException: mekanism.client.render.entity.RenderFlame) [16May2025 05:34:27.002] [main/WARN] [mixin/]: Error loading class: mekanism/client/render/armor/MekaSuitArmor (java.lang.ClassNotFoundException: mekanism.client.render.armor.MekaSuitArmor) [16May2025 05:34:27.052] [main/WARN] [mixin/]: Error loading class: yesman/epicfight/client/gui/HealthBarIndicator (java.lang.ClassNotFoundException: yesman.epicfight.client.gui.HealthBarIndicator) [16May2025 05:34:27.052] [main/WARN] [mixin/]: @Mixin target yesman.epicfight.client.gui.HealthBarIndicator was not found mixins.indestructible.json:HealthBarIndicatorMixin [16May2025 05:34:27.214] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Patching FishingHook#catchingFish [16May2025 05:34:27.307] [main/WARN] [mixin/]: Error loading class: tfar/davespotioneering/blockentity/AdvancedBrewingStandBlockEntity (java.lang.ClassNotFoundException: tfar.davespotioneering.blockentity.AdvancedBrewingStandBlockEntity) [16May2025 05:34:27.308] [main/WARN] [mixin/]: @Mixin target tfar.davespotioneering.blockentity.AdvancedBrewingStandBlockEntity was not found itemproductionlib.mixins.json:davespotioneering/AdvancedBrewingStandBlockEntityMixin [16May2025 05:34:27.309] [main/WARN] [mixin/]: Error loading class: vectorwing/farmersdelight/common/block/entity/CookingPotBlockEntity (java.lang.ClassNotFoundException: vectorwing.farmersdelight.common.block.entity.CookingPotBlockEntity) [16May2025 05:34:27.309] [main/WARN] [mixin/]: @Mixin target vectorwing.farmersdelight.common.block.entity.CookingPotBlockEntity was not found itemproductionlib.mixins.json:farmersdelight/CookingPotBlockEntityMixin [16May2025 05:34:27.310] [main/WARN] [mixin/]: Error loading class: vectorwing/farmersdelight/common/block/entity/StoveBlockEntity (java.lang.ClassNotFoundException: vectorwing.farmersdelight.common.block.entity.StoveBlockEntity) [16May2025 05:34:27.310] [main/WARN] [mixin/]: @Mixin target vectorwing.farmersdelight.common.block.entity.StoveBlockEntity was not found itemproductionlib.mixins.json:farmersdelight/StoveBlockEntityMixin [16May2025 05:34:27.312] [main/WARN] [mixin/]: Error loading class: fuzs/visualworkbench/world/inventory/ModCraftingMenu (java.lang.ClassNotFoundException: fuzs.visualworkbench.world.inventory.ModCraftingMenu) [16May2025 05:34:27.312] [main/WARN] [mixin/]: @Mixin target fuzs.visualworkbench.world.inventory.ModCraftingMenu was not found itemproductionlib.mixins.json:visualworkbench/ModCraftingMenuMixin [16May2025 05:34:27.324] [main/INFO] [com.cupboard.Cupboard/]: Loaded config for: betterfpsdist.json [16May2025 05:34:27.348] [main/WARN] [mixin/]: Error loading class: net/mcreator/borninchaosv/entity/BonescallerEntity (java.lang.ClassNotFoundException: net.mcreator.borninchaosv.entity.BonescallerEntity) [16May2025 05:34:27.349] [main/WARN] [mixin/]: Error loading class: net/mcreator/borninchaosv/entity/DireHoundLeaderEntity (java.lang.ClassNotFoundException: net.mcreator.borninchaosv.entity.DireHoundLeaderEntity) [16May2025 05:34:27.351] [main/WARN] [mixin/]: Error loading class: com/eeeab/eeeabsmobs/sever/entity/corpse/EntityCorpseWarlock (java.lang.ClassNotFoundException: com.eeeab.eeeabsmobs.sever.entity.corpse.EntityCorpseWarlock) [16May2025 05:34:27.352] [main/WARN] [mixin/]: Error loading class: com/eeeab/eeeabsmobs/sever/entity/guling/EntityGulingSentinelHeavy (java.lang.ClassNotFoundException: com.eeeab.eeeabsmobs.sever.entity.guling.EntityGulingSentinelHeavy) [16May2025 05:34:27.353] [main/WARN] [mixin/]: Error loading class: net/mcreator/borninchaosv/entity/SiameseSkeletonsEntity (java.lang.ClassNotFoundException: net.mcreator.borninchaosv.entity.SiameseSkeletonsEntity) [16May2025 05:34:27.355] [main/WARN] [mixin/]: Error loading class: net/mcreator/borninchaosv/entity/SiameseSkeletonsleftEntity (java.lang.ClassNotFoundException: net.mcreator.borninchaosv.entity.SiameseSkeletonsleftEntity) [16May2025 05:34:27.356] [main/WARN] [mixin/]: Error loading class: net/mcreator/borninchaosv/entity/SiameseSkeletonsrightEntity (java.lang.ClassNotFoundException: net.mcreator.borninchaosv.entity.SiameseSkeletonsrightEntity) [16May2025 05:34:27.361] [main/WARN] [mixin/]: Error loading class: net/mcreator/borninchaosv/entity/SpiritGuideEntity (java.lang.ClassNotFoundException: net.mcreator.borninchaosv.entity.SpiritGuideEntity) [16May2025 05:34:27.363] [main/WARN] [mixin/]: Error loading class: net/mcreator/borninchaosv/entity/SupremeBonescallerEntity (java.lang.ClassNotFoundException: net.mcreator.borninchaosv.entity.SupremeBonescallerEntity) [16May2025 05:34:27.397] [main/INFO] [com.cupboard.Cupboard/]: Loaded config for: recipeessentials.json [16May2025 05:34:27.405] [main/INFO] [com.cupboard.Cupboard/]: Loaded config for: structureessentials.json [16May2025 05:34:27.433] [main/WARN] [mixin/]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/data/ArrayLightDataCache (java.lang.ClassNotFoundException: net.caffeinemc.mods.sodium.client.model.light.data.ArrayLightDataCache) [16May2025 05:34:27.435] [main/WARN] [mixin/]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/flat/FlatLightPipeline (java.lang.ClassNotFoundException: net.caffeinemc.mods.sodium.client.model.light.flat.FlatLightPipeline) [16May2025 05:34:27.437] [main/WARN] [mixin/]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/data/LightDataAccess (java.lang.ClassNotFoundException: net.caffeinemc.mods.sodium.client.model.light.data.LightDataAccess) [16May2025 05:34:27.438] [main/WARN] [mixin/]: Error loading class: net/fabricmc/fabric/impl/client/indigo/renderer/aocalc/AoCalculator (java.lang.ClassNotFoundException: net.fabricmc.fabric.impl.client.indigo.renderer.aocalc.AoCalculator) [16May2025 05:34:27.440] [main/INFO] [Colorful Hearts/]: Skipped applying mixin HUDOverlayHandlerAccessor as mod appleskin is not present. [16May2025 05:34:27.440] [main/INFO] [Colorful Hearts/]: Skipped applying mixin ComfortHealthOverlayMixin as mod farmersdelight is not present. [16May2025 05:34:27.448] [main/WARN] [mixin/]: Error loading class: vectorwing/farmersdelight/common/block/entity/container/CookingPotResultSlot (java.lang.ClassNotFoundException: vectorwing.farmersdelight.common.block.entity.container.CookingPotResultSlot) [16May2025 05:34:27.448] [main/WARN] [mixin/]: @Mixin target vectorwing.farmersdelight.common.block.entity.container.CookingPotResultSlot was not found origins_classes.mixins.json:common.farmersdelight.CookingPotResultSlotMixin [16May2025 05:34:27.449] [main/WARN] [mixin/]: Error loading class: vectorwing/farmersdelight/common/item/SkilletItem (java.lang.ClassNotFoundException: vectorwing.farmersdelight.common.item.SkilletItem) [16May2025 05:34:27.450] [main/WARN] [mixin/]: @Mixin target vectorwing.farmersdelight.common.item.SkilletItem was not found origins_classes.mixins.json:common.farmersdelight.SkilletItemMixin [16May2025 05:34:27.454] [main/WARN] [mixin/]: Error loading class: se/mickelus/tetra/blocks/workbench/WorkbenchTile (java.lang.ClassNotFoundException: se.mickelus.tetra.blocks.workbench.WorkbenchTile) [16May2025 05:34:27.454] [main/WARN] [mixin/]: @Mixin target se.mickelus.tetra.blocks.workbench.WorkbenchTile was not found origins_classes.mixins.json:common.tetra.WorkbenchTileMixin [16May2025 05:34:27.501] [main/WARN] [mixin/]: Error loading class: net/dries007/tfc/common/fluids/MixingFluid (java.lang.ClassNotFoundException: net.dries007.tfc.common.fluids.MixingFluid) [16May2025 05:34:27.501] [main/WARN] [mixin/]: @Mixin target net.dries007.tfc.common.fluids.MixingFluid was not found particular.mixins.json:compat.TFCMixingFluidMixin [16May2025 05:34:27.503] [main/WARN] [mixin/]: Error loading class: net/dries007/tfc/common/fluids/RiverWaterFluid (java.lang.ClassNotFoundException: net.dries007.tfc.common.fluids.RiverWaterFluid) [16May2025 05:34:27.503] [main/WARN] [mixin/]: @Mixin target net.dries007.tfc.common.fluids.RiverWaterFluid was not found particular.mixins.json:compat.TFCWaterMixin [16May2025 05:34:27.551] [main/WARN] [mixin/]: Error loading class: fuzs/easymagic/world/inventory/ModEnchantmentMenu (java.lang.ClassNotFoundException: fuzs.easymagic.world.inventory.ModEnchantmentMenu) [16May2025 05:34:27.551] [main/WARN] [mixin/]: @Mixin target fuzs.easymagic.world.inventory.ModEnchantmentMenu was not found skilltree.mixins.json:easymagic/ModEnchantmentMenuMixin [16May2025 05:34:27.588] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/item/CreativeModeTabs [16May2025 05:34:27.595] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 1 calls to Enchantment#getMaxLevel() in net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds [16May2025 05:34:27.595] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 1 calls to Enchantment#isTreasureOnly() in net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds [16May2025 05:34:27.595] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 1 calls to Enchantment#isTradeable() in net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds [16May2025 05:34:27.650] [main/WARN] [mixin/]: Error loading class: vectorwing/farmersdelight/common/block/TomatoVineBlock (java.lang.ClassNotFoundException: vectorwing.farmersdelight.common.block.TomatoVineBlock) [16May2025 05:34:27.661] [main/WARN] [mixin/]: Error loading class: net/raphimc/immediatelyfast/feature/map_atlas_generation/MapAtlasTexture (java.lang.ClassNotFoundException: net.raphimc.immediatelyfast.feature.map_atlas_generation.MapAtlasTexture) [16May2025 05:34:27.675] [main/WARN] [mixin/]: Error loading class: vazkii/quark/addons/oddities/inventory/BackpackMenu (java.lang.ClassNotFoundException: vazkii.quark.addons.oddities.inventory.BackpackMenu) [16May2025 05:34:27.709] [main/WARN] [mixin/]: Error loading class: dev/tr7zw/skinlayers/SkinUtil (java.lang.ClassNotFoundException: dev.tr7zw.skinlayers.SkinUtil) [16May2025 05:34:27.709] [main/WARN] [mixin/]: @Mixin target dev.tr7zw.skinlayers.SkinUtil was not found mixins.epicfight.json:SkinLayer3DMixinSkinUtil [16May2025 05:34:27.711] [main/WARN] [mixin/]: Error loading class: dev/tr7zw/skinlayers/versionless/render/CustomModelPart (java.lang.ClassNotFoundException: dev.tr7zw.skinlayers.versionless.render.CustomModelPart) [16May2025 05:34:27.711] [main/WARN] [mixin/]: @Mixin target dev.tr7zw.skinlayers.versionless.render.CustomModelPart was not found mixins.epicfight.json:SkinLayer3DMixinCustomModelPart [16May2025 05:34:27.712] [main/WARN] [mixin/]: Error loading class: dev/tr7zw/skinlayers/versionless/render/CustomizableCube (java.lang.ClassNotFoundException: dev.tr7zw.skinlayers.versionless.render.CustomizableCube) [16May2025 05:34:27.712] [main/WARN] [mixin/]: @Mixin target dev.tr7zw.skinlayers.versionless.render.CustomizableCube was not found mixins.epicfight.json:SkinLayer3DMixinCustomizableCubeWrapper$SkinLayer3DMixinCustomModelCube [16May2025 05:34:27.714] [main/WARN] [mixin/]: Error loading class: de/teamlapen/vampirism/client/renderer/entity/layers/VampirePlayerHeadLayer (java.lang.ClassNotFoundException: de.teamlapen.vampirism.client.renderer.entity.layers.VampirePlayerHeadLayer) [16May2025 05:34:27.714] [main/WARN] [mixin/]: @Mixin target de.teamlapen.vampirism.client.renderer.entity.layers.VampirePlayerHeadLayer was not found mixins.epicfight.json:VampirismMixinVampirePlayerHeadLayer [16May2025 05:34:27.715] [main/WARN] [mixin/]: Error loading class: de/teamlapen/werewolves/client/render/layer/HumanWerewolfLayer (java.lang.ClassNotFoundException: de.teamlapen.werewolves.client.render.layer.HumanWerewolfLayer) [16May2025 05:34:27.715] [main/WARN] [mixin/]: @Mixin target de.teamlapen.werewolves.client.render.layer.HumanWerewolfLayer was not found mixins.epicfight.json:WerewolvesMixinHumanWerewolfLayer [16May2025 05:34:27.733] [main/WARN] [mixin/]: Error loading class: journeymap/client/ui/fullscreen/Fullscreen (java.lang.ClassNotFoundException: journeymap.client.ui.fullscreen.Fullscreen) [16May2025 05:34:27.733] [main/WARN] [mixin/]: @Mixin target journeymap.client.ui.fullscreen.Fullscreen was not found create.mixins.json:compat.JourneyFullscreenMapMixin [16May2025 05:34:27.789] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.world.sky.WorldRendererMixin' as rule 'mixin.features.render.world.sky' (added by mods [oculus]) disables it and children [16May2025 05:34:27.789] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.world.sky.ClientWorldMixin' as rule 'mixin.features.render.world.sky' (added by mods [oculus]) disables it and children [16May2025 05:34:27.789] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.world.sky.BackgroundRendererMixin' as rule 'mixin.features.render.world.sky' (added by mods [oculus]) disables it and children [16May2025 05:34:27.790] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.gui.font.GlyphRendererMixin' as rule 'mixin.features.render.gui.font' (added by mods [oculus]) disables it and children [16May2025 05:34:27.790] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.gui.font.FontSetMixin' as rule 'mixin.features.render.gui.font' (added by mods [oculus]) disables it and children [16May2025 05:34:27.791] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.entity.shadows.EntityRenderDispatcherMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [16May2025 05:34:27.791] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.entity.remove_streams.ModelPartMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [16May2025 05:34:27.791] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.entity.remove_streams.HierarchicalModelMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [16May2025 05:34:27.791] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.entity.fast_render.ModelPartMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [16May2025 05:34:27.791] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.entity.fast_render.CuboidMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [16May2025 05:34:27.791] [main/WARN] [Embeddium/]: Force-disabling mixin 'features.render.entity.cull.EntityRendererMixin' as rule 'mixin.features.render.entity' (added by mods [oculus]) disables it and children [16May2025 05:34:27.842] [main/WARN] [mixin/]: Error loading class: yesman/epicfight/client/gui/EntityIndicator (java.lang.ClassNotFoundException: yesman.epicfight.client.gui.EntityIndicator) [16May2025 05:34:27.842] [main/ERROR] [mixin/]: Cannot invoke "org.spongepowered.asm.mixin.transformer.ClassInfo.isMixin()" because "superClass" is null java.lang.NullPointerException: Cannot invoke "org.spongepowered.asm.mixin.transformer.ClassInfo.isMixin()" because "superClass" is null at org.spongepowered.asm.mixin.transformer.MixinInfo$SubType$Standard.validate(MixinInfo.java:581) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinInfo$State.validate(MixinInfo.java:327) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinInfo.validate(MixinInfo.java:913) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinConfig.postInitialise(MixinConfig.java:801) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinProcessor.prepareConfigs(MixinProcessor.java:567) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinProcessor.select(MixinProcessor.java:462) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinProcessor.checkSelect(MixinProcessor.java:438) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:290) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) ~[modlauncher-10.0.9.jar:10.0.9+10.0.9+main.dcd20f30] at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar:?] at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.10.jar:?] at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?] at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] at java.lang.ClassLoader.loadClass(ClassLoader.java:637) ~[?:?] at java.lang.Class.forName(Class.java:545) ~[?:?] at net.minecraftforge.fml.earlydisplay.DisplayWindow.lambda$updateModuleReads$13(DisplayWindow.java:615) ~[fmlearlydisplay-1.20.1-47.4.0.jar:1.0] at java.util.Optional.map(Optional.java:260) ~[?:?] at net.minecraftforge.fml.earlydisplay.DisplayWindow.updateModuleReads(DisplayWindow.java:615) ~[fmlearlydisplay-1.20.1-47.4.0.jar:1.0] at net.minecraftforge.fml.loading.ImmediateWindowHandler.acceptGameLayer(ImmediateWindowHandler.java:71) ~[fmlloader-1.20.1-47.4.0.jar:1.0] at net.minecraftforge.fml.loading.FMLLoader.beforeStart(FMLLoader.java:216) ~[fmlloader-1.20.1-47.4.0.jar:1.0] at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.launchService(CommonLaunchHandler.java:92) ~[fmlloader-1.20.1-47.4.0.jar:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [16May2025 05:34:27.926] [main/WARN] [mixin/]: Error loading class: yesman/epicfight/config/OptionHandler$BooleanOptionHandler (java.lang.ClassNotFoundException: yesman.epicfight.config.OptionHandler$BooleanOptionHandler) [16May2025 05:34:27.943] [main/WARN] [mixin/]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/data/ArrayLightDataCache (java.lang.ClassNotFoundException: net.caffeinemc.mods.sodium.client.model.light.data.ArrayLightDataCache) [16May2025 05:34:27.945] [main/WARN] [mixin/]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/data/ArrayLightDataCache (java.lang.ClassNotFoundException: net.caffeinemc.mods.sodium.client.model.light.data.ArrayLightDataCache) [16May2025 05:34:27.947] [main/WARN] [mixin/]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/flat/FlatLightPipeline (java.lang.ClassNotFoundException: net.caffeinemc.mods.sodium.client.model.light.flat.FlatLightPipeline) [16May2025 05:34:27.948] [main/WARN] [mixin/]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/flat/FlatLightPipeline (java.lang.ClassNotFoundException: net.caffeinemc.mods.sodium.client.model.light.flat.FlatLightPipeline) [16May2025 05:34:27.950] [main/WARN] [mixin/]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/data/LightDataAccess (java.lang.ClassNotFoundException: net.caffeinemc.mods.sodium.client.model.light.data.LightDataAccess) [16May2025 05:34:27.951] [main/WARN] [mixin/]: Error loading class: net/caffeinemc/mods/sodium/client/model/light/data/LightDataAccess (java.lang.ClassNotFoundException: net.caffeinemc.mods.sodium.client.model.light.data.LightDataAccess) [16May2025 05:34:27.992] [main/WARN] [mixin/]: Error loading class: yesman/epicfight/skill/Skill$Builder (java.lang.ClassNotFoundException: yesman.epicfight.skill.Skill$Builder) [16May2025 05:34:27.993] [main/WARN] [mixin/]: Error loading class: yesman/epicfight/skill/Skill$Builder (java.lang.ClassNotFoundException: yesman.epicfight.skill.Skill$Builder) [16May2025 05:34:27.994] [main/WARN] [mixin/]: Error loading class: yesman/epicfight/skill/Skill$Builder (java.lang.ClassNotFoundException: yesman.epicfight.skill.Skill$Builder) [16May2025 05:34:28.005] [main/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). [16May2025 05:34:28.354] [main/WARN] [mixin/]: Mixin apply failed mixins.epicfight.json:MixinMinecraft -> net.minecraft.client.Minecraft: org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException Critical injection failure: @Inject annotation on epicfight_handleKeybinds could not find any targets matching 'handleKeybinds()V' in net.minecraft.client.Minecraft. No refMap loaded. [ -> handler$gfj000$epicfight_handleKeybinds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V -> Parse] org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException: Critical injection failure: @Inject annotation on epicfight_handleKeybinds could not find any targets matching 'handleKeybinds()V' in net.minecraft.client.Minecraft. No refMap loaded. [ -> handler$gfj000$epicfight_handleKeybinds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V -> Parse] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.validateTargets(InjectionInfo.java:656) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.findTargets(InjectionInfo.java:587) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.readAnnotation(InjectionInfo.java:330) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.<init>(InjectionInfo.java:316) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.<init>(InjectionInfo.java:308) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo.<init>(CallbackInjectionInfo.java:46) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at jdk.internal.reflect.GeneratedConstructorAccessor89.newInstance(Unknown Source) ~[?:?] at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo$InjectorEntry.create(InjectionInfo.java:149) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.parse(InjectionInfo.java:708) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinTargetContext.prepareInjections(MixinTargetContext.java:1311) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.prepareInjections(MixinApplicatorStandard.java:1042) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:393) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:325) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:383) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:365) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) ~[modlauncher-10.0.9.jar:10.0.9+10.0.9+main.dcd20f30] at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar:?] at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.10.jar:?] at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?] at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.10.jar:?] at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] at java.lang.Class.getDeclaredMethods0(Native Method) ~[?:?] at java.lang.Class.privateGetDeclaredMethods(Class.java:3402) ~[?:?] at java.lang.Class.privateGetPublicMethods(Class.java:3427) ~[?:?] at java.lang.Class.privateGetPublicMethods(Class.java:3433) ~[?:?] at java.lang.Class.getMethods(Class.java:2019) ~[?:?] at net.minecraftforge.fml.earlydisplay.DisplayWindow.updateModuleReads(DisplayWindow.java:616) ~[fmlearlydisplay-1.20.1-47.4.0.jar:1.0] at net.minecraftforge.fml.loading.ImmediateWindowHandler.acceptGameLayer(ImmediateWindowHandler.java:71) ~[fmlloader-1.20.1-47.4.0.jar:1.0] at net.minecraftforge.fml.loading.FMLLoader.beforeStart(FMLLoader.java:216) ~[fmlloader-1.20.1-47.4.0.jar:1.0] at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.launchService(CommonLaunchHandler.java:92) ~[fmlloader-1.20.1-47.4.0.jar:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] [16May2025 05:34:28.584] [main/FATAL] [mixin/]: Mixin apply failed mixins.epicironcompat.json:MixinRenderItemBase -> yesman.epicfight.client.renderer.patched.item.RenderItemBase: org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException Invalid descriptor on mixins.epicironcompat.json:MixinRenderItemBase->@Inject::onRenderItemInHandStart(Lnet/minecraft/world/item/ItemStack;Lyesman/epicfight/world/capabilities/entitypatch/LivingEntityPatch;Lnet/minecraft/world/InteractionHand;Lyesman/epicfight/model/armature/HumanoidArmature;[Lyesman/epicfight/api/utils/math/OpenMatrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lcom/mojang/blaze3d/vertex/PoseStack;IFLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V! Expected (Lnet/minecraft/world/item/ItemStack;Lyesman/epicfight/world/capabilities/entitypatch/LivingEntityPatch;Lnet/minecraft/world/InteractionHand;[Lyesman/epicfight/api/utils/math/OpenMatrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lcom/mojang/blaze3d/vertex/PoseStack;IFLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V but found (Lnet/minecraft/world/item/ItemStack;Lyesman/epicfight/world/capabilities/entitypatch/LivingEntityPatch;Lnet/minecraft/world/InteractionHand;Lyesman/epicfight/model/armature/HumanoidArmature;[Lyesman/epicfight/api/utils/math/OpenMatrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lcom/mojang/blaze3d/vertex/PoseStack;IFLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V [INJECT Applicator Phase -> mixins.epicironcompat.json:MixinRenderItemBase -> Apply Injections -> -> Inject -> mixins.epicironcompat.json:MixinRenderItemBase->@Inject::onRenderItemInHandStart(Lnet/minecraft/world/item/ItemStack;Lyesman/epicfight/world/capabilities/entitypatch/LivingEntityPatch;Lnet/minecraft/world/InteractionHand;Lyesman/epicfight/model/armature/HumanoidArmature;[Lyesman/epicfight/api/utils/math/OpenMatrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lcom/mojang/blaze3d/vertex/PoseStack;IFLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V] org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException: Invalid descriptor on mixins.epicironcompat.json:MixinRenderItemBase->@Inject::onRenderItemInHandStart(Lnet/minecraft/world/item/ItemStack;Lyesman/epicfight/world/capabilities/entitypatch/LivingEntityPatch;Lnet/minecraft/world/InteractionHand;Lyesman/epicfight/model/armature/HumanoidArmature;[Lyesman/epicfight/api/utils/math/OpenMatrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lcom/mojang/blaze3d/vertex/PoseStack;IFLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V! Expected (Lnet/minecraft/world/item/ItemStack;Lyesman/epicfight/world/capabilities/entitypatch/LivingEntityPatch;Lnet/minecraft/world/InteractionHand;[Lyesman/epicfight/api/utils/math/OpenMatrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lcom/mojang/blaze3d/vertex/PoseStack;IFLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V but found (Lnet/minecraft/world/item/ItemStack;Lyesman/epicfight/world/capabilities/entitypatch/LivingEntityPatch;Lnet/minecraft/world/InteractionHand;Lyesman/epicfight/model/armature/HumanoidArmature;[Lyesman/epicfight/api/utils/math/OpenMatrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lcom/mojang/blaze3d/vertex/PoseStack;IFLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V [INJECT Applicator Phase -> mixins.epicironcompat.json:MixinRenderItemBase -> Apply Injections -> -> Inject -> mixins.epicironcompat.json:MixinRenderItemBase->@Inject::onRenderItemInHandStart(Lnet/minecraft/world/item/ItemStack;Lyesman/epicfight/world/capabilities/entitypatch/LivingEntityPatch;Lnet/minecraft/world/InteractionHand;Lyesman/epicfight/model/armature/HumanoidArmature;[Lyesman/epicfight/api/utils/math/OpenMatrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lcom/mojang/blaze3d/vertex/PoseStack;IFLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V] at org.spongepowered.asm.mixin.injection.callback.CallbackInjector.inject(CallbackInjector.java:517) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.injection.callback.CallbackInjector.inject(CallbackInjector.java:447) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.injection.code.Injector.inject(Injector.java:276) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.inject(InjectionInfo.java:445) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1355) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1051) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:400) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:325) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:383) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:365) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) ~[modlauncher-10.0.9.jar:10.0.9+10.0.9+main.dcd20f30] at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar:?] at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.10.jar:?] at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?] at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.10.jar:?] at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] at net.minecraft.Util.m_137550_(Util.java:1894) ~[client-1.20.1-20230612.114412-srg.jar%23601!/:?] at net.minecraft.client.main.Main.main(Main.java:80) ~[forge-47.4.0.jar:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar:?] at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.0.jar:?] at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.0.jar:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?]  
    • Replace AzureLib with this build: https://www.curseforge.com/minecraft/mc-mods/azurelib/files/6004977
  • Topics

×
×
  • Create New...

Important Information

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