SilentChaos512 / Ender-Tendril

Minecraft mod for growable ender pearls
MIT License
2 stars 1 forks source link

Eye of Ender Recipe #2

Open kitsu opened 3 years ago

kitsu commented 3 years ago

After waiting forever for my first flower to mature I checked the uses of the "pearl" and found there aren't really any.
I'm fine with these being different from ender pearls: no teleporting, no ender chest, etc., but they have literally no use.
I know this isn't your fault, mod authors just aren't including the forge:ender_pearl tag.

What I really hoped for was an Eye of Ender recipe though, since I have several uses for those and they will help locating an end portal.

aetherknight commented 3 years ago

I ran into this recently while playing my personal modpack, and I worked around it by writing a small CraftTweaker script:

craftingTable.removeByName("minecraft:ender_eye");
craftingTable.addShapeless(
    "ender_eye_tags",
    <item:minecraft:ender_eye>,
    [<tag:forge:ender_pearls>, <item:minecraft:blaze_powder>]
);

I have also done this for several other recipes from other mods that I've run into, but there are quite a few of them. My own process for replacing these involves: