Jump to content

onEntityWalk not working


Help!

Recommended Posts

I put this in my block class:

public void onEntityWalk(World worldIn, BlockPos pos, Entity entityIn) {
    if (!entityIn.isSneaking()){
        entityIn.attackEntityFrom(DamageSource.FALL, 10);
    }
    super.onEntityWalk(worldIn, pos, entityIn);
}

 

When i'm in the game I don't take any damage from sneaking on it. What am I doing wrong?

Link to comment
Share on other sites

Are you saying you want the entity to take damage when you are sneaking on it?  Not damage except when you're sneaking on it (i.e. magma blocks)?  If so, you'll want to check entityIn.isSneaking(), not !entityIn.isSneaking().  The latter returns true when the entity isn't sneaking.

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.