From fddd965e2042560d9d6c2bea8505511df2c72228 Mon Sep 17 00:00:00 2001 From: V13Axel Date: Sun, 22 Aug 2021 21:44:54 -0400 Subject: [PATCH] Build with changes from PR #1 --- docs/index.html | 2 +- docs/js/{app-e262081d89.js => app-19ba14cc69.js} | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename docs/js/{app-e262081d89.js => app-19ba14cc69.js} (99%) 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; } }