Jump to content

[1.7.10] Get EntityPlayer from Event?


Bugzoo

Recommended Posts

Sorry if this is a (very) derpy question, but how do I get the EntityPlayer from an event. I have tried casting it as EntityPlayer, though no luck

 

@SubscribeEvent
public void onEntityLivingDeath(LivingDeathEvent event)
{
  if (event.entityLiving instanceof EntityWolf && ((EntityWolf)event.entityLiving).isTamed())
  { 
       ((EntityPlayer) event.entityLiving).addChatComponentMessage(new ChatComponentText("Your Wolf Has Sadly Died"));
  }
 }   

 

But it just crashes.

Link to comment
Share on other sites

Of course it crashes. You just checked if the entity is a wolf and then say "hey, treat this wolf as if it were a player". Good job. :o

 

To get the owner, use getOwner on the wolf. Note that that will return null if the player is not online.

 

Found that out a few minutes ago, but thanks anyway. How do I send a chat message to the owner?

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.