Jump to content

[1.7.10]How to make zombies not burn in daylight


Jetfan16ladd

Recommended Posts

I'm not certain of the timing of the burning processing versus the damage from fire.  For example, I think while you could extinguish the flame with LivingUpdateEvent, I suspect that other code will run that will detect the light and set it on fire again and then process the damage.  Again, I'm not sure, but I think the LivingUpdateEvent will fire before other onUpdate() code is run, so in this case the extinguishing may get undone.

 

It may be more controlled if you process both the RenderLiving event (to make sure it doesn't display as on fire) and also the LivingHurtEvent (to make sure it doesn't take damage from fire).  As long as you don't see fire, and it doesn't take damage from fire, I think that counts as not being on fire...

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

I'm not certain of the timing of the burning processing versus the damage from fire.  For example, I think while you could extinguish the flame with LivingUpdateEvent, I suspect that other code will run that will detect the light and set it on fire again and then process the damage.  Again, I'm not sure, but I think the LivingUpdateEvent will fire before other onUpdate() code is run, so in this case the extinguishing may get undone.

 

It may be more controlled if you process both the RenderLiving event (to make sure it doesn't display as on fire) and also the LivingHurtEvent (to make sure it doesn't take damage from fire).  As long as you don't see fire, and it doesn't take damage from fire, I think that counts as not being on fire...

Okay but how do I edit the zombie entity files?

Link to comment
Share on other sites

Okay but how do I edit the zombie entity files?

 

You don't have to.  We said you should use event handling to do it.  When the events we mentioned fire, your handler should just check if it is firing for a zombie and if it is then do what you need to do to extinguish the fire.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

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.