Jump to content

Ticking Entity error


blfngl

Recommended Posts

Hello,

I've come up with a projectile-like entity that will fire in the direction that the player is facing. When fired, it travels perfectly normally but about a half second to two seconds later minecraft crashes.

 

EntityShout

 

package blfngl.skyrim.entity;

import net.minecraft.client.Minecraft;
import net.minecraft.client.particle.EntityReddustFX;
import net.minecraft.entity.Entity;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.src.ModLoader;
import net.minecraft.world.World;

public class EntityShout extends Entity
{
public Minecraft game;
public double radius;

public EntityShout(Entity entity, World world)
{
	super(world);
	game = ModLoader.getMinecraftInstance();
	radius = 0.20000000000000001D;
	setSize(0.0F, 0.0F);
	setLocationAndAngles(entity.posX, entity.posY, entity.posZ, entity.rotationYaw, entity.rotationPitch);
}

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

	for (int i = 0; i < 360; i += 10)
	{
		game.effectRenderer.addEffect(new EntityReddustFX(worldObj, posX + radius * Math.cos(Math.toRadians(rotationYaw)) * Math.cos(Math.toRadians(rotationPitch)) * Math.cos(Math.toRadians(i)), posY + radius * Math.sin(Math.toRadians(i)), posZ + radius * Math.sin(Math.toRadians(rotationYaw)) * Math.cos(Math.toRadians(rotationPitch)) * Math.cos(Math.toRadians(i)), 1.0F, 0.0F, 191F, 255F));
	}

	moveEntity(-Math.sin(Math.toRadians(rotationYaw)) * Math.cos(Math.toRadians(rotationPitch)), -Math.sin(Math.toRadians(rotationPitch)), Math.cos(Math.toRadians(rotationYaw)) * Math.cos(Math.toRadians(rotationPitch)));
	radius += 0.14999999999999999D;

	if (radius > 5D)
	{
		setDead();
	}
}

protected void entityInit()
{

}

/**
 * (abstract) Protected helper method to read subclass entity data from NBT.
 */
protected void readEntityFromNBT(NBTTagCompound nbttagcompound)
{

}

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

}
}

 

 

How it's called

 

package blfngl.skyrim.item;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
import blfngl.skyrim.entity.EntityShout;

public class ItemShout extends BaseItem
{

public ItemShout(int par1)
{
	super(par1);
}

public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
{
	par2World.spawnEntityInWorld(new EntityShout(par3EntityPlayer, par2World));

	return par1ItemStack;
}
}

 

 

The error:

 


      Minecraft has crashed!      
      ----------------------      

Minecraft has stopped running because it encountered a problem; Unexpected error

A full error report has been saved to C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\.\crash-reports\crash-2013-05-26_09.59.39-client.txt - Please include a copy of that file (Not this screen!) if you report this crash to anyone; without it, they will not be able to help fix the crash 



--- BEGIN ERROR REPORT e84d2a88 --------
Full report at:
C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\.\crash-reports\crash-2013-05-26_09.59.39-client.txt
Please show that file to Mojang, NOT just this screen!

Generated 5/26/13 9:59 AM

-- Head --
Stacktrace:
at net.minecraft.entity.Entity.moveEntity(Entity.java:779)
at net.minecraft.client.particle.EntityReddustFX.onUpdate(EntityReddustFX.java:75)
at net.minecraft.client.particle.EffectRenderer.updateEffects(EffectRenderer.java:66)

-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityClientPlayerMP['Player835'/126, l='MpServer', x=783.58, y=66.62, z=1351.04]]
Chunk stats: MultiplayerChunkCache: 440
Level seed: 0
Level generator: ID 00 - default, ver 1. Features enabled: false
Level generator options: 
Level spawn location: World: (96,64,160), Chunk: (at 0,4,0 in 6,10; contains blocks 96,0,160 to 111,255,175), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
Level time: 103560 game time, 8933 day time
Level dimension: 0
Level storage version: 0x00000 - Unknown?
Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
Forced entities: 83 total; [EntityCreeper['Creeper'/275, l='MpServer', x=757.79, y=38.00, z=1416.51], EntitySkeleton['Skeleton'/274, l='MpServer', x=767.50, y=35.00, z=1400.50], EntitySquid['Squid'/273, l='MpServer', x=766.92, y=51.00, z=1375.49], EntitySquid['Squid'/272, l='MpServer', x=757.30, y=51.39, z=1384.85], EntityBat['Bat'/283, l='MpServer', x=775.46, y=15.24, z=1292.22], EntityBat['Bat'/282, l='MpServer', x=772.25, y=15.00, z=1291.25], EntityCreeper['Creeper'/281, l='MpServer', x=766.86, y=15.00, z=1282.57], EntityItem['item.tile.rail'/287, l='MpServer', x=776.56, y=20.13, z=1395.78], EntityItem['item.tile.rail'/286, l='MpServer', x=778.22, y=20.13, z=1396.28], EntityBat['Bat'/285, l='MpServer', x=771.75, y=18.10, z=1391.75], EntitySkeleton['Skeleton'/284, l='MpServer', x=778.16, y=47.00, z=1360.47], EntitySquid['Squid'/258, l='MpServer', x=746.93, y=46.00, z=1389.11], EntityZombie['Zombie'/259, l='MpServer', x=740.16, y=30.00, z=1417.50], EntitySquid['Squid'/256, l='MpServer', x=737.94, y=47.37, z=1378.37], EntitySkeleton['Skeleton'/257, l='MpServer', x=741.90, y=29.00, z=1375.64], EntitySkeleton['Skeleton'/262, l='MpServer', x=741.59, y=31.00, z=1423.80], EntitySkeleton['Skeleton'/263, l='MpServer', x=739.31, y=29.00, z=1418.78], EntityCreeper['Creeper'/260, l='MpServer', x=745.16, y=29.00, z=1416.78], EntityCreeper['Creeper'/261, l='MpServer', x=740.69, y=30.00, z=1416.41], EntityDremora['Dremora'/267, l='MpServer', x=754.75, y=62.10, z=1322.34], EntityBat['Bat'/270, l='MpServer', x=750.22, y=16.00, z=1361.78], EntitySquid['Squid'/271, l='MpServer', x=757.98, y=52.00, z=1393.20], EntityEnderman['Enderman'/268, l='MpServer', x=755.16, y=48.00, z=1355.97], EntityCreeper['Creeper'/269, l='MpServer', x=765.47, y=16.00, z=1363.34], EntityMinecartChest['entity.MinecartChest.name'/305, l='MpServer', x=795.50, y=21.50, z=1417.50], EntitySquid['Squid'/304, l='MpServer', x=793.64, y=56.39, z=1397.34], EntityCreeper['Creeper'/307, l='MpServer', x=794.69, y=39.00, z=1417.31], EntitySkeleton['Skeleton'/306, l='MpServer', x=795.56, y=39.00, z=1416.34], EntitySkeleton['Skeleton'/309, l='MpServer', x=799.13, y=39.00, z=1416.63], EntitySkeleton['Skeleton'/308, l='MpServer', x=796.75, y=38.00, z=1415.69], EntityShout['unknown'/514, l='MpServer', x=788.54, y=73.03, z=1356.89], EntityCreeper['Creeper'/310, l='MpServer', x=797.31, y=38.00, z=1414.88], EntityZombie['Zombie'/288, l='MpServer', x=782.50, y=44.00, z=1420.50], EntitySkeleton['Skeleton'/294, l='MpServer', x=798.22, y=43.00, z=1276.50], EntityZombie['Zombie'/299, l='MpServer', x=798.50, y=44.00, z=1283.50], EntityBat['Bat'/300, l='MpServer', x=802.00, y=37.78, z=1290.93], EntitySpider['Spider'/301, l='MpServer', x=787.72, y=24.60, z=1302.81], EntityZombie['Zombie'/302, l='MpServer', x=785.94, y=29.00, z=1298.44], EntityZombie['Zombie'/303, l='MpServer', x=792.50, y=27.00, z=1313.94], EntityZombie['Zombie'/343, l='MpServer', x=818.45, y=36.63, z=1320.61], EntityZombie['Zombie'/342, l='MpServer', x=820.50, y=36.00, z=1316.50], EntityCreeper['Creeper'/341, l='MpServer', x=817.50, y=20.00, z=1313.31], EntityZombie['Zombie'/340, l='MpServer', x=829.41, y=27.00, z=1305.00], EntityClientPlayerMP['Player835'/126, l='MpServer', x=783.58, y=66.62, z=1351.04], EntityCreeper['Creeper'/336, l='MpServer', x=809.76, y=21.00, z=1421.45], EntityCreeper['Creeper'/351, l='MpServer', x=838.78, y=21.00, z=1286.56], EntitySquid['Squid'/349, l='MpServer', x=827.52, y=49.00, z=1413.93], EntitySpider['Spider'/348, l='MpServer', x=823.50, y=21.00, z=1421.50], EntitySquid['Squid'/347, l='MpServer', x=834.31, y=56.34, z=1380.31], EntityZombie['Zombie'/346, l='MpServer', x=832.13, y=11.00, z=1363.50], EntityCreeper['Creeper'/345, l='MpServer', x=825.63, y=37.00, z=1331.03], EntityCreeper['Creeper'/344, l='MpServer', x=829.56, y=29.00, z=1333.69], EntitySkeleton['Skeleton'/326, l='MpServer', x=803.54, y=32.00, z=1282.94], EntityCreeper['Creeper'/327, l='MpServer', x=800.34, y=44.00, z=1292.97], EntityItem['item.tile.rail'/332, l='MpServer', x=804.13, y=21.13, z=1414.13], EntityItem['item.tile.rail'/330, l='MpServer', x=806.88, y=21.13, z=1414.13], EntitySquid['Squid'/328, l='MpServer', x=812.39, y=54.82, z=1351.49], EntitySquid['Squid'/329, l='MpServer', x=807.65, y=51.30, z=1390.93], EntityCreeper['Creeper'/237, l='MpServer', x=719.97, y=24.00, z=1370.53], EntityBat['Bat'/236, l='MpServer', x=707.32, y=18.07, z=1350.36], EntitySkeleton['Skeleton'/235, l='MpServer', x=706.84, y=17.00, z=1351.47], EntitySkeleton['Skeleton'/234, l='MpServer', x=709.25, y=17.00, z=1352.06], EntityChicken['Chicken'/233, l='MpServer', x=711.50, y=63.00, z=1315.50], EntityZombie['Zombie'/232, l='MpServer', x=704.35, y=23.00, z=1314.53], EntityCreeper['Creeper'/231, l='MpServer', x=707.38, y=27.00, z=1278.00], EntityMinecartChest['entity.MinecartChest.name'/230, l='MpServer', x=712.50, y=29.50, z=1278.50], EntityBat['Bat'/255, l='MpServer', x=737.91, y=16.42, z=1362.38], EntityCreeper['Creeper'/358, l='MpServer', x=854.50, y=13.00, z=1380.50], EntityZombie['Zombie'/359, l='MpServer', x=852.69, y=12.00, z=1382.53], EntityBat['Bat'/352, l='MpServer', x=834.40, y=22.07, z=1360.59], EntityBat['Bat'/354, l='MpServer', x=856.63, y=12.55, z=1286.60], EntityZombie['Zombie'/248, l='MpServer', x=725.03, y=28.00, z=1376.47], EntityArrow['arrow'/249, l='MpServer', x=731.66, y=47.03, z=1414.06], EntityZombie['Zombie'/246, l='MpServer', x=727.42, y=28.00, z=1380.17], EntityZombie['Zombie'/247, l='MpServer', x=722.75, y=28.00, z=1376.56], EntitySquid['Squid'/244, l='MpServer', x=727.90, y=49.30, z=1374.38], EntitySquid['Squid'/245, l='MpServer', x=728.40, y=54.19, z=1372.58], EntitySkeleton['Skeleton'/360, l='MpServer', x=858.50, y=38.00, z=1394.50], EntityBat['Bat'/242, l='MpServer', x=720.25, y=23.10, z=1362.75], EntityBat['Bat'/361, l='MpServer', x=858.50, y=39.10, z=1393.25], EntityCreeper['Creeper'/243, l='MpServer', x=724.13, y=54.00, z=1359.27], EntitySkeleton['Skeleton'/240, l='MpServer', x=723.16, y=13.00, z=1339.53], EntityEnderman['Enderman'/241, l='MpServer', x=728.06, y=15.00, z=1370.47]]
Retry entities: 0 total; []
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:441)
at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2413)
at net.minecraft.client.Minecraft.run(Minecraft.java:782)
at java.lang.Thread.run(Unknown Source)

