Originsplus:modify_behaviour ignores conditions.
Neopolisan opened this issue ยท 0 comments
I was creating an add-on using this mod but it seems that modify_behaviour ignores conditions. Could this be fixed?
This is the code I tried to use. It's a valid JSON and works with other power types.
{
"name": "Hidden",
"description": "When sneaking you are undetectable for hostile mobs until you attack them.",
"conditions": [{
"type": "origins:sneaking",
"inverted": false
},
{
"type": "origins:daytime",
"inverted": true
}
],
"type": "originsplus:modify_behavior",
"behavior": "neutral",
"entities": [
"minecraft:zombie",
"minecraft:zombie_villager",
"minecraft:creeper",
"minecraft:spider",
"minecraft:cave_spider",
"minecraft:skeleton",
"minecraft:blaze",
"minecraft:husk",
"minecraft:stray",
"minecraft:wither_skeleton"
]
}