Jump to content

[Forge 4.0.0.230] ModLoader.getUniqueEntityId() always returning 0


Recommended Posts

Posted

I'm trying to register two new boat entities (Dinghy and Skiff, both subclasses of EntityBoat) in my mod using this code:

 

	registerEntity(Dinghy.class, "EntityDinghy", 80, 3, true);
	registerEntity(Skiff.class, "EntitySkiff", 80, 3, true);

 

where

protected void registerEntity(Class<? extends Entity> entityClass, String entityName,
		int trackingRange, int updateFrequency, boolean sendsVelocityUpdates) {
	int id = ModLoader.getUniqueEntityId();
	System.out.println("Registered: " + entityClass + " id: " + id);
	EntityRegistry.registerModEntity(entityClass, entityName, id, mod, trackingRange,
			updateFrequency, sendsVelocityUpdates);
	EntityRegistry.registerGlobalEntityID(entityClass, entityName, id);
}

 

However, I get the following output:

 

2012-08-25 10:07:47 [iNFO] [sTDOUT] Registered: class mcmods.shipsAndBoats.boats.Dinghy id: 0
2012-08-25 10:07:47 [WARNING] [ForgeModLoader] The mod mcmods.shipsAndBoats tried to register the entity class class mcmods.shipsAndBoats.boats.Dinghy which was already registered - if you wish to override default naming for FML mod entities, register it here first
2012-08-25 10:07:47 [iNFO] [sTDOUT] Registered: class mcmods.shipsAndBoats.boats.Skiff id: 0
2012-08-25 10:07:47 [WARNING] [ForgeModLoader] The mod mcmods.shipsAndBoats tried to register the entity class class mcmods.shipsAndBoats.boats.Skiff which was already registered - if you wish to override default naming for FML mod entities, register it here first

 

For some weird reason, the method ModLoader.getUniqueEntityId() / EntityRegistry.findGlobalUniqueEntityId() is always returning 0. Is this a bug or am I doing something wrong? Note that the above code was working OK in Forge 4.0.0.204.

 

EDIT: Here is the full log output:

 

2012-08-25 10:15:13 [iNFO] [ForgeModLoader] Forge Mod Loader version 3.0.148.332 for Minecraft client:1.3.2, server:1.3.2 loading
2012-08-25 10:15:13 [FINEST] [ForgeModLoader] All core mods are successfully located
2012-08-25 10:15:13 [FINEST] [ForgeModLoader] Discovering coremods
2012-08-25 10:15:14 [FINEST] [ForgeModLoader] Found library file argo-2.25.jar present and correct in lib dir

2012-08-25 10:15:14 [FINEST] [ForgeModLoader] Found library file guava-12.0.1.jar present and correct in lib dir

2012-08-25 10:15:14 [FINEST] [ForgeModLoader] Found library file asm-all-4.0.jar present and correct in lib dir

