Skip to content

Commit

Permalink
Appease linter
Browse files Browse the repository at this point in the history
  • Loading branch information
MrPrimate committed Nov 2, 2020
1 parent 037d906 commit 23ae851
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/muncher/import.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,10 @@ export async function looseItemNameMatch(item, items, loose = false) {
return matchingItem;
}

export async function updateCompendium(type, input, update=null) {
export async function updateCompendium(type, input, update = null) {
let importPolicy = game.settings.get("ddb-importer", "entity-import-policy");
//const importPolicy = game.settings.get("ddb-importer", "entity-import-policy");
if (update != null) {
// const importPolicy = game.settings.get("ddb-importer", "entity-import-policy");
if (update !== null) {
if (update == true) {
importPolicy = 0;
} else {
Expand Down

0 comments on commit 23ae851

Please sign in to comment.