Origins (Fabric)

Origins (Fabric)

15M Downloads

Changing the armor values for light armor has no effect on the armors you can equip

Vorrin3205 opened this issue ยท 0 comments

commented

I changed the armor values under light armor for a custom origin that I made, but it still refuses to let me equip armor with values higher than chainmail. I don't know if I did something wrong or if this is an actual bug, although I did follow the code given on the website (https://origins.readthedocs.io/en/latest/).

{
"type": "origins:restrict_armor",
"head": {
"type": "origins:armor_value",
"comparison": ">",
"compare_to": 3
},
"chest": {
"type": "origins:armor_value",
"comparison": ">",
"compare_to": 5
},
"legs": {
"type": "origins:armor_value",
"comparison": ">",
"compare_to": 2
},
"feet": {
"type": "origins:armor_value",
"comparison": ">",
"compare_to": 3
}
}