Posted September 1, 201213 yr Hi all, I'm getting a crash ever-so-often, for which the log says: "Skipping Entity with id 0". Full log: 2012-09-01 16:28:22 [iNFO] [sTDOUT] Skipping Entity with id 0 2012-09-01 16:28:23 [iNFO] [sTDERR] java.lang.NullPointerException 2012-09-01 16:28:23 [iNFO] [sTDERR] at net.minecraft.src.NetClientHandler.handleMobSpawn(NetClientHandler.java:743) 2012-09-01 16:28:23 [iNFO] [sTDERR] at net.minecraft.src.Packet24MobSpawn.processPacket(Packet24MobSpawn.java:139) 2012-09-01 16:28:23 [iNFO] [sTDERR] at net.minecraft.src.MemoryConnection.processReadPackets(MemoryConnection.java:75) 2012-09-01 16:28:23 [iNFO] [sTDERR] at net.minecraft.src.NetClientHandler.processReadPackets(NetClientHandler.java:101) 2012-09-01 16:28:23 [iNFO] [sTDERR] at net.minecraft.src.WorldClient.tick(WorldClient.java:66) 2012-09-01 16:28:23 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1777) 2012-09-01 16:28:23 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:834) 2012-09-01 16:28:23 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:764) 2012-09-01 16:28:23 [iNFO] [sTDERR] at java.lang.Thread.run(Thread.java:662) //~~ I forcibly close the game here, as it appears blackscreened&/frozen (waiting a while for minecraft to show it's own log in the gui shows nothing different) 2012-09-01 16:28:24 [iNFO] [sTDERR] Someone is closing me! AL lib: ALc.c:1352: exit(): closing 1 Device AL lib: ALc.c:1329: alcCloseDevice(): destroying 1 Context AL lib: alSource.c:2361: alcDestroyContext(): deleting 32 Source(s) AL lib: alBuffer.c:1081: exit(): deleting 15 Buffer(s) I'm using Forge build 243, FML version 3.0.171.348 - it's been happening for a few versions now. I'm assuming it's something to do with my entity spawning? My spawn code: private void addSpawns() { //mobs is an array of my entity classes, spawnrate is an integer variable (5). for(Class mob: mobs) { addFriendly(mob, spawnrate, 1, 1); } //more spawns in a similar fashion, snipped here. } private void addFriendly(Class<? extends EntityLiving> mob, int rarity, int lowestgroup, int largestgroup) { EntityRegistry.addSpawn(mob, rarity, lowestgroup, largestgroup, EnumCreatureType.creature, WorldType.base12Biomes); } derp, forgot half the code: private void registerEntities() { addMobLocale("TimberWolf", "Timber Wolf"); EntityRegistry.registerGlobalEntityID(EntityTimberWolf.class, "TimberWolf", ModLoader.getUniqueEntityId(), Color.ORANGE.hashCode(), Color.GRAY.hashCode()); } private void addMobLocale(String name, String secondname) { name = name.replaceAll(" ", ""); LanguageRegistry.instance().addStringLocalization("entity."+name+".name", "en_US", secondname); } I've no idea if it's relevant, but mob spawning is ridiculously/tediously sparse in comparison to ModLoader's spawning - yet I'm using the same values. Thanks, ~T.
September 1, 201213 yr Author Damn, posted into the wrong area of the forum >< Should probably go to sleep having driven for the best part of 20 hours.
September 1, 201213 yr Also register your entity with: EntityRegistry.registerModEntity() See if that helps. I also have a few odd entity behaviors I cannot quite figure out that might be tied to the use of worldObj or !this.worldObj.isRemote not sure though. Anyway I hope this helps.
September 1, 201213 yr Register your entity using registermodentity after your register global entity... FML always spawns mobs it knows about out of band...
September 8, 201213 yr I'm having the same problem, just don't know how to solve it, really annoying If someone knows how to solve it, it would be helpful. I ate a chicken burger last night, it was delicious.
September 8, 201213 yr Author Yeah, I'm still having the issue. Changing the order of things has done nothing. 2012-09-08 23:40:18 [iNFO] [sTDOUT] Skipping Entity with id 0 2012-09-08 23:40:19 [iNFO] [sTDERR] java.lang.NullPointerException 2012-09-08 23:40:19 [iNFO] [sTDERR] at net.minecraft.src.NetClientHandler.handleMobSpawn(NetClientHandler.java:743) 2012-09-08 23:40:19 [iNFO] [sTDERR] at net.minecraft.src.Packet24MobSpawn.processPacket(Packet24MobSpawn.java:139) 2012-09-08 23:40:19 [iNFO] [sTDERR] at net.minecraft.src.MemoryConnection.processReadPackets(MemoryConnection.java:75) 2012-09-08 23:40:19 [iNFO] [sTDERR] at net.minecraft.src.NetClientHandler.processReadPackets(NetClientHandler.java:101) 2012-09-08 23:40:19 [iNFO] [sTDERR] at net.minecraft.src.WorldClient.tick(WorldClient.java:66) 2012-09-08 23:40:19 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1777) 2012-09-08 23:40:19 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:834) 2012-09-08 23:40:19 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:764) 2012-09-08 23:40:19 [iNFO] [sTDERR] at java.lang.Thread.run(Thread.java:662)
September 9, 201213 yr Houston, we have got a problem. I ate a chicken burger last night, it was delicious.
September 12, 201213 yr Author I moved registerModEntity after registerglobalid. It still crashes. Updated forge to 1.4, still crashes. What am I doing wrong? It's still happening. Full log from starting to crashing: 2012-09-12 15:51:45 [iNFO] [ForgeModLoader] Forge Mod Loader version 3.0.196.366 for Minecraft client:1.3.2, server:1.3.2 loading 2012-09-12 15:51:46 [iNFO] [sTDOUT] 27 achievements 2012-09-12 15:51:46 [iNFO] [sTDOUT] 195 recipes 2012-09-12 15:51:46 [iNFO] [sTDOUT] Setting user: Player161, - 2012-09-12 15:51:46 [iNFO] [sTDERR] Client asked for parameter: server 2012-09-12 15:51:46 [iNFO] [sTDOUT] LWJGL Version: 2.4.2 2012-09-12 15:51:47 [iNFO] [ForgeModLoader] Attempting early MinecraftForge initialization 2012-09-12 15:51:47 [iNFO] [ForgeModLoader] Completed early MinecraftForge initialization 2012-09-12 15:51:47 [iNFO] [ForgeModLoader] Searching /home/teotw/Desktop/TM/jars/mods for mods 2012-09-12 15:51:47 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 3 mods to load 2012-09-12 15:51:48 [iNFO] [sTDOUT] Starting up SoundSystem... 2012-09-12 15:51:48 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2012-09-12 15:51:48 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2012-09-12 15:51:48 [iNFO] [sTDOUT] OpenAL initialized. 2012-09-12 15:51:48 [iNFO] [sTDOUT] MinecraftForge v4.1.1.251 Initialized 2012-09-12 15:51:48 [iNFO] [ForgeModLoader] MinecraftForge v4.1.1.251 Initialized 2012-09-12 15:51:48 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 3 mods 2012-09-12 15:52:38 [iNFO] [sTDOUT] Placed stronghold in INVALID biome at (-35, 59) 2012-09-12 15:55:54 [iNFO] [sTDOUT] Skipping Entity with id 0 2012-09-12 15:55:55 [iNFO] [sTDERR] java.lang.NullPointerException 2012-09-12 15:55:55 [iNFO] [sTDERR] at net.minecraft.src.NetClientHandler.handleMobSpawn(NetClientHandler.java:746) 2012-09-12 15:55:55 [iNFO] [sTDERR] at net.minecraft.src.Packet24MobSpawn.processPacket(Packet24MobSpawn.java:139) 2012-09-12 15:55:55 [iNFO] [sTDERR] at net.minecraft.src.MemoryConnection.processReadPackets(MemoryConnection.java:75) 2012-09-12 15:55:55 [iNFO] [sTDERR] at net.minecraft.src.NetClientHandler.processReadPackets(NetClientHandler.java:103) 2012-09-12 15:55:55 [iNFO] [sTDERR] at net.minecraft.src.WorldClient.tick(WorldClient.java:66) 2012-09-12 15:55:55 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1777) 2012-09-12 15:55:55 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:834) 2012-09-12 15:55:55 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:764) 2012-09-12 15:55:55 [iNFO] [sTDERR] at java.lang.Thread.run(Thread.java:662) 2012-09-12 15:56:02 [iNFO] [sTDERR] Someone is closing me! AL lib: ALc.c:1352: exit(): closing 1 Device AL lib: ALc.c:1329: alcCloseDevice(): destroying 1 Context AL lib: alSource.c:2361: alcDestroyContext(): deleting 32 Source(s) AL lib: alBuffer.c:1081: exit(): deleting 11 Buffer(s) FML Log: 2012-09-12 15:51:45 [iNFO] [ForgeModLoader] Forge Mod Loader version 3.0.196.366 for Minecraft client:1.3.2, server:1.3.2 loading 2012-09-12 15:51:45 [FINEST] [ForgeModLoader] All core mods are successfully located 2012-09-12 15:51:45 [FINEST] [ForgeModLoader] Discovering coremods 2012-09-12 15:51:45 [FINEST] [ForgeModLoader] Found library file argo-2.25.jar present and correct in lib dir 2012-09-12 15:51:45 [FINEST] [ForgeModLoader] Found library file guava-12.0.1.jar present and correct in lib dir 2012-09-12 15:51:45 [FINEST] [ForgeModLoader] Found library file asm-all-4.0.jar present and correct in lib dir 2012-09-12 15:51:45 [FINEST] [ForgeModLoader] Running coremod plugins 2012-09-12 15:51:45 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin 2012-09-12 15:51:45 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully 2012-09-12 15:51:45 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin 2012-09-12 15:51:45 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully 2012-09-12 15:51:45 [FINEST] [ForgeModLoader] Validating minecraft 2012-09-12 15:51:45 [FINEST] [ForgeModLoader] Minecraft validated, launching... 2012-09-12 15:51:46 [iNFO] [sTDOUT] 27 achievements 2012-09-12 15:51:46 [iNFO] [sTDOUT] 195 recipes 2012-09-12 15:51:46 [iNFO] [sTDOUT] Setting user: Player161, - 2012-09-12 15:51:46 [iNFO] [sTDERR] Client asked for parameter: server 2012-09-12 15:51:46 [iNFO] [sTDOUT] LWJGL Version: 2.4.2 2012-09-12 15:51:47 [iNFO] [ForgeModLoader] Attempting early MinecraftForge initialization 2012-09-12 15:51:47 [iNFO] [ForgeModLoader] Completed early MinecraftForge initialization 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer] 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Found a minecraft related directory at /home/teotw/Desktop/TM/eclipse/Minecraft/bin, examining for mod candidates 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Skipping known library file /home/teotw/Desktop/TM/jars/bin/jinput.jar 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Skipping known library file /home/teotw/Desktop/TM/jars/bin/lwjgl_util.jar 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Skipping known library file /home/teotw/Desktop/TM/jars/bin/lwjgl.jar 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Found a minecraft related file at /home/teotw/Desktop/TM/jars/bin/minecraft.jar, examining for mod candidates 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Skipping known library file /home/teotw/Desktop/TM/lib/argo-2.25.jar 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Skipping known library file /home/teotw/Desktop/TM/lib/asm-all-4.0.jar 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Skipping known library file /home/teotw/Desktop/TM/lib/guava-12.0.1.jar 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Skipping known library file /home/teotw/Desktop/TM/jars/lib/argo-2.25.jar 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Skipping known library file /home/teotw/Desktop/TM/jars/lib/guava-12.0.1.jar 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Skipping known library file /home/teotw/Desktop/TM/jars/lib/asm-all-4.0.jar 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully 2012-09-12 15:51:47 [iNFO] [ForgeModLoader] Searching /home/teotw/Desktop/TM/jars/mods for mods 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Examining directory bin for potential mods 2012-09-12 15:51:47 [FINE] [ForgeModLoader] No mcmod.info file found in directory bin 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client.modloader 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client.registry 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm.transformers 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.discovery 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.discovery.asm 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.event 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.functions 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.modloader 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.network 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.registry 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.toposort 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.versioning 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.relauncher 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.server 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package ibxm 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net.minecraft 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.src 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.classloading 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.event 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.event.sound 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.common 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.living 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.minecart 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.player 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.world 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.oredict 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.transformers 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package org 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.asn1 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.asn1.bc 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.asn1.pkcs 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto.engines 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto.io 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto.modes 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto.params 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jcajce 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jcajce.provider 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jcajce.provider.config 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jcajce.provider.util 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jce 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jce.provider 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.util 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package paulscode 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package paulscode.sound 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package paulscode.sound.codecs 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package teotoo 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Recursing into package teotoo.TeotoosMod 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Identified an FMLMod type mod teotoo.TeotoosMod.TeotoosMod 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] [] 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Examining file minecraft.jar for potential mods 2012-09-12 15:51:47 [FINE] [ForgeModLoader] The mod container minecraft.jar appears to be missing an mcmod.info file 2012-09-12 15:51:47 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 3 mods to load 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Received a system property request '' 2012-09-12 15:51:47 [FINE] [ForgeModLoader] System property request managing the state of 0 mods 2012-09-12 15:51:47 [FINE] [ForgeModLoader] After merging, found state information for 0 mods 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Activating mod FML 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Activating mod Forge 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Enabling mod TeotoosMod 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Activating mod TeotoosMod 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Verifying mod requirements are satisfied 2012-09-12 15:51:47 [FINE] [ForgeModLoader] All mod requirements are satisfied 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Sorting mods into an ordered list 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Mod sorting completed successfully 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Mod sorting data: 2012-09-12 15:51:47 [FINE] [ForgeModLoader] TeotoosMod(TsMod:1.0.3): bin () 2012-09-12 15:51:47 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@3a329572 to mod FML 2012-09-12 15:51:47 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@3a329572 delivered to mod FML 2012-09-12 15:51:47 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@3a329572 to mod Forge 2012-09-12 15:51:47 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@3a329572 delivered to mod Forge 2012-09-12 15:51:47 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@3a329572 to mod TeotoosMod 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] Testing mod TeotoosMod to very it can accept it's own version in a remote connection 2012-09-12 15:51:47 [FINEST] [ForgeModLoader] The mod TeotoosMod accepts it's own version (1.0.3) 2012-09-12 15:51:47 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into TeotoosMod 2012-09-12 15:51:47 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@3a329572 delivered to mod TeotoosMod 2012-09-12 15:51:47 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@d7e60a1 to mod FML 2012-09-12 15:51:47 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@d7e60a1 delivered to mod FML 2012-09-12 15:51:47 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@d7e60a1 to mod Forge 2012-09-12 15:51:47 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@d7e60a1 delivered to mod Forge 2012-09-12 15:51:47 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@d7e60a1 to mod TeotoosMod 2012-09-12 15:51:47 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@d7e60a1 delivered to mod TeotoosMod 2012-09-12 15:51:48 [iNFO] [sTDOUT] Starting up SoundSystem... 2012-09-12 15:51:48 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2012-09-12 15:51:48 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2012-09-12 15:51:48 [iNFO] [sTDOUT] OpenAL initialized. 2012-09-12 15:51:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@40395aaf to mod FML 2012-09-12 15:51:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@40395aaf delivered to mod FML 2012-09-12 15:51:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@40395aaf to mod Forge 2012-09-12 15:51:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@40395aaf delivered to mod Forge 2012-09-12 15:51:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@40395aaf to mod TeotoosMod 2012-09-12 15:51:48 [FINEST] [ForgeModLoader] Automatically registered mod TeotoosMod entity AssaultCake as TeotoosMod.AssaultCake 2012-09-12 15:51:48 [iNFO] [sTDOUT] MinecraftForge v4.1.1.251 Initialized 2012-09-12 15:51:48 [iNFO] [ForgeModLoader] MinecraftForge v4.1.1.251 Initialized 2012-09-12 15:51:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@40395aaf delivered to mod TeotoosMod 2012-09-12 15:51:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@5f159e0c to mod FML 2012-09-12 15:51:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@5f159e0c delivered to mod FML 2012-09-12 15:51:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@5f159e0c to mod Forge 2012-09-12 15:51:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@5f159e0c delivered to mod Forge 2012-09-12 15:51:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@5f159e0c to mod TeotoosMod 2012-09-12 15:51:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@5f159e0c delivered to mod TeotoosMod 2012-09-12 15:51:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@53b258fa to mod FML 2012-09-12 15:51:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@53b258fa delivered to mod FML 2012-09-12 15:51:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@53b258fa to mod Forge 2012-09-12 15:51:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@53b258fa delivered to mod Forge 2012-09-12 15:51:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@53b258fa to mod TeotoosMod 2012-09-12 15:51:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@53b258fa delivered to mod TeotoosMod 2012-09-12 15:51:48 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 3 mods 2012-09-12 15:51:52 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLServerStartingEvent@2f995c9a to mod FML 2012-09-12 15:51:52 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLServerStartingEvent@2f995c9a delivered to mod FML 2012-09-12 15:51:52 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLServerStartingEvent@2f995c9a to mod Forge 2012-09-12 15:51:52 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLServerStartingEvent@2f995c9a delivered to mod Forge 2012-09-12 15:51:52 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLServerStartingEvent@2f995c9a to mod TeotoosMod 2012-09-12 15:51:52 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLServerStartingEvent@2f995c9a delivered to mod TeotoosMod 2012-09-12 15:51:52 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLServerStartedEvent@7d8e9adf to mod FML 2012-09-12 15:51:52 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLServerStartedEvent@7d8e9adf delivered to mod FML 2012-09-12 15:51:52 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLServerStartedEvent@7d8e9adf to mod Forge 2012-09-12 15:51:52 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLServerStartedEvent@7d8e9adf delivered to mod Forge 2012-09-12 15:51:52 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLServerStartedEvent@7d8e9adf to mod TeotoosMod 2012-09-12 15:51:52 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLServerStartedEvent@7d8e9adf delivered to mod TeotoosMod 2012-09-12 15:52:38 [iNFO] [sTDOUT] Placed stronghold in INVALID biome at (-35, 59) 2012-09-12 15:55:54 [iNFO] [sTDOUT] Skipping Entity with id 0 2012-09-12 15:55:55 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLServerStoppingEvent@63b55818 to mod FML 2012-09-12 15:55:55 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLServerStoppingEvent@63b55818 delivered to mod FML 2012-09-12 15:55:55 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLServerStoppingEvent@63b55818 to mod Forge 2012-09-12 15:55:55 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLServerStoppingEvent@63b55818 delivered to mod Forge 2012-09-12 15:55:55 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLServerStoppingEvent@63b55818 to mod TeotoosMod 2012-09-12 15:55:55 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLServerStoppingEvent@63b55818 delivered to mod TeotoosMod 2012-09-12 15:55:55 [iNFO] [sTDERR] java.lang.NullPointerException 2012-09-12 15:55:55 [iNFO] [sTDERR] at net.minecraft.src.NetClientHandler.handleMobSpawn(NetClientHandler.java:746) 2012-09-12 15:55:55 [iNFO] [sTDERR] at net.minecraft.src.Packet24MobSpawn.processPacket(Packet24MobSpawn.java:139) 2012-09-12 15:55:55 [iNFO] [sTDERR] at net.minecraft.src.MemoryConnection.processReadPackets(MemoryConnection.java:75) 2012-09-12 15:55:55 [iNFO] [sTDERR] at net.minecraft.src.NetClientHandler.processReadPackets(NetClientHandler.java:103) 2012-09-12 15:55:55 [iNFO] [sTDERR] at net.minecraft.src.WorldClient.tick(WorldClient.java:66) 2012-09-12 15:55:55 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1777) 2012-09-12 15:55:55 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:834) 2012-09-12 15:55:55 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:764) 2012-09-12 15:55:55 [iNFO] [sTDERR] at java.lang.Thread.run(Thread.java:662) 2012-09-12 15:56:02 [iNFO] [sTDERR] Someone is closing me! EDIT: Fixed - the issue was me being a complete noob, and forgetting to register a certain entity.
September 15, 201213 yr Awesome! Could you please tell me how you did it? I ate a chicken burger last night, it was delicious.
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.