Jump to content

How to change player abiltities


MCArTyR

Recommended Posts

I want to make it so that when the chestplate is on, the player can fly. Here is my code:

@SubscribeEvent
    public static void onEquipmentChange(LivingEquipmentChangeEvent event){
        if (!(event.getEntity() instanceof PlayerEntity)) return;
        PlayerEntity player = (PlayerEntity) event.getEntity();
        if(player.isCreative()) return;

        if(event.getSlot().equals(EquipmentSlotType.CHEST)){
            Item item = event.getTo().getItem();

            if(event.getFrom().getItem().equals(RegistryHandler.RUBY_CHESTPLATE.get())){
                player.abilities.mayfly = false;
            }

            if(item != null && item.equals(RegistryHandler.RUBY_CHESTPLATE.get())){
                player.abilities.mayfly = true;
                }
        }
    }

But the player still cannot fly.

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
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.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.