Hey, I'm trying to use EntityJS to modify the ender dragon so they can have potion effects applied to them like so,
EntityJSEvents.modifyEntity(event => {
event.modify("minecraft:ender_dragon", modifyBuilder => {
modifyBuilder.isAffectedByPotions(entity => true);
})
})
however this doesn't seem to be changing anything. Any help?
entity => { return true; } also doesn't work
the way they've overridden it makes it so the forge event onadded wont work either which is annoying