Jump to content

Trident with Channeling and Riptide


Recommended Posts

Hey,

I'm trying to write a mod that allows you to have channeling and riptide at the same time on a trident. But I came to the conclusion that this is not possible without mixins because the method that checks enchantments is in the EnchantmentHelper class and not in the Trident Item or ThrownTrident class. Since I can't overwrite the EnchantmentHelper class and don't actually want to use mixins because I'm not familiar with it, I wanted to ask you how you would go about it and whether there aren't other options.

 

I would be really happy about your help :)

Edited by StrangePerson
Link to comment
Share on other sites

You mean via an enchantment table? I mean

final int enchantLevel = 3;
tridentItemStack.enchant(Enchantments.RIPTIDE, enchantLevel);
tridentItemStack.enchant(Enchantments.CHANNELING, enchantLevel);

works in code, so if you can throw that in somewhere that'd work.

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.