Jump to content

How do I Add enchanted effect to armor when wearing


Azarsra

Recommended Posts

this is handled by Item#isFoil, but the method does not provide a Player so you need to replace the way vanilla renders the Armor

As far as I can see, Item#isFoil is only executed on the client (in vanilla code), that would mean that you would get a player via Minecraft.getInstance().player
so you be able to check if the Player is wearing your Item, note you should make a check if you are really on client via:

FMLEnvironment.dist == Dist.CLIENT

note you also need to handle a else case, means a other Mod is calling Item#isFoil on server

Edited by Luis_ST
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.



×
×
  • Create New...

Important Information

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