-- System Details --
Details:
Minecraft Version: 1.5.2
Operating System: Windows 7 (x86) version 6.1
Java Version: 1.7.0_21, Oracle Corporation
Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
Memory: 923763512 bytes (880 MB) / 1060372480 bytes (1011 MB) up to 1060372480 bytes (1011 MB)
JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
AABB Pool Size: 18931 (1060136 bytes; 1 MB) allocated, 2298 (128688 bytes; 0 MB) used
Suspicious classes: FML and Forge are installed
IntCache: cache: 0, tcache: 0, allocated: 3, tallocated: 63
FML: MCP v7.51 FML v5.2.2.684 Minecraft Forge 7.8.0.684 4 mods loaded, 4 mods active
mcp{7.44} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
FML{5.2.2.684} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Forge{7.8.0.684} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
skyrim{MC v1.5.2 | SM v1.0} [The Skyrim Mod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
LWJGL: 2.4.2
OpenGL: AMD Radeon HD 6480G GL version 4.2.11931 Compatibility Profile Context, ATI Technologies Inc.
Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Texture Pack: Default
Profiler Position: N/A (disabled)
Vec3 Pool Size: 10472 (586432 bytes; 0 MB) allocated, 967 (54152 bytes; 0 MB) used

java.lang.NullPointerException
at net.minecraft.entity.Entity.moveEntity(Entity.java:779)
at net.minecraft.client.particle.EntityReddustFX.onUpdate(EntityReddustFX.java:75)
at net.minecraft.client.particle.EffectRenderer.updateEffects(EffectRenderer.java:66)
at net.minecraft.client.Minecraft.runTick(Minecraft.java:1892)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:834)
at net.minecraft.client.Minecraft.run(Minecraft.java:759)
at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT 7c6c4e3 ----------

 

 

Entity Registration:

 

EntityRegistry.registerGlobalEntityID(EntityShout.class, "EntityShout", EntityRegistry.findGlobalUniqueEntityId());

 

FML Log:

 

2013-06-06 12:21:57 [iNFO] [ForgeModLoader] Forge Mod Loader version 5.2.2.684 for Minecraft 1.5.2 loading

2013-06-06 12:21:57 [iNFO] [ForgeModLoader] Java is Java HotSpot Client VM, version 1.7.0_21, running on Windows 7:x86:6.1, installed at C:\Program Files (x86)\Java\jre7

2013-06-06 12:21:57 [FINE] [ForgeModLoader] Java classpath at launch is C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\eclipse\Minecraft\bin;C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\bin\jinput.jar;C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\bin\lwjgl_util.jar;C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\bin\lwjgl.jar;C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\bin\minecraft.jar;C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\lib\argo-3.2-src.jar;C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\lib\bcprov-debug-jdk15on-148.jar;C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\lib\asm-debug-all-4.1.jar;C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\lib\guava-14.0-rc3.jar;C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\lib\scala-library.jar

2013-06-06 12:21:57 [FINE] [ForgeModLoader] Java library path at launch is C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\bin\natives;C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\bin\natives;C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\bin\natives

2013-06-06 12:21:57 [iNFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

2013-06-06 12:21:57 [FINEST] [ForgeModLoader] All core mods are successfully located

2013-06-06 12:21:57 [FINEST] [ForgeModLoader] Discovering coremods

2013-06-06 12:21:57 [FINEST] [ForgeModLoader] Found library file argo-small-3.2.jar present and correct in lib dir

2013-06-06 12:21:58 [FINEST] [ForgeModLoader] Found library file guava-14.0-rc3.jar present and correct in lib dir

2013-06-06 12:21:58 [FINEST] [ForgeModLoader] Found library file asm-all-4.1.jar present and correct in lib dir

2013-06-06 12:21:58 [FINEST] [ForgeModLoader] Found library file bcprov-jdk15on-148.jar present and correct in lib dir

2013-06-06 12:21:58 [FINEST] [ForgeModLoader] Found library file deobfuscation_data_1.5.2.zip present and correct in lib dir

2013-06-06 12:22:00 [FINEST] [ForgeModLoader] Found library file scala-library.jar present and correct in lib dir

2013-06-06 12:22:00 [FINEST] [ForgeModLoader] Running coremod plugins

2013-06-06 12:22:00 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin

2013-06-06 12:22:02 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully

2013-06-06 12:22:02 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin

2013-06-06 12:22:02 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully

2013-06-06 12:22:02 [FINEST] [ForgeModLoader] Validating minecraft

2013-06-06 12:22:03 [FINEST] [ForgeModLoader] Minecraft validated, launching...

2013-06-06 12:22:07 [iNFO] [sTDOUT] 229 recipes

2013-06-06 12:22:07 [iNFO] [sTDOUT] 27 achievements

2013-06-06 12:22:07 [iNFO] [Minecraft-Client] Setting user: Player544

2013-06-06 12:22:07 [iNFO] [sTDOUT] (Session ID is -)

2013-06-06 12:22:07 [iNFO] [sTDERR] Client asked for parameter: server

2013-06-06 12:22:07 [iNFO] [Minecraft-Client] LWJGL Version: 2.4.2

2013-06-06 12:22:09 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization

2013-06-06 12:22:09 [iNFO] [sTDOUT] MinecraftForge v7.8.0.684 Initialized

2013-06-06 12:22:09 [iNFO] [ForgeModLoader] MinecraftForge v7.8.0.684 Initialized

2013-06-06 12:22:09 [iNFO] [sTDOUT] Replaced 85 ore recipies

2013-06-06 12:22:09 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization

2013-06-06 12:22:09 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\config\logging.properties

2013-06-06 12:22:09 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL

2013-06-06 12:22:09 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer]

2013-06-06 12:22:09 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes

2013-06-06 12:22:09 [FINE] [ForgeModLoader] Found a minecraft related directory at C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\eclipse\Minecraft\bin, examining for mod candidates

2013-06-06 12:22:09 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\bin\jinput.jar

2013-06-06 12:22:09 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\bin\lwjgl_util.jar

2013-06-06 12:22:09 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\bin\lwjgl.jar

2013-06-06 12:22:09 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\bin\minecraft.jar, examining for mod candidates

2013-06-06 12:22:09 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\lib\argo-3.2-src.jar, examining for mod candidates

2013-06-06 12:22:09 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\lib\bcprov-debug-jdk15on-148.jar, examining for mod candidates

2013-06-06 12:22:09 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\lib\asm-debug-all-4.1.jar, examining for mod candidates

2013-06-06 12:22:09 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\lib\guava-14.0-rc3.jar

2013-06-06 12:22:09 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\lib\scala-library.jar

2013-06-06 12:22:09 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\lib\argo-small-3.2.jar

2013-06-06 12:22:09 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\lib\guava-14.0-rc3.jar

2013-06-06 12:22:09 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\lib\asm-all-4.1.jar

2013-06-06 12:22:09 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\lib\bcprov-jdk15on-148.jar

2013-06-06 12:22:09 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\lib\deobfuscation_data_1.5.2.zip

2013-06-06 12:22:09 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\lib\scala-library.jar

2013-06-06 12:22:09 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully

2013-06-06 12:22:09 [iNFO] [ForgeModLoader] Searching C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\mods for mods

2013-06-06 12:22:09 [FINE] [ForgeModLoader] Examining directory bin for potential mods

