isBloodCollectableEntity line bug 1.18.2
qVoidreaver opened this issue · 2 comments
What's the issue you encountered?
I simply can't modify the “isBloodCollectableEntity” line in version 1.18.2. I don't want the blood collection to summon the boss to be only with the villagers, I've tried adding pigs, goats, vindicators and it simply doesn't work (yes, I have a flask in my hand and a bone dagger in the other).
I'm adding “entity.minecraft.pig”... vindicator etc. and nothing works, it just gets stuck on the villager, even if I restart the game completely.
How can the issue be reproduced?
Changing “isBloodCollectableEntity” from “villager” to another entity
Logs
don't have
Additional information
don't have
hey, i think i had the same issue as you, turns out you just need to add commas to each line (except for the last one, obviously), for example:
[
"entity.minecraft.villager",
"entity.minecraft.pig",
"entity.minecraft.cow"
]
i play in 1.20.1, but i supose it may be useful for 1.18.2 aswell
hey, i think i had the same issue as you, turns out you just need to add commas to each line (except for the last one, obviously), for example:
[ "entity.minecraft.villager", "entity.minecraft.pig", "entity.minecraft.cow" ]
i play in 1.20.1, but i supose it may be useful for 1.18.2 aswell
Unfortunately it didn't work. But thank you.