Update brightness filter (#271)

* - Update brightness filter
* Update source/behavior/spawn_rules/components/brightness_filter.json
Co-authored-by: Daan Verstraten <daanverstraten@hotmail.com>
* Update source/behavior/spawn_rules/components/brightness_filter.json
Co-authored-by: Daan Verstraten <daanverstraten@hotmail.com>
* - Fix json issue
---------

Co-authored-by: Daan Verstraten <daanverstraten@hotmail.com>
This commit is contained in:
Xterionix
2024-04-02 17:34:09 +05:00
committed by GitHub
parent 8fa5af7599
commit c84132520a

View File

@@ -8,12 +8,18 @@
"min": {
"type": "integer",
"description": "This is the minimum light level value that allows the mob to spawn.",
"title": "Min"
"title": "Min",
"minimum": 0,
"maximum": 15,
"default": 0
},
"max": {
"type": "integer",
"description": "This is the maximum light level value that allows the mob to spawn.",
"title": "Max"
"title": "Max",
"maximum": 15,
"minimum": 0,
"default": 15
},
"adjust_for_weather": {
"type": "boolean",