2013-06-06 12:22:09 [FINE] [ForgeModLoader] No mcmod.info file found in directory bin

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package blfngl

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package blfngl.skyrim

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package blfngl.skyrim.armor

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package blfngl.skyrim.block

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package blfngl.skyrim.entity

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package blfngl.skyrim.handler

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package blfngl.skyrim.item

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package blfngl.skyrim.proxy

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package blfngl.skyrim.render

2013-06-06 12:22:09 [FINE] [ForgeModLoader] Identified an FMLMod type mod blfngl.skyrim.Skyrim

2013-06-06 12:22:09 [FINEST] [skyrim] Parsed dependency info : [] [] []

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package blfngl.skyrim.smelter

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package blfngl.skyrim.tab

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package blfngl.skyrim.textures

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client.modloader

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client.registry

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm.transformers

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm.transformers.deobf

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.discovery

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.discovery.asm

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.event

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.functions

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.modloader

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.network

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.registry

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.toposort

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.versioning

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.relauncher

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.server

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package ibxm

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package net

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package net.minecraft

2013-06-06 12:22:09 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.block

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.block.material

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.audio

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.entity

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.entity.render

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.gui

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.gui.achievement

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.gui.inventory

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.mco

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.model

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.multiplayer

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.particle

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.culling

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.entity

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.texture

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.tileentity

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.settings

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.stats

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.texturepacks

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.command

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.crash

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.creativetab

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.dispenser

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.enchantment

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.ai

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.boss

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.effect

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.item

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.monster

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.passive

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.player

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.projectile

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.inventory

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.item

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.item.crafting

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.logging

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.nbt

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.network

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.network.packet

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.network.rcon

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.pathfinding

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.potion

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.profiler

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.scoreboard

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.dedicated

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.gui

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.integrated

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.management

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.src

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.stats

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.tileentity

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.util

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.village

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.biome

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.chunk

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.chunk.storage

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.demo

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen

2013-06-06 12:22:10 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen.feature

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen.layer

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen.structure

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.storage

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.classloading

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.event

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.event.sound

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.model

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.model.obj

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.common

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.brewing

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.item

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.living

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.minecart

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.player

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.terraingen

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.world

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.liquids

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.oredict

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.transformers

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package paulscode

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package paulscode.sound

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package paulscode.sound.codecs

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package textures

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package textures.blocks

2013-06-06 12:22:11 [FINEST] [ForgeModLoader] Recursing into package textures.items

2013-06-06 12:22:11 [FINE] [ForgeModLoader] Examining file minecraft.jar for potential mods

2013-06-06 12:22:11 [FINE] [ForgeModLoader] The mod container minecraft.jar appears to be missing an mcmod.info file

2013-06-06 12:22:11 [FINE] [ForgeModLoader] Examining file argo-3.2-src.jar for potential mods

2013-06-06 12:22:11 [FINE] [ForgeModLoader] The mod container argo-3.2-src.jar appears to be missing an mcmod.info file

2013-06-06 12:22:11 [FINE] [ForgeModLoader] Examining file bcprov-debug-jdk15on-148.jar for potential mods

2013-06-06 12:22:11 [FINE] [ForgeModLoader] The mod container bcprov-debug-jdk15on-148.jar appears to be missing an mcmod.info file

2013-06-06 12:22:12 [FINE] [ForgeModLoader] Examining file asm-debug-all-4.1.jar for potential mods

2013-06-06 12:22:12 [FINE] [ForgeModLoader] The mod container asm-debug-all-4.1.jar appears to be missing an mcmod.info file

2013-06-06 12:22:12 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load

2013-06-06 12:22:12 [FINER] [ForgeModLoader] Received a system property request ''

2013-06-06 12:22:12 [FINER] [ForgeModLoader] System property request managing the state of 0 mods

2013-06-06 12:22:12 [FINE] [ForgeModLoader] After merging, found state information for 0 mods

2013-06-06 12:22:12 [FINE] [ForgeModLoader] Reloading logging properties from C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\config\logging.properties

2013-06-06 12:22:12 [FINE] [ForgeModLoader] Reloaded logging properties

2013-06-06 12:22:12 [FINE] [mcp] Mod Logging channel mcp configured at default level.

2013-06-06 12:22:12 [iNFO] [mcp] Activating mod mcp

2013-06-06 12:22:12 [FINE] [FML] Mod Logging channel FML configured at default level.

2013-06-06 12:22:12 [iNFO] [FML] Activating mod FML

2013-06-06 12:22:12 [FINE] [Forge] Mod Logging channel Forge configured at default level.

2013-06-06 12:22:12 [iNFO] [Forge] Activating mod Forge

2013-06-06 12:22:12 [FINE] [skyrim] Enabling mod skyrim

2013-06-06 12:22:12 [FINE] [skyrim] Mod Logging channel skyrim configured at default level.

2013-06-06 12:22:12 [iNFO] [skyrim] Activating mod skyrim

2013-06-06 12:22:12 [FINER] [ForgeModLoader] Verifying mod requirements are satisfied

2013-06-06 12:22:12 [FINER] [ForgeModLoader] All mod requirements are satisfied

2013-06-06 12:22:12 [FINER] [ForgeModLoader] Sorting mods into an ordered list

2013-06-06 12:22:12 [FINER] [ForgeModLoader] Mod sorting completed successfully

2013-06-06 12:22:12 [FINE] [ForgeModLoader] Mod sorting data

2013-06-06 12:22:12 [FINE] [ForgeModLoader] skyrim(The Skyrim Mod:MC v1.5.2 | SM v1.0.4): bin ()

2013-06-06 12:22:12 [FINEST] [mcp] Sending event FMLConstructionEvent to mod mcp

2013-06-06 12:22:12 [FINEST] [mcp] Sent event FMLConstructionEvent to mod mcp

2013-06-06 12:22:12 [FINEST] [FML] Sending event FMLConstructionEvent to mod FML

2013-06-06 12:22:12 [FINEST] [FML] Sent event FMLConstructionEvent to mod FML

2013-06-06 12:22:12 [FINEST] [Forge] Sending event FMLConstructionEvent to mod Forge

2013-06-06 12:22:12 [FINEST] [Forge] Sent event FMLConstructionEvent to mod Forge

2013-06-06 12:22:12 [FINEST] [skyrim] Sending event FMLConstructionEvent to mod skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11256) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11257) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11258) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11259) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11260) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11261) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11262) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11263) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11264) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11265) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11266) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11267) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11268) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11269) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11270) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11271) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11272) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11273) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11274) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11275) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11276) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11277) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11278) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11279) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11280) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11281) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11282) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11283) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11284) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11285) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11286) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11287) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11288) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11289) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11290) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorDwarven(11291) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorDwarven(11292) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorDwarven(11293) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorDwarven(11294) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorDaedric(11295) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorDaedric(11296) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorDaedric(11297) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorDaedric(11298) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorGlass(11299) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorGlass(11300) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorGlass(11301) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorGlass(11302) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorEbony(11303) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorEbony(11304) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorEbony(11305) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorEbony(11306) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11307) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11308) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11309) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11310) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11311) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.ItemSkyrimBow(11312) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11313) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11314) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11315) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11316) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11317) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11318) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11319) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11320) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11321) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11322) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseItem(11323) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseFood(11324) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseFood(11325) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseFood(11326) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseFood(11327) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseFood(11328) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11329) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11330) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11331) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11332) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11333) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11334) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.BaseSword(11335) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorOrcish(11336) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorOrcish(11337) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorOrcish(11338) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.armor.ArmorOrcish(11339) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.ItemWabbajack(11340) owned by skyrim

2013-06-06 12:22:12 [FINE] [fml.ItemTracker] Adding item blfngl.skyrim.item.ItemShout(11341) owned by skyrim

2013-06-06 12:22:12 [FINEST] [ForgeModLoader] Testing mod skyrim to verify it accepts its own version in a remote connection

2013-06-06 12:22:12 [FINEST] [ForgeModLoader] The mod skyrim accepts its own version (MC v1.5.2 | SM v1.0.4)

2013-06-06 12:22:12 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into skyrim

2013-06-06 12:22:12 [FINEST] [skyrim] Sent event FMLConstructionEvent to mod skyrim

2013-06-06 12:22:12 [FINE] [ForgeModLoader] Mod signature data

2013-06-06 12:22:12 [FINE] [ForgeModLoader] mcp(Minecraft Coder Pack:7.44): minecraft.jar (NO VALID CERTIFICATE FOUND)

2013-06-06 12:22:12 [FINE] [ForgeModLoader] FML(Forge Mod Loader:5.2.2.684): coremods (NO VALID CERTIFICATE FOUND)

2013-06-06 12:22:12 [FINE] [ForgeModLoader] Forge(Minecraft Forge:7.8.0.684): coremods (NO VALID CERTIFICATE FOUND)

2013-06-06 12:22:12 [FINE] [ForgeModLoader] skyrim(The Skyrim Mod:MC v1.5.2 | SM v1.0.4): bin (NO VALID CERTIFICATE FOUND)

2013-06-06 12:22:12 [FINEST] [mcp] Sending event FMLPreInitializationEvent to mod mcp

2013-06-06 12:22:12 [FINEST] [mcp] Sent event FMLPreInitializationEvent to mod mcp

2013-06-06 12:22:12 [FINEST] [FML] Sending event FMLPreInitializationEvent to mod FML

2013-06-06 12:22:12 [FINEST] [FML] Sent event FMLPreInitializationEvent to mod FML

2013-06-06 12:22:12 [FINEST] [Forge] Sending event FMLPreInitializationEvent to mod Forge

2013-06-06 12:22:12 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0

2013-06-06 12:22:12 [FINEST] [Forge] Sent event FMLPreInitializationEvent to mod Forge

2013-06-06 12:22:12 [FINEST] [skyrim] Sending event FMLPreInitializationEvent to mod skyrim

2013-06-06 12:22:12 [iNFO] [sTDOUT] Blfngl's Skyrim Mod Loaded. BY AKATOSH YES.

