Jump to content

Registering Events


PlasmaBlazer

Recommended Posts

Now this isn't a problem/issue that I am having, but just something I'm unsure about.

 

Does anyone know the difference between:

FMLCommonHandler.instance().bus().register();

MinecraftForge.EVENT_BUS.register();

 

Also, which one should be used when registering events as at the moment I use FMLCommonHandler.instance().bus().register(); however I have seen other people use MinecraftForge.EVENT_BUS.register();

 

Link to comment
Share on other sites

Each event is fired on a specific event bus, you need to register your handler with the right bus to receive the event.

 

Forge's events are fired on one of its three event buses (usually

MinecraftForge.EVENT_BUS

, but there's also

TERRAIN_GEN_BUS

and

ORE_GEN_BUS

); FML's events are fired on its own event bus (

FMLCommonHandler.instance().bus()

).

 

The doc comment of an event class will often tell you which bus it's fired on, but you can also use your IDE's Find Usages/Call Hierarchy tool to see where it's instantiated and thus which bus it's fired on.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

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



×
×
  • Create New...

Important Information

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