fix invalid field in manifest.json

VS is complaining that this line should be an array.
This commit is contained in:
Christopher Hiller 2023-05-06 21:43:03 -07:00 committed by Jesse Plamondon-Willard
parent 251d83472c
commit 15ab3ccd09
No known key found for this signature in database
GPG Key ID: CF8B1456B3E29F49
1 changed files with 1 additions and 1 deletions

View File

@ -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."
} }