2013-06-06 12:22:12 [FINEST] [skyrim] Sent event FMLPreInitializationEvent to mod skyrim

2013-06-06 12:22:13 [iNFO] [sTDOUT]

2013-06-06 12:22:13 [iNFO] [sTDOUT] Starting up SoundSystem...

2013-06-06 12:22:13 [iNFO] [sTDOUT] Initializing LWJGL OpenAL

2013-06-06 12:22:13 [iNFO] [sTDOUT]    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

2013-06-06 12:22:15 [iNFO] [sTDOUT] OpenAL initialized.

2013-06-06 12:22:15 [iNFO] [sTDOUT]

2013-06-06 12:22:16 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/blfngl/textures/blocks/smelterTop.png, but that file does not exist. Ignoring.

2013-06-06 12:22:16 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/blfngl/textures/blocks/smelterFront.png, but that file does not exist. Ignoring.

2013-06-06 12:22:17 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/blfngl/textures/blocks/smelterActive.png, but that file does not exist. Ignoring.

2013-06-06 12:22:17 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/blfngl/textures/blocks/smelter.png, but that file does not exist. Ignoring.

2013-06-06 12:22:17 [iNFO] [sTDERR] java.lang.NoSuchFieldException: GL_ARB_copy_image

2013-06-06 12:22:17 [iNFO] [sTDERR] at java.lang.Class.getField(Unknown Source)

2013-06-06 12:22:17 [iNFO] [sTDERR] at cpw.mods.fml.client.TextureFXManager.getHelper(TextureFXManager.java:122)

2013-06-06 12:22:17 [iNFO] [sTDERR] at net.minecraft.client.renderer.texture.TextureStitched.init(TextureStitched.java:74)

2013-06-06 12:22:17 [iNFO] [sTDERR] at net.minecraft.client.renderer.texture.TextureMap.refreshTextures(TextureMap.java:154)

2013-06-06 12:22:17 [iNFO] [sTDERR] at net.minecraft.client.renderer.RenderEngine.refreshTextureMaps(RenderEngine.java:520)

2013-06-06 12:22:17 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.startGame(Minecraft.java:443)

2013-06-06 12:22:17 [iNFO] [sTDERR] at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44)

2013-06-06 12:22:17 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:732)

2013-06-06 12:22:17 [iNFO] [sTDERR] at java.lang.Thread.run(Unknown Source)

2013-06-06 12:22:17 [iNFO] [ForgeModLoader] Forge Mod Loader has detected an older LWJGL version, new advanced texture animation features are disabled

2013-06-06 12:22:17 [iNFO] [ForgeModLoader] Not using advanced OpenGL 4.3 advanced capability for animations : OpenGL 4.3 is not available

2013-06-06 12:22:17 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava_flow.txt

2013-06-06 12:22:17 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water_flow.txt

2013-06-06 12:22:17 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_0.txt

2013-06-06 12:22:17 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_1.txt

2013-06-06 12:22:17 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava.txt

2013-06-06 12:22:17 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/portal.txt

2013-06-06 12:22:17 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water.txt

2013-06-06 12:22:19 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/items/Wabbajack.png, but that file does not exist. Ignoring.

2013-06-06 12:22:19 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/items/Shout.png, but that file does not exist. Ignoring.

2013-06-06 12:22:22 [iNFO] [Minecraft-Client] Found animation info for: textures/items/clock.txt

2013-06-06 12:22:22 [iNFO] [Minecraft-Client] Found animation info for: textures/items/compass.txt

2013-06-06 12:22:22 [FINEST] [mcp] Sending event FMLInitializationEvent to mod mcp

2013-06-06 12:22:22 [FINEST] [mcp] Sent event FMLInitializationEvent to mod mcp

2013-06-06 12:22:22 [FINEST] [FML] Sending event FMLInitializationEvent to mod FML

2013-06-06 12:22:22 [FINEST] [FML] Sent event FMLInitializationEvent to mod FML

2013-06-06 12:22:22 [FINEST] [Forge] Sending event FMLInitializationEvent to mod Forge

2013-06-06 12:22:22 [FINEST] [Forge] Sent event FMLInitializationEvent to mod Forge

2013-06-06 12:22:22 [FINEST] [skyrim] Sending event FMLInitializationEvent to mod skyrim

2013-06-06 12:22:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(190) owned by skyrim

2013-06-06 12:22:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(191) owned by skyrim

2013-06-06 12:22:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(194) owned by skyrim

2013-06-06 12:22:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(193) owned by skyrim

2013-06-06 12:22:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(196) owned by skyrim

2013-06-06 12:22:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(195) owned by skyrim

2013-06-06 12:22:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(192) owned by skyrim

2013-06-06 12:22:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(197) owned by skyrim

2013-06-06 12:22:22 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(198) owned by skyrim

2013-06-06 12:22:22 [FINEST] [skyrim] Sent event FMLInitializationEvent to mod skyrim

2013-06-06 12:22:22 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod mcp

2013-06-06 12:22:22 [FINEST] [mcp] Sending event IMCEvent to mod mcp

2013-06-06 12:22:22 [FINEST] [mcp] Sent event IMCEvent to mod mcp

2013-06-06 12:22:22 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod FML

2013-06-06 12:22:22 [FINEST] [FML] Sending event IMCEvent to mod FML

2013-06-06 12:22:22 [FINEST] [FML] Sent event IMCEvent to mod FML

2013-06-06 12:22:22 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod Forge

2013-06-06 12:22:22 [FINEST] [Forge] Sending event IMCEvent to mod Forge

2013-06-06 12:22:22 [FINEST] [Forge] Sent event IMCEvent to mod Forge

2013-06-06 12:22:22 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod skyrim

2013-06-06 12:22:22 [FINEST] [skyrim] Sending event IMCEvent to mod skyrim

2013-06-06 12:22:22 [FINEST] [skyrim] Sent event IMCEvent to mod skyrim

2013-06-06 12:22:22 [FINEST] [mcp] Sending event FMLPostInitializationEvent to mod mcp

2013-06-06 12:22:22 [FINEST] [mcp] Sent event FMLPostInitializationEvent to mod mcp

2013-06-06 12:22:22 [FINEST] [FML] Sending event FMLPostInitializationEvent to mod FML

2013-06-06 12:22:22 [FINEST] [FML] Sent event FMLPostInitializationEvent to mod FML

2013-06-06 12:22:22 [FINEST] [Forge] Sending event FMLPostInitializationEvent to mod Forge

2013-06-06 12:22:22 [FINEST] [Forge] Sent event FMLPostInitializationEvent to mod Forge

2013-06-06 12:22:22 [FINEST] [skyrim] Sending event FMLPostInitializationEvent to mod skyrim

2013-06-06 12:22:22 [FINEST] [skyrim] Sent event FMLPostInitializationEvent to mod skyrim

2013-06-06 12:22:22 [FINEST] [mcp] Sending event FMLLoadCompleteEvent to mod mcp

2013-06-06 12:22:22 [FINEST] [mcp] Sent event FMLLoadCompleteEvent to mod mcp

2013-06-06 12:22:22 [FINEST] [FML] Sending event FMLLoadCompleteEvent to mod FML

2013-06-06 12:22:22 [FINEST] [FML] Sent event FMLLoadCompleteEvent to mod FML

2013-06-06 12:22:22 [FINEST] [Forge] Sending event FMLLoadCompleteEvent to mod Forge

2013-06-06 12:22:22 [FINEST] [Forge] Sent event FMLLoadCompleteEvent to mod Forge

2013-06-06 12:22:22 [FINEST] [skyrim] Sending event FMLLoadCompleteEvent to mod skyrim

2013-06-06 12:22:22 [FINEST] [skyrim] Sent event FMLLoadCompleteEvent to mod skyrim

2013-06-06 12:22:22 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 4 mods

2013-06-06 12:22:22 [iNFO] [sTDERR] java.io.FileNotFoundException: http://assets.minecraft.net/1_6_has_been_released.flag

2013-06-06 12:22:22 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)

2013-06-06 12:22:22 [iNFO] [sTDERR] at net.minecraft.util.HttpUtil.func_104145_a(HttpUtil.java:230)

2013-06-06 12:22:22 [iNFO] [sTDERR] at net.minecraft.client.gui.RunnableTitleScreen.run(RunnableTitleScreen.java:23)

2013-06-06 12:22:22 [iNFO] [sTDERR] at java.lang.Thread.run(Unknown Source)

2013-06-06 12:22:23 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/blfngl/textures/blocks/smelterTop.png, but that file does not exist. Ignoring.

2013-06-06 12:22:23 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/blfngl/textures/blocks/smelterFront.png, but that file does not exist. Ignoring.

2013-06-06 12:22:24 [iNFO] [sTDERR] java.io.IOException: Server returned HTTP response code: 503 for URL: http://s3.amazonaws.com/MinecraftResources/

2013-06-06 12:22:24 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)

2013-06-06 12:22:24 [iNFO] [sTDERR] at net.minecraft.util.ThreadDownloadResources.run(ThreadDownloadResources.java:57)

2013-06-06 12:22:24 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/blfngl/textures/blocks/smelterActive.png, but that file does not exist. Ignoring.

2013-06-06 12:22:24 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/blfngl/textures/blocks/smelter.png, but that file does not exist. Ignoring.

2013-06-06 12:22:24 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava_flow.txt

2013-06-06 12:22:24 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water_flow.txt

2013-06-06 12:22:24 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_0.txt

2013-06-06 12:22:24 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_1.txt

2013-06-06 12:22:24 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava.txt

2013-06-06 12:22:24 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/portal.txt

2013-06-06 12:22:24 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water.txt

2013-06-06 12:22:26 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/items/Wabbajack.png, but that file does not exist. Ignoring.

2013-06-06 12:22:26 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/items/Shout.png, but that file does not exist. Ignoring.

2013-06-06 12:22:29 [iNFO] [Minecraft-Client] Found animation info for: textures/items/clock.txt

2013-06-06 12:22:29 [iNFO] [Minecraft-Client] Found animation info for: textures/items/compass.txt

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting level MCP Test World

2013-06-06 12:24:04 [iNFO] [sTDOUT] Attempt 1...

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\data

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\data\villages.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\DIM-1

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\DIM-1\data

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\DIM-1\forcedchunks.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\DIM1

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\DIM1\data

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\DIM1\forcedchunks.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\forcedchunks.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\level.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\level.dat_mcr

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\level.dat_old

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player0.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player1.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player120.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player125.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player129.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player152.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player176.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player182.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player187.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player192.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player194.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player220.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player237.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player241.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player260.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player262.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player291.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player305.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player332.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player351.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player362.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player368.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player37.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player371.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player374.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player379.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player381.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player388.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player394.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player419.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player43.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player446.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player455.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player46.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player460.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player461.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player462.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player463.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player468.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player477.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player493.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player515.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player518.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player519.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player536.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player540.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player542.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player543.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player547.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player566.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player568.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player587.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player597.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player599.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player602.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player603.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player62.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player634.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player652.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player664.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player673.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player681.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player685.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player689.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player710.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player744.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player748.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player762.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player769.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player770.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player808.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player822.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player827.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player833.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player835.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player837.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player840.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player863.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player89.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player897.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player900.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player912.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player913.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player931.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player939.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player941.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player943.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player951.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player957.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player964.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player97.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\players\Player975.dat

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\region

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\region\r.-1.-1.mca

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\region\r.-1.0.mca

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\region\r.-1.1.mca

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\region\r.-1.2.mca

2013-06-06 12:24:04 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\region\r.0.-1.mca

2013-06-06 12:24:05 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\region\r.0.0.mca

2013-06-06 12:24:05 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\region\r.0.1.mca

2013-06-06 12:24:05 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\region\r.0.2.mca

2013-06-06 12:24:05 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\region\r.1.2.mca

2013-06-06 12:24:05 [iNFO] [sTDOUT] Deleting .\saves\MCP Test World\session.lock

2013-06-06 12:24:17 [iNFO] [sTDERR] java.io.FileNotFoundException: http://assets.minecraft.net/1_6_has_been_released.flag

2013-06-06 12:24:17 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)

2013-06-06 12:24:17 [iNFO] [sTDERR] at net.minecraft.util.HttpUtil.func_104145_a(HttpUtil.java:230)

2013-06-06 12:24:17 [iNFO] [sTDERR] at net.minecraft.client.gui.RunnableTitleScreen.run(RunnableTitleScreen.java:23)

2013-06-06 12:24:17 [iNFO] [sTDERR] at java.lang.Thread.run(Unknown Source)

2013-06-06 12:24:18 [iNFO] [Minecraft-Server] Starting integrated minecraft server version 1.5.2

2013-06-06 12:24:18 [iNFO] [Minecraft-Server] Generating keypair

2013-06-06 12:24:19 [FINEST] [mcp] Sending event FMLServerAboutToStartEvent to mod mcp

2013-06-06 12:24:19 [FINEST] [mcp] Sent event FMLServerAboutToStartEvent to mod mcp

2013-06-06 12:24:19 [FINEST] [FML] Sending event FMLServerAboutToStartEvent to mod FML

2013-06-06 12:24:19 [FINEST] [FML] Sent event FMLServerAboutToStartEvent to mod FML

2013-06-06 12:24:19 [FINEST] [Forge] Sending event FMLServerAboutToStartEvent to mod Forge

2013-06-06 12:24:19 [FINEST] [Forge] Sent event FMLServerAboutToStartEvent to mod Forge

2013-06-06 12:24:19 [FINEST] [skyrim] Sending event FMLServerAboutToStartEvent to mod skyrim

2013-06-06 12:24:19 [FINEST] [skyrim] Sent event FMLServerAboutToStartEvent to mod skyrim

2013-06-06 12:24:19 [iNFO] [Minecraft-Server] Converting map!

2013-06-06 12:24:19 [iNFO] [Minecraft-Server] Scanning folders...

2013-06-06 12:24:19 [iNFO] [Minecraft-Server] Total conversion count is 0

2013-06-06 12:24:20 [FINE] [fml.ItemTracker] The difference set is equal

2013-06-06 12:24:20 [WARNING] [Minecraft-Server] Unable to find spawn biome

2013-06-06 12:24:28 [iNFO] [ForgeModLoader] Loading dimension 0 (MCP Test World) (net.minecraft.server.integrated.IntegratedServer@95066)

2013-06-06 12:24:28 [iNFO] [ForgeModLoader] Loading dimension 1 (MCP Test World) (net.minecraft.server.integrated.IntegratedServer@95066)

2013-06-06 12:24:28 [iNFO] [ForgeModLoader] Loading dimension -1 (MCP Test World) (net.minecraft.server.integrated.IntegratedServer@95066)

2013-06-06 12:24:28 [iNFO] [Minecraft-Server] Preparing start region for level 0

2013-06-06 12:24:29 [iNFO] [Minecraft-Server] Preparing spawn area: 7%

2013-06-06 12:24:30 [iNFO] [Minecraft-Server] Preparing spawn area: 14%

2013-06-06 12:24:31 [iNFO] [Minecraft-Server] Preparing spawn area: 21%

2013-06-06 12:24:32 [iNFO] [Minecraft-Server] Preparing spawn area: 28%

2013-06-06 12:24:33 [iNFO] [Minecraft-Server] Preparing spawn area: 35%

2013-06-06 12:24:34 [iNFO] [Minecraft-Server] Preparing spawn area: 40%

2013-06-06 12:24:35 [iNFO] [Minecraft-Server] Preparing spawn area: 48%

2013-06-06 12:24:36 [iNFO] [Minecraft-Server] Preparing spawn area: 55%

2013-06-06 12:24:37 [iNFO] [Minecraft-Server] Preparing spawn area: 63%

2013-06-06 12:24:38 [iNFO] [Minecraft-Server] Preparing spawn area: 70%

2013-06-06 12:24:39 [iNFO] [Minecraft-Server] Preparing spawn area: 79%

2013-06-06 12:24:40 [iNFO] [Minecraft-Server] Preparing spawn area: 88%

2013-06-06 12:24:41 [iNFO] [Minecraft-Server] Preparing spawn area: 94%

2013-06-06 12:24:41 [FINEST] [mcp] Sending event FMLServerStartingEvent to mod mcp

2013-06-06 12:24:41 [FINEST] [mcp] Sent event FMLServerStartingEvent to mod mcp

2013-06-06 12:24:41 [FINEST] [FML] Sending event FMLServerStartingEvent to mod FML

2013-06-06 12:24:41 [FINEST] [FML] Sent event FMLServerStartingEvent to mod FML

2013-06-06 12:24:41 [FINEST] [Forge] Sending event FMLServerStartingEvent to mod Forge

2013-06-06 12:24:41 [FINEST] [Forge] Sent event FMLServerStartingEvent to mod Forge

2013-06-06 12:24:41 [FINEST] [skyrim] Sending event FMLServerStartingEvent to mod skyrim

2013-06-06 12:24:41 [FINEST] [skyrim] Sent event FMLServerStartingEvent to mod skyrim

2013-06-06 12:24:41 [FINEST] [mcp] Sending event FMLServerStartedEvent to mod mcp

2013-06-06 12:24:41 [FINEST] [mcp] Sent event FMLServerStartedEvent to mod mcp

2013-06-06 12:24:41 [FINEST] [FML] Sending event FMLServerStartedEvent to mod FML

2013-06-06 12:24:41 [FINEST] [FML] Sent event FMLServerStartedEvent to mod FML

2013-06-06 12:24:41 [FINEST] [Forge] Sending event FMLServerStartedEvent to mod Forge

2013-06-06 12:24:41 [FINEST] [Forge] Sent event FMLServerStartedEvent to mod Forge

2013-06-06 12:24:41 [FINEST] [skyrim] Sending event FMLServerStartedEvent to mod skyrim

2013-06-06 12:24:41 [FINEST] [skyrim] Sent event FMLServerStartedEvent to mod skyrim

2013-06-06 12:24:42 [iNFO] [sTDERR] java.io.FileNotFoundException: http://assets.minecraft.net/1_6_has_been_released.flag

2013-06-06 12:24:42 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)

2013-06-06 12:24:42 [iNFO] [sTDERR] at net.minecraft.util.HttpUtil.func_104145_a(HttpUtil.java:230)

2013-06-06 12:24:42 [iNFO] [sTDERR] at net.minecraft.client.gui.RunnableTitleScreen.run(RunnableTitleScreen.java:23)

2013-06-06 12:24:42 [iNFO] [sTDERR] at java.lang.Thread.run(Unknown Source)

2013-06-06 12:24:42 [iNFO] [Minecraft-Server] Player544[/127.0.0.1:0] logged in with entity id 117 at (-784.5, 66.0, -618.5)

2013-06-06 12:24:45 [iNFO] [Minecraft-Server] Saving and pausing game...

2013-06-06 12:24:45 [iNFO] [Minecraft-Server] Saving chunks for level 'MCP Test World'/Overworld

2013-06-06 12:25:26 [iNFO] [Minecraft-Server] Saving chunks for level 'MCP Test World'/Nether

2013-06-06 12:25:26 [iNFO] [Minecraft-Server] Saving chunks for level 'MCP Test World'/The End

2013-06-06 12:25:26 [WARNING] [Minecraft-Server] Can't keep up! Did the system time change, or is the server overloaded?

2013-06-06 12:25:33 [iNFO] [Minecraft-Server] [Player544: Set the time to 20000]

2013-06-06 12:25:33 [iNFO] [Minecraft-Client] [CHAT] Set the time to 20000

2013-06-06 12:25:37 [WARNING] [Minecraft-Server] Can't keep up! Did the system time change, or is the server overloaded?

2013-06-06 12:25:37 [iNFO] [sTDERR] net.minecraft.util.ReportedException: Ticking entity

2013-06-06 12:25:37 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:658)

