updated doc

This commit is contained in:
Davide Fantino 2022-09-21 16:46:11 +02:00
parent b407db8ee7
commit c1e6f93aa7
2 changed files with 16 additions and 2 deletions

View File

@ -76,9 +76,23 @@ The random layer list will be generated with only selected gamemodes.
```json ```json
[ "AAS", "RAAS", "INVASION" ] [ "AAS", "RAAS", "INVASION" ]
``` ```
#### layerFilteringMode
###### Description
Select Whitelist mode or Blacklist mode.
###### Default
```json
"blacklist"
```
#### layerLevelWhitelist
###### Description
The random layer list will include ONLY the whitelisted layers or levels. (acceptable formats: Gorodok/Gorodok_RAAS/Gorodok_AAS_v1).
###### Default
```
[]
```
#### layerLevelBlacklist #### layerLevelBlacklist
###### Description ###### Description
The random layer list will not include the blacklisted layers or levels. (acceptable formats: Gorodok/Gorodok_RAAS/Gorodok_AAS_v1). The random layer list will NOT include the blacklisted layers or levels. (acceptable formats: Gorodok/Gorodok_RAAS/Gorodok_AAS_v1).
###### Default ###### Default
``` ```
[] []

View File

@ -72,7 +72,7 @@ export default class MapVote extends DiscordBasePlugin {
}, },
layerLevelWhitelist: { layerLevelWhitelist: {
required: false, required: false,
description: 'random layer list will not include the blacklisted layers or levels. (acceptable formats: Gorodok/Gorodok_RAAS/Gorodok_AAS_v1)', description: 'random layer list will include only the whitelisted layers or levels. (acceptable formats: Gorodok/Gorodok_RAAS/Gorodok_AAS_v1)',
default: [] default: []
}, },
layerLevelBlacklist: { layerLevelBlacklist: {