Skip to content

Commit

Permalink
Update brightness filter (#271)
Browse files Browse the repository at this point in the history
* - 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>
  • Loading branch information
Xterionix and DaanV2 committed Apr 2, 2024
1 parent 8fa5af7 commit c841325
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions source/behavior/spawn_rules/components/brightness_filter.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit c841325

Please sign in to comment.