#2164 Disable-able data bank attachments

This commit is contained in:
Cohee
2024-04-30 00:06:14 +03:00
parent a7d3130f9a
commit 993284f9c1
4 changed files with 78 additions and 8 deletions

View File

@ -145,8 +145,18 @@ const extension_settings = {
variables: {
global: {},
},
/**
* @type {import('./chats.js').FileAttachment[]}
*/
attachments: [],
/**
* @type {Record<string, import('./chats.js').FileAttachment[]>}
*/
character_attachments: {},
/**
* @type {string[]}
*/
disabled_attachments: [],
};
let modules = [];