Control validator confusion
wExtraBenji opened this issue ยท 1 comments
I've been trying to get my incontrol spawn file to work, so I put it through the control validator on the wiki (edit: I'm sorry I saw the source code link at the bottom after writing this :C )
What I put in was:
[
{
"mod": "ars_nouveau",
"result": "default"
},
{
"mod": "minecraft",
"hostile": true,
"mincount": {
"mod": "minecraft",
"hostile": true,
"amount": 15
},
"result": "deny"
},
{
"mob": "quark:foxhound",
"mincount": {
"amount": 2,
"perchunk": true
},
"result": "deny"
}
]
What I got out was:
[
{
"result": "default",
"mod": "ars_nouveau"
},
{
"result": "deny",
"mod": "minecraft",
"hostile": true,
"mincount": {
"amount": 15,
"mod": "minecraft",
"hostile": true
}
},
{
"result": "deny",
"mob": "quark:foxhound",
"mincount": {
"amount": 2,
"perchunk": true
}
}
]
When I used this, absolutely nothing hostile nor foxhounds spawned. Was wondering if this is a control validator issue or a me skill issue lol.