Skip to content
This repository has been archived by the owner on May 12, 2022. It is now read-only.

Commit

Permalink
Build with changes from PR #1
Browse files Browse the repository at this point in the history
  • Loading branch information
V13Axel committed Aug 23, 2021
1 parent 2f97729 commit fddd965
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
<script src="thirdparty/dirPagination/dirPagination.js"></script>
<script src="thirdparty/angular-local-storage/angular-local-storage.js"></script>

<script src="js/app-e262081d89.js"></script>
<script src="js/app-19ba14cc69.js"></script>
</body>
</html>
4 changes: 2 additions & 2 deletions docs/js/app-e262081d89.js → docs/js/app-19ba14cc69.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit fddd965

Please sign in to comment.