2013-06-06 12:25:37 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:571)

2013-06-06 12:25:37 [iNFO] [sTDERR] at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127)

2013-06-06 12:25:37 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:469)

2013-06-06 12:25:37 [iNFO] [sTDERR] at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)

2013-06-06 12:25:37 [iNFO] [sTDERR] Caused by: java.lang.NullPointerException

2013-06-06 12:25:37 [iNFO] [sTDERR] at net.minecraft.entity.Entity.moveEntity(Entity.java:762)

2013-06-06 12:25:37 [iNFO] [sTDERR] at net.minecraft.entity.passive.EntitySquid.moveEntityWithHeading(EntitySquid.java:189)

2013-06-06 12:25:37 [iNFO] [sTDERR] at net.minecraft.entity.EntityLiving.onLivingUpdate(EntityLiving.java:1877)

2013-06-06 12:25:37 [iNFO] [sTDERR] at net.minecraft.entity.passive.EntitySquid.onLivingUpdate(EntitySquid.java:112)

2013-06-06 12:25:37 [iNFO] [sTDERR] at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:858)

2013-06-06 12:25:37 [iNFO] [sTDERR] at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2337)

2013-06-06 12:25:37 [iNFO] [sTDERR] at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:717)

2013-06-06 12:25:37 [iNFO] [sTDERR] at net.minecraft.world.World.updateEntity(World.java:2299)

2013-06-06 12:25:37 [iNFO] [sTDERR] at net.minecraft.world.World.updateEntities(World.java:2145)

2013-06-06 12:25:37 [iNFO] [sTDERR] at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:546)

2013-06-06 12:25:37 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:652)

2013-06-06 12:25:37 [iNFO] [sTDERR] ... 4 more

2013-06-06 12:25:37 [sEVERE] [Minecraft-Server] Encountered an unexpected exception ReportedException

net.minecraft.util.ReportedException: Ticking entity

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:658)

at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:571)

at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127)

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:469)

at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)

Caused by: java.lang.NullPointerException

at net.minecraft.entity.Entity.moveEntity(Entity.java:762)

at net.minecraft.entity.passive.EntitySquid.moveEntityWithHeading(EntitySquid.java:189)

at net.minecraft.entity.EntityLiving.onLivingUpdate(EntityLiving.java:1877)

at net.minecraft.entity.passive.EntitySquid.onLivingUpdate(EntitySquid.java:112)

at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:858)

at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2337)

at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:717)

at net.minecraft.world.World.updateEntity(World.java:2299)

at net.minecraft.world.World.updateEntities(World.java:2145)

at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:546)

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:652)

... 4 more

2013-06-06 12:25:37 [sEVERE] [Minecraft-Server] This crash report has been saved to: C:\Users\Nick\Documents\Games\Minecraft\Blf's Mods\[1.5.2]The Skyrim Mod\jars\.\crash-reports\crash-2013-06-06_12.25.37-server.txt

2013-06-06 12:25:37 [iNFO] [Minecraft-Server] Stopping server

2013-06-06 12:25:37 [iNFO] [Minecraft-Server] Saving players

2013-06-06 12:25:37 [iNFO] [Minecraft-Server] Saving worlds

2013-06-06 12:25:37 [iNFO] [Minecraft-Server] Saving chunks for level 'MCP Test World'/Overworld

2013-06-06 12:25:44 [iNFO] [Minecraft-Server] Saving chunks for level 'MCP Test World'/Nether

2013-06-06 12:25:44 [iNFO] [Minecraft-Server] Saving chunks for level 'MCP Test World'/The End

2013-06-06 12:25:48 [iNFO] [Minecraft-Client] Stopping!

2013-06-06 12:25:48 [iNFO] [sTDOUT]

2013-06-06 12:25:48 [iNFO] [sTDOUT] SoundSystem shutting down...

2013-06-06 12:25:48 [iNFO] [sTDOUT]    Author: Paul Lamb, www.paulscode.com

2013-06-06 12:25:48 [iNFO] [sTDOUT]

2013-06-06 12:25:55 [iNFO] [ForgeModLoader] Unloading dimension 0

2013-06-06 12:25:55 [iNFO] [ForgeModLoader] Unloading dimension -1

2013-06-06 12:25:55 [iNFO] [ForgeModLoader] Unloading dimension 1

2013-06-06 12:25:55 [FINEST] [mcp] Sending event FMLServerStoppedEvent to mod mcp

2013-06-06 12:25:55 [FINEST] [mcp] Sent event FMLServerStoppedEvent to mod mcp

2013-06-06 12:25:55 [FINEST] [FML] Sending event FMLServerStoppedEvent to mod FML

2013-06-06 12:25:55 [FINEST] [FML] Sent event FMLServerStoppedEvent to mod FML

2013-06-06 12:25:55 [FINEST] [Forge] Sending event FMLServerStoppedEvent to mod Forge

2013-06-06 12:25:55 [FINEST] [Forge] Sent event FMLServerStoppedEvent to mod Forge

2013-06-06 12:25:55 [FINEST] [skyrim] Sending event FMLServerStoppedEvent to mod skyrim

2013-06-06 12:25:55 [FINEST] [skyrim] Sent event FMLServerStoppedEvent to mod skyrim

2013-06-06 12:25:55 [sEVERE] [ForgeModLoader] Fatal errors were detected during the transition from SERVER_STARTED to SERVER_STOPPED. Loading cannot continue

2013-06-06 12:25:55 [sEVERE] [ForgeModLoader]

mcp{7.44} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available

FML{5.2.2.684} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available

Forge{7.8.0.684} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available

skyrim{MC v1.5.2 | SM v1.0.4} [The Skyrim Mod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available

2013-06-06 12:25:55 [sEVERE] [ForgeModLoader] The ForgeModLoader state engine has become corrupted. Probably, a state was missed by and invalid modification to a base classForgeModLoader depends on. This is a critical error and not recoverable. Investigate any modifications to base classes outside ofForgeModLoader, especially Optifine, to see if there are fixes available.

2013-06-06 12:25:55 [iNFO] [sTDERR] Exception in thread "Server thread" java.lang.RuntimeException: The ForgeModLoader state engine is invalid

2013-06-06 12:25:55 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.transition(LoadController.java:134)

2013-06-06 12:25:55 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.serverStopped(Loader.java:800)

2013-06-06 12:25:55 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLCommonHandler.handleServerStopped(FMLCommonHandler.java:468)

2013-06-06 12:25:55 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:531)

2013-06-06 12:25:55 [iNFO] [sTDERR] at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)

 

Link to comment
Share on other sites

