Change matchCreatorNotes name

349d46d74a03732dbe03fc88936c900da4bba37f

Crow <bismuthglass@protonmail.com>

2 files changed, +8 -8Ignore whitespace
public/index.html+5 -5
@@ -4180,9 +4180,9 @@
41804180 </small>
41814181 </label>
41824182 <label title="If the entry key consists of only one word, it would not be matched as part of other words" data-i18n="[title]If the entry key consists of only one word, it would not be matched as part of other words" class="checkbox_label flex1">
41834183 <input id="world_info_match_creators_notesworld_info_match_creator_notes" type="checkbox" />
41844184 <small data-i18n="Match Creator's Notes" class="whitespacenowrap flex1">
41854185 Match Creator's Notes
41864186 </small>
41874187 </label>
41884188 </div>
@@ -6282,8 +6282,8 @@
62826282 </select>
62836283 </div>
62846284 <div class="checkbox flex-container alignItemsCenter flexNoGap">
62856285 <small class="flex1" data-i18n="Match Creator's Notes">Match Creator's Notes</small>
62866286 <select name="matchCreatorsNotesmatchCreatorNotes" class="text_pole widthNatural margin0 flex1">
62876287 <option value="null" data-i18n="Use global">Use global</option>
62886288 <option value="true" data-i18n="Yes">Yes</option>
62896289 <option value="false" data-i18n="No">No</option>
public/scripts/world-info.js+3 -3
@@ -108,7 +108,7 @@ const KNOWN_DECORATORS = ['@@activate', '@@dont_activate'];
108108 * @property {boolean} [matchCharacterPersonality] If the scan should match against the character
109109 * @property {boolean} [matchCharacterNote] If the scan should match against the character note
110110 * @property {boolean} [matchScenario] If the scan should match against the character scenario
111111 * @property {boolean} [matchCreatorsNotesmatchCreatorNotes] If the scan should match against the character metadata
112112 * @property {number} [uid] The UID of the entry that triggered the scan
113113 * @property {string} [world] The world info book of origin of the entry
114114 * @property {string[]} [key] The primary keys to scan for
@@ -2202,7 +2202,7 @@ export const originalWIDataKeyMap = {
22022202 'matchCharacterPersonality': 'extensions.match_character_personality',
22032203 'matchCharacterNote': 'extensions.match_character_note',
22042204 'matchScenario': 'extensions.match_scenario',
22052205 'matchCreatorsNotesmatchCreatorNotes': 'extensions.match_creators_notesmatch_creator_notes',
22062206 'scanDepth': 'extensions.scan_depth',
22072207 'automationId': 'extensions.automation_id',
22082208 'vectorized': 'extensions.vectorized',
@@ -3340,7 +3340,7 @@ export async function getWorldEntry(name, data, entry) {
33403340 handleOptionalSelect("matchCharacterPersonality");
33413341 handleOptionalSelect("matchCharacterNote");
33423342 handleOptionalSelect("matchScenario");
33433343 handleOptionalSelect("matchCreatorsNotesmatchCreatorNotes");
33443344
33453345 // automation id
33463346 const automationIdInput = template.find('input[name="automationId"]');