Update compendium-browser.js

2.0
Matheus Clemente 2023-11-09 13:42:01 -03:00
parent a04f8853b9
commit 43240d02c7
1 changed files with 1 additions and 5 deletions

View File

@ -242,7 +242,7 @@ class CompendiumBrowser extends Application {
if (setting === "allow-npc-browser") { if (setting === "allow-npc-browser") {
this.settings.allowNpcBrowser = value; this.settings.allowNpcBrowser = value;
} }
this.saveSettings(); game.settings.set("compendium-browser", "settings", this.settings);
}); });
// activating or deactivating filters // activating or deactivating filters
@ -1257,10 +1257,6 @@ class CompendiumBrowser extends Application {
this.settings = defaultSettings; this.settings = defaultSettings;
} }
saveSettings() {
game.settings.set("compendium-browser", "settings", this.settings);
}
//FILTERS - Added on the Ready hook //FILTERS - Added on the Ready hook
//0.4.0 Make this async so filters can be added all at once //0.4.0 Make this async so filters can be added all at once
async addFilter(entityType, category, label, path, type, possibleValues = null, valIsArray = false) { async addFilter(entityType, category, label, path, type, possibleValues = null, valIsArray = false) {