How to restart server multiple times?Solved

I have the code:

  "Daily restarts": [
    "06:00"
  ],​

Which works great.

 

I'm trying to restart at both 06:00 and 18:00
So i input it like this:

  "Daily restarts": [
    "06:00"
    "18:00"
  ],

Every time i do, i get back this in my console:

SmoothRestarter v3.0.1: Failed to load config file (is the config file corrupt?) (After parsing a value an unexpected character was encountered: ". Path '['Daily restarts'][0]', line 4, position 1.)
SmoothRestarter v3.0.1: Failed to load config file (is the config file corrupt?) (After parsing a value an unexpected character was encountered: ". Path '['Daily restarts'][0]', line 4, position 1.)

Am i not inputting that correctly?

You should be putting a comma after every value [ "06:00", "18:00" ] etc.

5DnAuuZBYxfvDpL.png 2CHEVSKII

You should be putting a comma after every value [ "06:00", "18:00" ] etc.

Gotcha, thank you very much, can't believe i forgot that!

Locked automatically