I don't think that would work, mainly because of what the entity looks like. If you've played skyrim, it pretty much looks like a fus, a circle of blue redstone dust particles. Also, the spawn happens in the onUpdate() method, where there is no world parameter.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • My game crash before main screen load crash log: ---- Minecraft Crash Report ---- // I let you down. Sorry Time: 04.05.2024, 11:48 Description: Initializing game org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered     at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) ~[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-9.1.3.jar:9.1.3+9.1.3+main.9b69c82a] {}     at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-9.1.3.jar:?] {}     at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-9.1.3.jar:?] {}     at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-9.1.3.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-1.0.8.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-1.0.8.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-1.0.8.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-1.0.8.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-1.0.8.jar:?] {}     at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?] {}     at net.minecraft.client.renderer.block.BlockRenderDispatcher.<init>(BlockRenderDispatcher.java:50) ~[client-1.18.2-20220404.173914-srg.jar%2390!/:?] {re:classloading,xf:OptiFine:default}     at net.minecraft.client.Minecraft.<init>(Minecraft.java:501) ~[client-1.18.2-20220404.173914-srg.jar%2390!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:169) ~[client-1.18.2-20220404.173914-srg.jar%2390!/:?] {re:classloading,pl:runtimedistcleaner:A}     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.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.2.21.jar%2318!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {} Caused by: org.spongepowered.asm.mixin.throwables.MixinApplyError: Mixin [valhelsia_structures.mixins.json:BlockModelRendererMixin] from phase [DEFAULT] in config [valhelsia_structures.mixins.json] FAILED during APPLY     at org.spongepowered.asm.mixin.transformer.MixinProcessor.handleMixinError(MixinProcessor.java:636) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.transformer.MixinProcessor.handleMixinApplyError(MixinProcessor.java:588) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:379) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     ... 29 more Caused by: org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException: Critical injection failure: @ModifyVariable annotation on valhelsia_renderModelFaceFlat could not find any targets matching 'Lnet/minecraft/client/renderer/block/ModelBlockRenderer;m_111001_(Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;IIZLcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Ljava/util/List;Ljava/util/BitSet;)V' in net.minecraft.client.renderer.block.ModelBlockRenderer. Using refmap valhelsia_structures.refmap.json [PREINJECT Applicator Phase -> valhelsia_structures.mixins.json:BlockModelRendererMixin -> Prepare Injections ->  -> localvar$zbg000$valhelsia_renderModelFaceFlat(ILnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)I -> 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.ModifyVariableInjectionInfo.<init>(ModifyVariableInjectionInfo.java:45) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}     at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}     at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}     at org.spongepowered.asm.mixin.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] {}     ... 29 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Stacktrace:     at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) ~[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-9.1.3.jar:9.1.3+9.1.3+main.9b69c82a] {}     at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-9.1.3.jar:?] {}     at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-9.1.3.jar:?] {}     at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-9.1.3.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-1.0.8.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-1.0.8.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-1.0.8.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-1.0.8.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-1.0.8.jar:?] {}     at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?] {}     at net.minecraft.client.renderer.block.BlockRenderDispatcher.<init>(BlockRenderDispatcher.java:50) ~[client-1.18.2-20220404.173914-srg.jar%2390!/:?] {re:classloading,xf:OptiFine:default}     at net.minecraft.client.Minecraft.<init>(Minecraft.java:501) ~[client-1.18.2-20220404.173914-srg.jar%2390!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:A,pl:runtimedistcleaner:A} -- Initialization -- Details:     Modules:          ADVAPI32.dll:Advanced Windows 32 Base API:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         COMCTL32.dll:Biblioteka formantów czynności użytkownika:6.10 (WinBuild.160101.0800):Microsoft Corporation         CRYPT32.dll:Crypto API32:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         CRYPTBASE.dll:Base cryptographic API DLL:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         CRYPTSP.dll:Cryptographic Service Provider API:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         ColorAdapterClient.dll:Microsoft Color Adapter Client:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         CoreMessaging.dll:Microsoft CoreMessaging Dll:10.0.19041.3930:Microsoft Corporation         CoreUIComponents.dll:Microsoft Core UI Components Dll:10.0.19041.3636:Microsoft Corporation         DBGHELP.DLL:Windows Image Helper:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         DEVOBJ.dll:Device Information Set DLL:10.0.19041.3996 (WinBuild.160101.0800):Microsoft Corporation         DNSAPI.dll:Biblioteka DLL interfejsu API klienta usługi DNS:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         GDI32.dll:GDI Client DLL:10.0.19041.3996 (WinBuild.160101.0800):Microsoft Corporation         GLU32.dll:Biblioteka DLL OpenGL Utility Library:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         HID.DLL:Biblioteka użytkownika HID:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         IMM32.DLL:Multi-User Windows IMM32 API Client DLL:10.0.19041.3996 (WinBuild.160101.0800):Microsoft Corporation         IPHLPAPI.DLL:IP Helper API:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation         KERNEL32.DLL:Biblioteka DLL klienta Windows NT BASE API:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         KERNELBASE.dll:Biblioteka DLL klienta Windows NT BASE API:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         MMDevApi.dll:Interfejs API MMDevice:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         MSASN1.dll:ASN.1 Runtime APIs:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         MSCTF.dll:Biblioteka DLL serwera MSCTF:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         NLAapi.dll:Network Location Awareness 2:10.0.19041.4123 (WinBuild.160101.0800):Microsoft Corporation         NSI.dll:NSI User-mode interface DLL:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         OLEAUT32.dll:OLEAUT32.DLL:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         Ole32.dll:Microsoft OLE for Windows:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         OpenAL.dll         PROPSYS.dll:System właściwości firmy Microsoft:7.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         PSAPI.DLL:Process Status Helper:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         Pdh.dll:Windows Performance Data Helper DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation         RPCRT4.dll:Czas wykonania zdalnego wywoływania procedury:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         SETUPAPI.DLL:Interfejs API Instalatora systemu Windows:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         SHCORE.dll:SHCORE:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         SHELL32.dll:Wspólna biblioteka DLL Powłoki systemu Windows:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         UMPDC.dll         USER32.dll:Współużytkowana biblioteka DLL klienta Windows USER API:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         USERENV.dll:Userenv:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         VCRUNTIME140.dll:Microsoft® C Runtime Library:14.29.30133.0 built by: vcwrkspc:Microsoft Corporation         VERSION.dll:Version Checking and File Installation Libraries:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         WINHTTP.dll:Usługi Windows HTTP Services:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         WINMM.dll:MCI API DLL:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         WINTRUST.dll:Microsoft Trust Verification APIs:10.0.19041.4291 (WinBuild.160101.0800):Microsoft Corporation         WS2_32.dll:Biblioteka DLL 32-bitowej wersji usługi Windows Socket 2.0:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         WSOCK32.dll:Windows Socket 32-Bit DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation         Wldp.dll:Zasady blokady systemu Windows:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         amsi.dll:Anti-Malware Scan Interface:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         aswAMSI.dll:Avast AMSI COM object:24.3.8975.0:Gen Digital Inc.         aswhook.dll:Avast Hook Library:24.3.8975.0:AVAST Software         bcrypt.dll:Biblioteka podstawowych elementów kryptograficznych systemu Windows:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         bcryptPrimitives.dll:Windows Cryptographic Primitives Library:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         cfgmgr32.dll:Configuration Manager DLL:10.0.19041.3996 (WinBuild.160101.0800):Microsoft Corporation         clbcatq.dll:COM+ Configuration Catalog:2001.12.10941.16384 (WinBuild.160101.0800):Microsoft Corporation         combase.dll:Microsoft COM for Windows:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         dbgcore.DLL:Windows Core Debugging Helpers:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         dhcpcsvc.DLL:Usługa klienta DHCP:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         dhcpcsvc6.DLL:Klient DHCPv6:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         dinput8.dll:Microsoft DirectInput:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         dwmapi.dll:Interfejs API menedżera okien Microsoft Desktop Window Manager:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         dxgi.dll:DirectX Graphics Infrastructure:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         fwpuclnt.dll:Interfejs API trybu użytkownika funkcji FWP/IPSec:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         gdi32full.dll:GDI Client DLL:10.0.19041.4239 (WinBuild.160101.0800):Microsoft Corporation         glfw.dll         icm32.dll:Microsoft Color Management Module (CMM):10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         ig9icd64.dll:OpenGL(R) Driver for Intel(R) Graphics Accelerator:31.0.101.2111:Intel Corporation         igc64.dll:Intel Graphics Shader Compiler for Intel(R) Graphics Accelerator:31.0.101.2111:Intel Corporation         igdgmm64.dll:User Mode Driver for Intel(R) Graphics Technology:31.0.101.2111:Intel Corporation         igdml64.dll:Metrics Library for Intel(R) Graphics Technology:31.0.101.2111:Intel Corporation         inputhost.dll:InputHost:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         java.dll:OpenJDK Platform binary:17.0.1.0:Microsoft         javaw.exe:OpenJDK Platform binary:17.0.1.0:Microsoft         jemalloc.dll         jimage.dll:OpenJDK Platform binary:17.0.1.0:Microsoft         jli.dll:OpenJDK Platform binary:17.0.1.0:Microsoft         jna4343990444255883354.dll:JNA native library:6.1.2:Java(TM) Native Access (JNA)         jvm.dll:OpenJDK 64-Bit server VM:17.0.1.0:Microsoft         kernel.appcore.dll:AppModel API Host:10.0.19041.3758 (WinBuild.160101.0800):Microsoft Corporation         lwjgl.dll         lwjgl_opengl.dll         lwjgl_stb.dll         management.dll:OpenJDK Platform binary:17.0.1.0:Microsoft         management_ext.dll:OpenJDK Platform binary:17.0.1.0:Microsoft         mscms.dll:Biblioteka DLL systemu dopasowywania kolorów firmy Microsoft:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         msvcp140.dll:Microsoft® C Runtime Library:14.29.30133.0 built by: vcwrkspc:Microsoft Corporation         msvcp_win.dll:Microsoft® C Runtime Library:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         msvcrt.dll:Windows NT CRT DLL:7.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         mswsock.dll:Microsoft Windows Sockets 2.0 Dostawca usługi:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         napinsp.dll:Dostawca podkładek nazewnictwa poczty e-mail:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         net.dll:OpenJDK Platform binary:17.0.1.0:Microsoft         nio.dll:OpenJDK Platform binary:17.0.1.0:Microsoft         ntdll.dll:Biblioteka NT Layer DLL:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         ntmarta.dll:Windows NT - dostawca MARTA:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         opengl32.dll:OpenGL Client DLL:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         perfos.dll:Biblioteka DLL obiektów wydajności systemu Windows:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         pnrpnsp.dll:Dostawca obszaru nazw PNRP:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         powrprof.dll:Pomocnicza biblioteka DLL dla profilu zasilania:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         profapi.dll:User Profile Basic API:10.0.19041.4239 (WinBuild.160101.0800):Microsoft Corporation         rasadhlp.dll:Remote Access AutoDial Helper:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         rsaenh.dll:Microsoft Enhanced Cryptographic Provider:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation         sechost.dll:Host for SCM/SDDL/LSA Lookup APIs:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation         shlwapi.dll:Biblioteka dodatkowych narzędzi powłoki:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         svml.dll:OpenJDK Platform binary:17.0.1.0:Microsoft         textinputframework.dll:"TextInputFramework.DYNLINK":10.0.19041.4239 (WinBuild.160101.0800):Microsoft Corporation         ucrtbase.dll:Microsoft® C Runtime Library:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         uxtheme.dll:Biblioteka Microsoft UxTheme:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         vcruntime140_1.dll:Microsoft® C Runtime Library:14.29.30133.0 built by: vcwrkspc:Microsoft Corporation         verify.dll:OpenJDK Platform binary:17.0.1.0:Microsoft         win32u.dll:Win32u:10.0.19041.4291 (WinBuild.160101.0800):Microsoft Corporation         windows.storage.dll:Interfejs API magazynu systemu Microsoft WinRT:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         winrnr.dll:LDAP RnR Provider DLL:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         wintypes.dll:Biblioteka DLL typów systemu Windows:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         wshbth.dll:Windows Sockets Helper DLL:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         xinput1_4.dll:Interfejs API typowego kontrolera firmy Microsoft:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         zip.dll:OpenJDK Platform binary:17.0.1.0:Microsoft Stacktrace:     at net.minecraft.client.main.Main.main(Main.java:169) ~[client-1.18.2-20220404.173914-srg.jar%2390!/:?] {re:classloading,pl:runtimedistcleaner:A}     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.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.2.21.jar%2318!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {} -- System Details -- Details:     Minecraft Version: 1.18.2     Minecraft Version ID: 1.18.2     Operating System: Windows 10 (amd64) version 10.0     Java Version: 17.0.1, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 1227438184 bytes (1170 MiB) / 1644167168 bytes (1568 MiB) up to 10502537216 bytes (10016 MiB)     CPUs: 4     Processor Vendor: GenuineIntel     Processor Name: Intel(R) Core(TM) i3-7100U CPU @ 2.40GHz     Identifier: Intel64 Family 6 Model 142 Stepping 9     Microarchitecture: Amber Lake     Frequency (GHz): 2,40     Number of physical packages: 1     Number of physical CPUs: 2     Number of logical CPUs: 4     Graphics card #0 name: NVIDIA GeForce 940MX     Graphics card #0 vendor: NVIDIA (0x10de)     Graphics card #0 VRAM (MB): 2048,00     Graphics card #0 deviceId: 0x179c     Graphics card #0 versionInfo: DriverVersion=21.21.13.7654     Graphics card #1 name: Intel(R) HD Graphics 620     Graphics card #1 vendor: Intel Corporation (0x8086)     Graphics card #1 VRAM (MB): 1024,00     Graphics card #1 deviceId: 0x5916     Graphics card #1 versionInfo: DriverVersion=31.0.101.2111     Memory slot #0 capacity (MB): 16384,00     Memory slot #0 clockSpeed (GHz): 2,13     Memory slot #0 type: DDR4     Virtual memory max (MB): 25980,22     Virtual memory used (MB): 7608,61     Swap memory total (MB): 9728,00     Swap memory used (MB): 252,46     JVM Flags: 9 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx10000M -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M     Launched Version: 1.18.2-forge-40.2.21     Backend library: LWJGL version 3.2.2 SNAPSHOT     Backend API: Intel(R) HD Graphics 620 GL version 3.2.0 - Build 31.0.101.2111, Intel     Window size: <not initialized>     GL Caps: Using framebuffer using OpenGL 3.2     GL debug messages:      Using VBOs: Yes     Is Modded: Definitely; Client brand changed to 'forge'     Type: Client (map_client.txt)     CPU: 4x Intel(R) Core(TM) i3-7100U CPU @ 2.40GHz     OptiFine Version: OptiFine_1.18.2_HD_U_H6     OptiFine Build: 20220313-160847     Render Distance Chunks: 8     Mipmaps: 4     Anisotropic Filtering: 1     Antialiasing: 0     Multitexture: false     Shaders: null     OpenGlVersion: 3.2.0 - Build 31.0.101.2111     OpenGlRenderer: Intel(R) HD Graphics 620     OpenGlVendor: Intel     CpuCount: 4     ModLauncher: 9.1.3+9.1.3+main.9b69c82a     ModLauncher launch target: forgeclient     ModLauncher naming: srg     ModLauncher services:           mixin PLUGINSERVICE           eventbus PLUGINSERVICE           slf4jfixer PLUGINSERVICE           object_holder_definalize PLUGINSERVICE           runtime_enum_extender PLUGINSERVICE           capability_token_subclass PLUGINSERVICE           accesstransformer PLUGINSERVICE           runtimedistcleaner PLUGINSERVICE           mixin TRANSFORMATIONSERVICE           OptiFine TRANSFORMATIONSERVICE           fml TRANSFORMATIONSERVICE      FML Language Providers:          [email protected]         lowcodefml@null         javafml@null     Mod List:          client-1.18.2-20220404.173914-srg.jar             |Minecraft                     |minecraft                     |1.18.2              |COMMON_SET|Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f         repurposed_structures_forge-5.1.14+1.18.2.jar     |Repurposed Structures         |repurposed_structures         |5.1.14+1.18.2       |COMMON_SET|Manifest: NOSIGNATURE         TerraBlender-forge-1.18.2-1.2.0.126.jar           |TerraBlender                  |terrablender                  |1.2.0.126           |COMMON_SET|Manifest: NOSIGNATURE         Piglin Expansion 1.2.1.jar                        |Piglin Expansion              |piglin_expansion              |1.1.0               |COMMON_SET|Manifest: NOSIGNATURE         pamhc2trees-1.18.2-1.0.4.jar                      |Pam's HarvestCraft 2 - Trees  |pamhc2trees                   |1.0.1               |COMMON_SET|Manifest: NOSIGNATURE         BiomesOPlenty-1.18.2-16.0.0.134.jar               |Biomes O' Plenty              |biomesoplenty                 |0.0NONE             |COMMON_SET|Manifest: NOSIGNATURE         pamhc2crops-1.18.2-1.0.6.jar                      |Pam's HarvestCraft 2 - Crops  |pamhc2crops                   |1.0.6               |COMMON_SET|Manifest: NOSIGNATURE         jei-1.18.2-forge-10.2.1.1006.jar                  |Just Enough Items             |jei                           |10.2.1.1006         |COMMON_SET|Manifest: NOSIGNATURE         pamhc2foodextended-1.18.2-1.0.5.jar               |Pam's HarvestCraft 2 - Food Ex|pamhc2foodextended            |1.0                 |COMMON_SET|Manifest: NOSIGNATURE         torohealth-1.18-forge-2.jar                       |ToroHealth                    |torohealth                    |1.18-forge-2        |COMMON_SET|Manifest: NOSIGNATURE         reap-1.18.2-1.0.0.jar                             |Reap Mod                      |reap                          |1.18.2-1.0.0        |COMMON_SET|Manifest: NOSIGNATURE         Patchouli-1.18.2-71.1.jar                         |Patchouli                     |patchouli                     |1.18.2-71.1         |COMMON_SET|Manifest: NOSIGNATURE         pamhc2foodcore-1.18.2-1.0.3.jar                   |Pam's HarvestCraft 2 - Food Co|pamhc2foodcore                |1.0.1               |COMMON_SET|Manifest: NOSIGNATURE         SereneSeasons-1.18.2-7.0.0.15.jar                 |Serene Seasons                |sereneseasons                 |0.0NONE             |COMMON_SET|Manifest: NOSIGNATURE         YungsApi-1.18.2-Forge-2.2.9.jar                   |YUNG's API                    |yungsapi                      |1.18.2-Forge-2.2.9  |COMMON_SET|Manifest: NOSIGNATURE         ToughAsNails-1.18.2-7.0.0.73.jar                  |Tough As Nails                |toughasnails                  |0.0NONE             |COMMON_SET|Manifest: NOSIGNATURE         feature_nbt_deadlock_be_gone_forge-2.0.0+1.18.2.ja|Feature NBT Deadlock Be Gone  |feature_nbt_deadlock_be_gone  |2.0.0+1.18.2        |COMMON_SET|Manifest: NOSIGNATURE         weather2-1.18.2-2.7.5.jar                         |Weather2                      |weather2                      |1.18.2-2.7.5        |COMMON_SET|Manifest: NOSIGNATURE         betteranimalsplus-1.18.2-11.0.10-forge.jar        |Better Animals Plus           |betteranimalsplus             |1.18.2-11.0.10      |COMMON_SET|Manifest: NOSIGNATURE         coroutil-forge-1.18.2-1.3.6.jar                   |CoroUtil                      |coroutil                      |1.18.2-1.3.6        |COMMON_SET|Manifest: NOSIGNATURE         architectury-4.12.94-forge.jar                    |Architectury                  |architectury                  |4.12.94             |COMMON_SET|Manifest: NOSIGNATURE         shulkerbox-1.18.2-1.0.0.jar                       |Advanced Shulkerboxes         |shulkerbox                    |1.18.2-1.0.0        |COMMON_SET|Manifest: NOSIGNATURE         mysticalworld-1.18.2-0.4.8.29.jar                 |Mystical World                |mysticalworld                 |0.4.8.29            |COMMON_SET|Manifest: NOSIGNATURE         FallingTree-1.18.2-3.5.5.jar                      |FallingTree                   |fallingtree                   |3.5.5               |COMMON_SET|Manifest: 3c:8e:df:6c:df:a6:2a:9f:af:64:ea:04:9a:cf:65:92:3b:54:93:0e:96:50:b4:52:e1:13:42:18:2b:ae:40:29         forge-1.18.2-40.2.21-universal.jar                |Forge                         |forge                         |40.2.21             |COMMON_SET|Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90         cofh_core-1.18.2-9.2.3.47.jar                     |CoFH Core                     |cofh_core                     |9.2.3               |COMMON_SET|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         thermal_innovation-1.18.2-9.2.1.19.jar            |Thermal Innovation            |thermal_innovation            |9.2.1               |COMMON_SET|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         thermal_foundation-1.18.2-9.2.2.58.jar            |Thermal Series                |thermal                       |9.2.2               |COMMON_SET|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         thermal_cultivation-1.18.2-9.2.1.20.jar           |Thermal Cultivation           |thermal_cultivation           |9.2.1               |COMMON_SET|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         thermal_expansion-1.18.2-9.2.2.24.jar             |Thermal Expansion             |thermal_expansion             |9.2.2               |COMMON_SET|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         thermal_locomotion-1.18.2-9.2.1.15.jar            |Thermal Locomotion            |thermal_locomotion            |9.2.1               |COMMON_SET|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         thermal_integration-1.18.2-9.2.1.18.jar           |Thermal Integration           |thermal_integration           |9.2.1               |COMMON_SET|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         YungsBetterMineshafts-1.18.2-Forge-2.2.jar        |YUNG's Better Mineshafts      |bettermineshafts              |1.18.2-Forge-2.2    |COMMON_SET|Manifest: NOSIGNATURE         valhelsia_core-forge-1.18.2-0.4.0.jar             |Valhelsia Core                |valhelsia_core                |1.18.2-0.4.0        |COMMON_SET|Manifest: NOSIGNATURE         valhelsia_structures-1.18.2-0.1.1.jar             |Valhelsia Structures          |valhelsia_structures          |1.18.2-0.1.1        |COMMON_SET|Manifest: NOSIGNATURE         thermal_dynamics-1.18.2-9.2.2.19.jar              |Thermal Dynamics              |thermal_dynamics              |9.2.2               |COMMON_SET|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         corpse-1.18.2-1.0.1.jar                           |Corpse                        |corpse                        |1.18.2-1.0.1        |COMMON_SET|Manifest: NOSIGNATURE     Crash Report UUID: e912b463-f8b1-45c5-af55-a3291be1b7b0     FML: 40.2     Forge: net.minecraftforge:40.2.21
    • Are there dungeon mods? If yes, make a test without these
    • that worked I seriously have no idea how I didn't notice that
    • Remove rubidium - you are already using embeddium, which is a fork of rubidium
    • Remove textrues_embeddium_options or add embeddium
  • Topics

×
×
  • Create New...

Important Information

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