updated documentation

This commit is contained in:
Fantino Davide 2022-09-16 01:07:54 +02:00
parent 75ef808991
commit 54e572a2d1
2 changed files with 19 additions and 3 deletions

View File

@ -83,6 +83,20 @@ The random layer list will not include the blacklisted layers or levels. (accept
```
[]
```
#### hideVotesCount
###### Description
Hides the number of votes a layer received in broadcast message.
###### Default
```json
false
```
#### showRerollOption
###### Description
vote option to restart the vote with random entries.
###### Default
```json
false
```
### Example configuration
```json
{
@ -94,6 +108,8 @@ The random layer list will not include the blacklisted layers or levels. (accept
"numberRecentMapsToExlude": 4,
"automaticSeedingMode": true,
"gamemodeWhitelist": [ "AAS", "RAAS", "Invasion" ],
"layerLevelBlacklist": [ "BlackCoast_Seed" ]
"layerLevelBlacklist": [ "BlackCoast_Seed" ],
"hideVotesCount": false,
"showRerollOption": false
}
```

View File

@ -82,12 +82,12 @@ export default class MapVote extends BasePlugin {
},
hideVotesCount: {
required: false,
description: 'hides the number of votes a layer received',
description: 'hides the number of votes a layer received in broadcast message',
default: false
},
showRerollOption: {
required: false,
description: 'vote option to restart the vote',
description: 'vote option to restart the vote with random entries',
default: false
}
};