2012-08-25 10:15:14 [FINEST] [ForgeModLoader] Running coremod plugins
2012-08-25 10:15:14 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin
2012-08-25 10:15:14 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully
2012-08-25 10:15:14 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin
2012-08-25 10:15:14 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully
2012-08-25 10:15:14 [FINEST] [ForgeModLoader] Validating minecraft
2012-08-25 10:15:14 [FINEST] [ForgeModLoader] Minecraft validated, launching...
2012-08-25 10:15:16 [iNFO] [sTDOUT] 27 achievements
2012-08-25 10:15:16 [iNFO] [sTDOUT] 195 recipes
2012-08-25 10:15:16 [iNFO] [sTDOUT] Setting user: Player209, -
2012-08-25 10:15:16 [iNFO] [sTDERR] Client asked for parameter: server
2012-08-25 10:15:16 [iNFO] [sTDOUT] LWJGL Version: 2.4.2
2012-08-25 10:15:17 [iNFO] [ForgeModLoader] Attempting early MinecraftForge initialization
2012-08-25 10:15:17 [iNFO] [ForgeModLoader] Completed early MinecraftForge initialization
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer]
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Found a minecraft related directory at /Users/jaimepavlich-mariscal/workspace-MC/minecraft-mods/mcmods.base.forge/target/classes, examining for mod candidates
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Found a minecraft related directory at /Users/jaimepavlich-mariscal/workspace-MC/minecraft-mods/mcmods.common/target/classes, examining for mod candidates
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Found a minecraft related directory at /Users/jaimepavlich-mariscal/workspace-MC/minecraft-mods/mcmods.common/target/test-classes, examining for mod candidates
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Found a minecraft related directory at /Users/jaimepavlich-mariscal/workspace-MC/minecraft-mods/mcmods.shipsAndBoats/target/classes, examining for mod candidates
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Skipping known library file /Users/jaimepavlich-mariscal/workspace-MC/mcp72/jars/bin/lwjgl.jar
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Skipping known library file /Users/jaimepavlich-mariscal/workspace-MC/mcp72/jars/bin/lwjgl_util.jar
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Skipping known library file /Users/jaimepavlich-mariscal/workspace-MC/mcp72/jars/bin/jinput.jar
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/jaimepavlich-mariscal/workspace-MC/mcp72/jars/bin/minecraft.jar, examining for mod candidates
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/jaimepavlich-mariscal/.m2/repository/org/codehaus/groovy/groovy-all/1.7.0/groovy-all-1.7.0.jar, examining for mod candidates
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/jaimepavlich-mariscal/.m2/repository/jline/jline/0.9.94/jline-0.9.94.jar, examining for mod candidates
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Skipping known library file /Users/jaimepavlich-mariscal/workspace-MC/mcp72/lib/argo-2.25.jar
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Skipping known library file /Users/jaimepavlich-mariscal/workspace-MC/mcp72/lib/asm-all-4.0.jar
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Skipping known library file /Users/jaimepavlich-mariscal/workspace-MC/mcp72/lib/guava-12.0.1.jar
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/jaimepavlich-mariscal/.m2/repository/com/jme3/jbullet/3.0.0.20120209-SNAPSHOT/jbullet-3.0.0.20120209-SNAPSHOT.jar, examining for mod candidates
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/jaimepavlich-mariscal/.m2/repository/com/jme3/stack-alloc/3.0.0.20120209-SNAPSHOT/stack-alloc-3.0.0.20120209-SNAPSHOT.jar, examining for mod candidates
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/jaimepavlich-mariscal/.m2/repository/com/jme3/vecmath/3.0.0.20120209-SNAPSHOT/vecmath-3.0.0.20120209-SNAPSHOT.jar, examining for mod candidates
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Skipping known library file /Users/jaimepavlich-mariscal/workspace-MC/mcp72/jars/lib/argo-2.25.jar
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Skipping known library file /Users/jaimepavlich-mariscal/workspace-MC/mcp72/jars/lib/guava-12.0.1.jar
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Skipping known library file /Users/jaimepavlich-mariscal/workspace-MC/mcp72/jars/lib/asm-all-4.0.jar
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully
2012-08-25 10:15:17 [iNFO] [ForgeModLoader] Searching /Users/jaimepavlich-mariscal/workspace-MC/mcp72/jars/mods for mods
2012-08-25 10:15:17 [FINE] [ForgeModLoader] Examining directory classes for potential mods
2012-08-25 10:15:17 [iNFO] [ForgeModLoader] No mcmod.info file found in directory classes
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client.modloader
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client.registry
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm.transformers
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.discovery
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.discovery.asm
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.event
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.functions
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.modloader
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.network
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.registry
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.toposort
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.versioning
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.relauncher
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.server
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package ibxm
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package net
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraft
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.src
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.classloading
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.event
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.event.sound
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.common
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.living
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.minecart
2012-08-25 10:15:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.player
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.world
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.oredict
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.transformers
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package org
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.asn1
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.asn1.bc
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.asn1.pkcs
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto.engines
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto.io
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto.modes
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto.params
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jcajce
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jcajce.provider
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jcajce.provider.config
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jcajce.provider.util
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jce
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jce.provider
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.util
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package paulscode
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package paulscode.sound
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package paulscode.sound.codecs
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Examining directory classes for potential mods
2012-08-25 10:15:18 [iNFO] [ForgeModLoader] No mcmod.info file found in directory classes
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package mcmods
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package mcmods.blocks
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package mcmods.common
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Identified a FMLMod type mod mcmods.common.MCModsCommon
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package mcmods.managers
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package mcmods.registry
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package mcmods.util
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package net
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package net.minecraft
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.src
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Examining directory test-classes for potential mods
2012-08-25 10:15:18 [iNFO] [ForgeModLoader] No mcmod.info file found in directory test-classes
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Examining directory classes for potential mods
2012-08-25 10:15:18 [iNFO] [ForgeModLoader] No mcmod.info file found in directory classes
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package mcmods
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package mcmods.shipsAndBoats
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Identified a FMLMod type mod mcmods.shipsAndBoats.ShipsAndBoats
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package mcmods.shipsAndBoats.boats
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package mcmods.shipsAndBoats.network
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package mcmods.shipsAndBoats.registry
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package mcmods.shipsAndBoats.resources
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package mcmods.shipsAndBoats.resources.gui
2012-08-25 10:15:18 [FINEST] [ForgeModLoader] Recursing into package mcmods.shipsAndBoats.resources.models
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Examining file minecraft.jar for potential mods
2012-08-25 10:15:18 [iNFO] [ForgeModLoader] The mod container minecraft.jar appears to be missing an mcmod.info file
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Examining file groovy-all-1.7.0.jar for potential mods
2012-08-25 10:15:18 [iNFO] [ForgeModLoader] The mod container groovy-all-1.7.0.jar appears to be missing an mcmod.info file
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Examining file jline-0.9.94.jar for potential mods
2012-08-25 10:15:18 [iNFO] [ForgeModLoader] The mod container jline-0.9.94.jar appears to be missing an mcmod.info file
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Examining file jbullet-3.0.0.20120209-SNAPSHOT.jar for potential mods
2012-08-25 10:15:18 [iNFO] [ForgeModLoader] The mod container jbullet-3.0.0.20120209-SNAPSHOT.jar appears to be missing an mcmod.info file
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Examining file stack-alloc-3.0.0.20120209-SNAPSHOT.jar for potential mods
2012-08-25 10:15:18 [iNFO] [ForgeModLoader] The mod container stack-alloc-3.0.0.20120209-SNAPSHOT.jar appears to be missing an mcmod.info file
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Examining file vecmath-3.0.0.20120209-SNAPSHOT.jar for potential mods
2012-08-25 10:15:18 [iNFO] [ForgeModLoader] The mod container vecmath-3.0.0.20120209-SNAPSHOT.jar appears to be missing an mcmod.info file
2012-08-25 10:15:18 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Received a system property request ''
2012-08-25 10:15:18 [FINE] [ForgeModLoader] System property request managing the state of 0 mods
2012-08-25 10:15:18 [FINE] [ForgeModLoader] After merging, found state information for 0 mods
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Activating mod FML
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Activating mod Forge
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Enabling mod mcmods.common
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Activating mod mcmods.common
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Enabling mod mcmods.shipsAndBoats
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Activating mod mcmods.shipsAndBoats
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Verifying mod requirements are satisfied
2012-08-25 10:15:18 [FINE] [ForgeModLoader] All mod requirements are satisfied
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Sorting mods into an ordered list
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Mod sorting completed successfully
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Mod sorting data:
2012-08-25 10:15:18 [FINE] [ForgeModLoader] 	mcmods.common(MCMods Common:0.0.1): classes ()
2012-08-25 10:15:18 [FINE] [ForgeModLoader] 	mcmods.shipsAndBoats(Ships & Boats:0.11): classes ()
2012-08-25 10:15:18 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@39cd04f1 to mod FML
2012-08-25 10:15:18 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@39cd04f1 delivered to mod FML
2012-08-25 10:15:18 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@39cd04f1 to mod Forge
2012-08-25 10:15:18 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@39cd04f1 delivered to mod Forge
2012-08-25 10:15:18 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@39cd04f1 to mod mcmods.common
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into mcmods.common
2012-08-25 10:15:18 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@39cd04f1 delivered to mod mcmods.common
2012-08-25 10:15:18 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@39cd04f1 to mod mcmods.shipsAndBoats
2012-08-25 10:15:18 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into mcmods.shipsAndBoats
2012-08-25 10:15:18 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@39cd04f1 delivered to mod mcmods.shipsAndBoats
2012-08-25 10:15:18 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@1a06f956 to mod FML
2012-08-25 10:15:18 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@1a06f956 delivered to mod FML
2012-08-25 10:15:18 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@1a06f956 to mod Forge
2012-08-25 10:15:18 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@1a06f956 delivered to mod Forge
2012-08-25 10:15:18 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@1a06f956 to mod mcmods.common
2012-08-25 10:15:18 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@1a06f956 delivered to mod mcmods.common
2012-08-25 10:15:18 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@1a06f956 to mod mcmods.shipsAndBoats
2012-08-25 10:15:18 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@1a06f956 delivered to mod mcmods.shipsAndBoats
2012-08-25 10:15:19 [iNFO] [sTDOUT] Starting up SoundSystem...
2012-08-25 10:15:19 [iNFO] [sTDOUT] Initializing LWJGL OpenAL
2012-08-25 10:15:19 [iNFO] [sTDOUT]     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
2012-08-25 10:15:19 [iNFO] [sTDOUT] OpenAL initialized.
2012-08-25 10:15:20 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@40442b95 to mod FML
2012-08-25 10:15:20 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@40442b95 delivered to mod FML
2012-08-25 10:15:20 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@40442b95 to mod Forge
2012-08-25 10:15:20 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@40442b95 delivered to mod Forge
2012-08-25 10:15:20 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@40442b95 to mod mcmods.common
2012-08-25 10:15:20 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@40442b95 delivered to mod mcmods.common
2012-08-25 10:15:20 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@40442b95 to mod mcmods.shipsAndBoats
2012-08-25 10:15:20 [iNFO] [sTDOUT] Registered: class mcmods.shipsAndBoats.boats.Dinghy id: 0
2012-08-25 10:15:31 [FINEST] [ForgeModLoader] Automatically registered mod mcmods.shipsAndBoats entity EntityDinghy as mcmods.shipsAndBoats.EntityDinghy
2012-08-25 10:15:41 [WARNING] [ForgeModLoader] The mod mcmods.shipsAndBoats tried to register the entity class class mcmods.shipsAndBoats.boats.Dinghy which was already registered - if you wish to override default naming for FML mod entities, register it here first
2012-08-25 10:15:43 [iNFO] [sTDOUT] Registered: class mcmods.shipsAndBoats.boats.Skiff id: 0
2012-08-25 10:16:09 [FINEST] [ForgeModLoader] Automatically registered mod mcmods.shipsAndBoats entity EntitySkiff as mcmods.shipsAndBoats.EntitySkiff
2012-08-25 10:16:16 [WARNING] [ForgeModLoader] The mod mcmods.shipsAndBoats tried to register the entity class class mcmods.shipsAndBoats.boats.Skiff which was already registered - if you wish to override default naming for FML mod entities, register it here first

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

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