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") {
this.settings.allowNpcBrowser = value;
}
this.saveSettings();
game.settings.set("compendium-browser", "settings", this.settings);
});
// activating or deactivating filters
@ -1257,10 +1257,6 @@ class CompendiumBrowser extends Application {
this.settings = defaultSettings;
}
saveSettings() {
game.settings.set("compendium-browser", "settings", this.settings);
}
//FILTERS - Added on the Ready hook
//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) {