Change matchCharacterMetadata to matchCreatorsNotes
| @@ -103,6 +103,12 @@ const KNOWN_DECORATORS = ['@@activate', '@@dont_activate']; | ||
| 103 | 103 | * @property {boolean} [caseSensitive] If the scan is case sensitive |
| 104 | 104 | * @property {boolean} [matchWholeWords] If the scan should match whole words |
| 105 | 105 | * @property {boolean} [useGroupScoring] If the scan should use group scoring |
| 106 | + * @property {boolean} [matchPersonaDescription] If the scan should match against the persona description | |
| 107 | + * @property {boolean} [matchCharacterDescription] If the scan should match against the character | |
| 108 | + * @property {boolean} [matchCharacterPersonality] If the scan should match against the character | |
| 109 | + * @property {boolean} [matchCharacterNote] If the scan should match against the character note | |
| 110 | + * @property {boolean} [matchScenario] If the scan should match against the character scenario | |
| 111 | + * @property {boolean} [matchCreatorsNotes] If the scan should match against the character metadata | |
| 106 | 112 | * @property {number} [uid] The UID of the entry that triggered the scan |
| 107 | 113 | * @property {string} [world] The world info book of origin of the entry |
| 108 | 114 | * @property {string[]} [key] The primary keys to scan for |
| @@ -2196,7 +2202,7 @@ export const originalWIDataKeyMap = { | ||
| 2196 | 2202 | 'matchCharacterPersonality': 'extensions.match_character_personality', |
| 2197 | 2203 | 'matchCharacterNote': 'extensions.match_character_note', |
| 2198 | 2204 | 'matchScenario': 'extensions.match_scenario', |
| 2199 | 2205 | 'matchCharacterMetadatamatchCreatorsNotes': 'extensions.match_character_metadatamatch_creators_notes', |
| 2200 | 2206 | 'scanDepth': 'extensions.scan_depth', |
| 2201 | 2207 | 'automationId': 'extensions.automation_id', |
| 2202 | 2208 | 'vectorized': 'extensions.vectorized', |
| @@ -3334,7 +3340,7 @@ export async function getWorldEntry(name, data, entry) { | ||
| 3334 | 3340 | handleOptionalSelect("matchCharacterPersonality"); |
| 3335 | 3341 | handleOptionalSelect("matchCharacterNote"); |
| 3336 | 3342 | handleOptionalSelect("matchScenario"); |
| 3337 | 3343 | handleOptionalSelect("matchCharacterMetadatamatchCreatorsNotes"); |
| 3338 | 3344 | |
| 3339 | 3345 | // automation id |
| 3340 | 3346 | const automationIdInput = template.find('input[name="automationId"]'); |