Jump to content

[1.7.2] replacements for connectionHandler events ?


fabricator77

Recommended Posts

I need the replacement methods for 1.6.x's IConnectionHandler, namely connectionReceived (server side) and connectionClosed (client side).

Specificity connectionReceived was triggered after the mod version check etc but before world loading.

 

This is for a mod that needs to register/de-register something client side, and the server sends the details as a event when the client connects. I'm storing the data so it can be removed by the client.

 

I've found a few different classes that deal with this, but no obvious way to subscribe to the events or to insert my own event handler.

This is the last thing I need to release my mod, my netty code works, I just need the trigger to send it.

Link to comment
Share on other sites

OK I've got two @SubscribeEvent handlers

Neither of them work for my purposes.

 

This one is called when the Player is connected, which does work most of the time.

However sometimes the data is needed before the world loads, which causes a crash.

public void onPlayerLoggedIn(PlayerLoggedInEvent event)

 

called earlier, seems ideal, but as client isn't initialized at this point, the packet send isn't received.

I cut and pasted the packet send code into two classes, the other is a CommandBase (server chat command) so common code in both.

public void onClientConnected (ServerConnectionFromClientEvent event)

 

It's all very frustrating, the data is akin to block ids, needs to be registered before it tries to use it.

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.