diff --git a/docs/index.html b/docs/index.html index df5c44e0..5794bc58 100644 --- a/docs/index.html +++ b/docs/index.html @@ -26,6 +26,6 @@ - + diff --git a/docs/js/app-e262081d89.js b/docs/js/app-19ba14cc69.js similarity index 99% rename from docs/js/app-e262081d89.js rename to docs/js/app-19ba14cc69.js index 5d4c2dbb..53bd714c 100644 --- a/docs/js/app-e262081d89.js +++ b/docs/js/app-19ba14cc69.js @@ -1411,11 +1411,11 @@ } if ( !args.skipCrCheck ) { - if ( filters.minCr && monster.cr.numeric < filters.minCr ) { + if ( (filters.minCr !== null) && monster.cr.numeric < filters.minCr ) { return true; } - if ( filters.maxCr && monster.cr.numeric > filters.maxCr ) { + if ( (filters.maxCr !== null) && monster.cr.numeric > filters.maxCr ) { return true; } }