Posted April 9, 20241 yr 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 April 9, 20241 yr by StrangePerson
April 12, 20241 yr 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.
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.