Skip to content

Commit

Permalink
🐛 修正: [SW2] 魔物/騎獣のマイリストでエラーが出る
Browse files Browse the repository at this point in the history
  • Loading branch information
yutorize committed Oct 22, 2023
1 parent 82492d4 commit 965c44f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _core/lib/junction.pl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
use utf8;
use Encode;

our $ver = "1.24.003";
our $ver = "1.23.100";

our %in;
for (param()){ $in{$_} = param($_); }
Expand Down
2 changes: 1 addition & 1 deletion _core/lib/sw2/list-mons.pl
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ sub lvMaxCheck {

## ページネーション
my $navbar;
if($set::pagemax && (!$index_mode && $::in{taxa}) || $mode eq 'mylist'){
if($set::pagemax && !$index_mode && ($::in{taxa} || $mode eq 'mylist')){
my $lastpage = ceil($count{$name} / $set::pagemax);
if($lastpage > 1){
foreach(1 .. $lastpage){
Expand Down

0 comments on commit 965c44f

Please sign in to comment.