Bewitchment

Bewitchment

7M Downloads

Book of Shadows won't load entries

BinxetyBinx opened this issue ยท 16 comments

commented

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.
Untitled1
Book of shadows.txt

commented

I suggest reporting to AQM2, looks like they tried to override the book and broke it; nothing I can do unfortunately

commented

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.

commented

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.

commented

The given log doesn't say much so I'd appreciate the full version

commented

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)

commented
commented

All the items that say missing are intentional Moriya, that happens when using KubeJS logging, and you remove items.

commented

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

commented

Would it be possible that its due to not using the latest Patchouli? I don't understand much about creating entries for patchouli and its templates, but it looks like the latest added support for
image

And looking at the page in question, it uses ${1...)
image

commented

It wouldn't, I'm currently using 1.18.1-65

commented

We're using Patchouli-1.18.1-64.jar

commented

Ah. Maybe try updating? I don't think it would change much but it's worth a shot

commented

Ah nevermind. that was AQM3 i was looking at, AQM2 does indeed use the latest.

commented

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.

commented

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
});
});
commented

Nice