Book of Shadows won't load entries
BinxetyBinx opened this issue ยท 16 comments
Currently using the latest version of the mod 1.18-14 on Another Quality Modpack2 server. The book of shadows is currently not functioning at all.
Here is the error the book shows as well as the entry from latest.log.
Book of shadows.txt
I suggest reporting to AQM2, looks like they tried to override the book and broke it; nothing I can do unfortunately
Hello, Aqm2 creator here. I am not overwriting anything in the bewitchment book. The only patchouli book I've changed is from spectrum, and croparia.
Hmm, odd. I know it definitely isn't caused by bewitchment alone. Try removing mods until it stops? Once we figure out what it is, it can be reported to the relevant mod.
Thanks
I still don't see why this would happen, however I can also see the judgment poppet is missing its recipe, along with a myriad of other items from a variety of different mods. Something went very wrong here unrelated to bewitchment (even some packets are failing to register) so I would suggest the binary search method (remove half of your mods until it starts working, then start adding back until you find which it was)
Full log
latest (1).log
All the items that say missing are intentional Moriya, that happens when using KubeJS logging, and you remove items.
I see. I still suggest searching what mod causes the bug, since I know Bewitchment isn't the issue. I have it running a large modpack without issue
Ah. Maybe try updating? I don't think it would change much but it's worth a shot
Do you know why this occurred by modifying the recipe? I've modified a bunch of recipes using KubeJS from mods that have patchouli guides, even items that are showing recipes in their book that I modified.
Figured it out. It was because I ran a recipe change using KubeJS on heaven extract apparently...
onEvent('recipes', function(event) {
event.remove({output: "bewitchment:heaven_extract" })
event.custom({
"type": "bewitchment:oil_recipe",
"ingredients": [
{
"item": "bewitchment:juniper_bark"
},
{
"item": "magicfungi:impetus_essence"
},
{
"item": "bewitchment:mandrake_root"
}
],
"result": {
"item": "bewitchment:heaven_extract"
},
"color": 16777215
});
});