ArgumentException: Could not cast or convert from System.StringNot An Issue

So here is my config:

{
"Reset Cooldowns On New Map": true,
"Reset Max Uses On New Map": true,
"Reset Max Uses At Midnight": true,
"Commands": [
{
"Command": "callsanta",
"Messages": [
"<color=red>Santa</color> <color=grey>is on the way!</color>"
],
"Permission": "callsanta.use",
"ConsoleCmd": "",
"UserID": 0,
"Broadcast": false,
"RconCmd": "spawn santasleigh",
"Cooldown": 0,
"MaxUses": 0
}
]
}

Here is the Error i'm getting:

Could not initialize plugin 'CustomChatCommands v2.1.1' (ArgumentException: Could not cast or convert from System.String to System.Collections.Generic.List`1[System.String].)
at Newtonsoft.Json.Utilities.ConvertUtils.EnsureTypeAssignable (System.Object value, System.Type initialType, System.Type targetType) [0x00062] in <8fe7f8665ff548909c2f26d557e5093a>:0
at Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast (System.Object initialValue, System.Globalization.CultureInfo culture, System.Type targetType) [0x00031] in <8fe7f8665ff548909c2f26d557e5093a>:0
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.EnsureType (Newtonsoft.Json.JsonReader reader, System.Object value, System.Globalization.CultureInfo culture, Newtonsoft.Json.Serialization.JsonContract contract, System.Type targetType) [0x0008d] in <8fe7f8665ff548909c2f26d557e5093a>:0

Your "ConsoleCmd": "", line was edited wrongly, change it to something like: "ConsoleCmd": [], if you do not want a console command.
@Wulf Which one would be proper to utilize? the console cmd or Rcon cmd line?
In response to Trey ():
@Wulf Which one would be proper to utilize? the console cmd or Rcon cmd line?
You'd need to do the same for both of them, they can't just be a string like you have now, they need to be a list or empty list like my example.

So like

 

"ConsoleCmd": ["spawn santasleigh"]

 

@Wulf

Locked automatically