#Apotheosis recipe replacement partially working

10 messages · Page 1 of 1 (latest)

worldly venture
#

This is the strangest behaviour. Some of the recipes I've replaced/removed from Apotheosis have been replaced/removed, but others have not. As far as I can tell, the paths are all correct. Could I get a second pair of eyes on this please?

//Apotheosis
    event.remove({ id: APO('prismatic_web') })
    event.remove({ id: APO('inert_trident') })
    event.replaceInput({ output: APO('blazing_hellshelf') }, MC('blaze_powder'), QA('blaze_lantern'))
    event.replaceInput({ output: APO('blazing_hellshelf') }, MC('fire_charge'), KJ('red_lightning'))
    event.replaceInput({ output: APO('glowing_hellshelf') }, MC('glowstone'), KJ('red_lightning'))
//    event.replaceInput({ output: APO('seashelf') }, Item.of(MC('potion'),{Potion: "minecraft:water"}), UA('glowing_ink_sac'))
    event.replaceInput({ output: APO('crystal_seashelf') }, MC('prismarine_crystals'), KJ('emerald_charge'))
    event.replaceInput({ output: APO('rectifier') }, MC('glowstone'), KJ('emerald_charge'))
    event.replaceInput({ output: APO('rectifier_t2') }, MC('gilded_blackstone'), KJ('red_lightning'))
    event.replaceInput({ output: APO('rectifier_t3') }, MC('glowstone'), KJ('white_earth'))
    event.replaceInput({ output: APO('pearl_endshelf') }, MC('ender_pearl'), KJ('white_earth'))
    
    event.shaped(APO('prismatic_web'), [
            'WCW',
            'CEC',
            'WCW'
        ], {
            W: MC('cobweb'),
            C: MC('prismarine_crystals'),
            E: KJ('emerald_charge')
    })
rose citrusBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

worldly venture
#
  • Prismatic Web is creating the new recipe, but not removing the old one.
  • Inert Trident is removed correctly.
  • The Hellshevles, Seashelves, and the Endshelf are not being replaced as expected
  • The Rectifiers are all replacing as expected.
  • I commented out the potion replacement because I've noticed that that can cause problems in the past, but no dice either way
stuck monolith
#

You need to find recipe ID not item ID
event.remove({ id: APO('prismatic_web') })

this is probably not right, hover resulting item on JEI to get RECIPE ID

worldly venture
#

Got it. Weird to not have the same item & recipe ids

stuck monolith
#

because you have multiple ways to have a certain item, so it would conflict

ashen comet
worldly venture
#

Yeah that didn’t work.

violet knot
#

Apotheosis hardcodes some of its recipes, you should be able to override them by setting the new recipe id to be the same as the original though

ashen comet
#

Yup ^^ that'll do the trick