Update README.MD

This commit is contained in:
Davide Fantino 2022-09-18 14:22:11 +02:00 committed by GitHub
parent 9024ec0945
commit 027c6c6398
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,12 +128,13 @@ Array of timeframes that allows to override options based on local time. See exa
###### Timeframe format ###### Timeframe format
```javascript ```javascript
{ {
"name": "friendly name", // a friendly name visible in the logs name: "friendly name", // a friendly name visible in the logs
"start": "12:00", // timeframe start time <hour>:<minutes> start: "12:00", // timeframe start time <hour>:<minutes>
"end": "18:00", // timeframe end time <hour>:<minutes> end: "18:00", // timeframe end time <hour>:<minutes>
"utcTime": true, // true: use UTC time; false: use LOCAL time utcTime: true, // true: use UTC time; false: use LOCAL time
"overrides": { overrides: { // options to override
"automaticVoteStart": false automaticVoteStart: false,
layerLevelBlacklist: [ "Anvil", "Chora" ]
} }
}, },
``` ```