Add files via upload

pre-0.4.4
Felix 2019-12-29 19:33:53 +01:00 committed by GitHub
parent c1013f3e54
commit 83a79826b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,6 @@
/**
* @author Felix Müller aka syl3r86
* @version 0.1.1
* @version 0.1.2
*/
class SpellBrowser extends Application {
@ -563,6 +563,7 @@ class SpellBrowser extends Application {
}
}
} else {
if (prop === undefined) return false;
if (typeof prop === 'object') {
if (filter.value) {
if (prop.indexOf(filter.value) === -1) {
@ -577,6 +578,7 @@ class SpellBrowser extends Application {
}
}
} else {
console.log(prop);
for (let val of filter.values) {
if (prop === val) {
continue;

View File

@ -2,7 +2,7 @@
"name": "compendium-browser",
"title": "Compendium Browser",
"description": "A module to easily browse and filter spells as well as npcs loaded from compendie.",
"version": "0.1.1",
"version": "0.1.2",
"author": "Felix#6196",
"systems": ["dnd5e"],
"scripts": ["./compendium-browser.js"],