19 août 2019, 13:44

oui mais je ne sais malheureusement pas comment désactiver les dégats de chute voici mon code :


public class EventHandler {

    @SubscribeEvent
    public void LivingEvent(LivingEvent event){

        if(event.entityLiving instanceof EntityPlayer)
        {
            if (event.entityLiving.isPotionActive(CustomPotion.FeatherFoaling)){

                if (event.entityLiving.getActivePotionEffect(CustomPotion.FeatherFoaling).getDuration() == 0){

                    event.entityLiving.removePotionEffect(CustomPotion.FeatherFoaling.id);
                    return;
                }



                    if(event.entityLiving.onGround){

                        event.entityLiving.motionX *= 5.0F;
                        event.entityLiving.motionZ *= 5.0F;

                    }

            }
        }
    }
}