Started by
Robertm5402
on
Topic category: Help with Minecraft modding (Java Edition)
I am trying to make a GUI that upgrades enchanted books and the code of the upgrade button is missing dependency I don't know what it means here's a picture of my code
Missing a dependency means that the trigger that is running your procedure doesn't provide all the information your procedure needs. Your procedure needs to be provided with an entity and an itemstack in order to work properly. My guess is that, if you're running this through GUI, you aren't actually providing an itemstack. Try replacing 'provided itemstack' with 'itemstack from (slot) of currently open GUI.'