Botania mana infusion not working
Nagasena12 opened this issue ยท 1 comments
Issue description
I am trying to edit a mana infusion recipe using crafttweaker but it seems not to work
Steps to reproduce
No response
Script used
https://gist.github.com/Nagasena12/27aa31d5ef781c7af5c661cbb066a01c
The crafttweaker.log file
https://gist.github.com/Nagasena12/fe0f750ef08b1c2ece74a96a20aa09de
Minecraft version
1.18
Modloader
Forge
Modloader version
40.2.1
CraftTweaker version
9.1.205
Other relevant information
No response
The latest.log file
https://gist.github.com/Nagasena12/c1495c7971906bb7caa36219fda402d4
The issue is that you are trying to call remove
as if it was a static method, you should be doing:
<recipetype:botania:mana_infusion>.remove(<item:botania:manasteel_ingot>);
<recipetype:botania:mana_infusion>.addRecipe("bettermanasteel", <item:botania:manasteel_ingot>, <item:create:iron_sheet>, 3000);
I understand the docs say otherwise, it will be fixed in an upcoming doc rework.