fix invalid field in manifest.json
VS is complaining that this line should be an array.
This commit is contained in:
parent
251d83472c
commit
15ab3ccd09
|
@ -43,7 +43,7 @@
|
||||||
"description": "The DLL filename SMAPI should load for this mod. Mutually exclusive with ContentPackFor.",
|
"description": "The DLL filename SMAPI should load for this mod. Mutually exclusive with ContentPackFor.",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"pattern": "^[a-zA-Z0-9_.-]+\\.dll$",
|
"pattern": "^[a-zA-Z0-9_.-]+\\.dll$",
|
||||||
"examples": "LookupAnything.dll",
|
"examples": ["LookupAnything.dll"],
|
||||||
"@errorMessages": {
|
"@errorMessages": {
|
||||||
"pattern": "Invalid value; must be a filename ending with .dll."
|
"pattern": "Invalid value; must be a filename ending with .dll."
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue