Fixing angel_level

This commit is contained in:
DaanV2
2024-01-06 23:06:54 +01:00
parent f4e46ef9e9
commit c10db35451

View File

@@ -52,7 +52,24 @@
},
"on_increase_sounds": {
"title": "On Increase Sounds",
"$ref": "../../filters/filters.json"
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["condition", "sound"],
"properties": {
"condition": {
"title": "Condition",
"type": "string",
"description": "The event that will trigger the sound"
},
"sound": {
"title": "Sound",
"type": "string",
"description": "The sound to play"
}
}
}
},
"remove_targets_below_angry_threshold": {
"title": "Remove Targets Below Angry Threshold",