Changes

24 bytes removed ,  17:29, 11 June 2022
Update to 1.19
Line 16: Line 16:  
|  Construction  ||  <code><nowiki>CONSTRUCT</nowiki></code>  ||  <code><nowiki>FMLConstructModEvent</nowiki></code>  ||  Yes  ||  Fired when the mod's constructor has been called. Can be used to initialize listeners outside of the constructor. There is usually no reason to use this event, as any code should be placed in the mod constructor instead.
 
|  Construction  ||  <code><nowiki>CONSTRUCT</nowiki></code>  ||  <code><nowiki>FMLConstructModEvent</nowiki></code>  ||  Yes  ||  Fired when the mod's constructor has been called. Can be used to initialize listeners outside of the constructor. There is usually no reason to use this event, as any code should be placed in the mod constructor instead.
 
|-
 
|-
|  Registry Creation  ||  <code><nowiki>CREATE_REGISTRIES</nowiki></code>  ||  <code><nowiki>RegistryEvent.NewRegistry</nowiki></code>  ||  No  ||  Fired for mods to create and initialize their custom registries.  
+
|  Registry Creation  ||  <code><nowiki>CREATE_REGISTRIES</nowiki></code>  ||  <code><nowiki>NewRegistryEvent</nowiki></code>  ||  No  ||  Fired for mods to create and initialize their custom registries.  
 
|-
 
|-
|  Registry Population  ||  <code><nowiki>LOAD_REGISTRIES</nowiki></code>  ||  <code><nowiki>RegistryEvent.Register</nowiki></code>  ||  No  ||  Fired when a registry is open to registrations for any registrable objects, such as blocks, items, etc.  
+
|  Registry Population  ||  <code><nowiki>LOAD_REGISTRIES</nowiki></code>  ||  <code><nowiki>RegisterEvent</nowiki></code>  ||  No  ||  Fired when a registry is open to registrations for any registrable objects, such as blocks, items, etc.  
 
|-
 
|-
|  Config Loading  ||  <code><nowiki>CONFIG_LOAD</nowiki></code>  ||  (inlined in <code><nowiki>ModStateProvider</nowiki></code>)   ||  ?   ||  Loads config files associated with registered mod configs. Before this stage, mod config values only return their default values unless manually loaded earlier.
+
|  Config Loading  ||  <code><nowiki>CONFIG_LOAD</nowiki></code>  ||  <code><nowiki>ModConfigEvent$Loading</nowiki></code>  ||  No   ||  Loads config files associated with registered mod configs. Before this stage, mod config values only return their default values unless manually loaded earlier.
 
|-
 
|-
 
|  Common Setup  ||  <code><nowiki>COMMON_SETUP</nowiki></code>  ||  <code><nowiki>FMLCommonSetupEvent</nowiki></code>  ||  Yes  ||  Used for doing any work or action that should be run on both '''physical''' sides.  
 
|  Common Setup  ||  <code><nowiki>COMMON_SETUP</nowiki></code>  ||  <code><nowiki>FMLCommonSetupEvent</nowiki></code>  ||  Yes  ||  Used for doing any work or action that should be run on both '''physical''' sides.