Skip to content

Commit

Permalink
fix: 加载时需要判断manuallyEnter
Browse files Browse the repository at this point in the history
  • Loading branch information
Zebartin committed Oct 9, 2023
1 parent 7308966 commit dadc110
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion NIKKE/NIKKEutils.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,9 @@ function 等待NIKKE加载() {
manuallyEnter = false;
}
else if (res.text.match(/(||)/) != null) {
if (res.text.match(/(||)/) != null)
if (manuallyEnter == false)
return true;
if (res.text.match(/(|)/) != null)
return true;
let hallBtn = res.find(e => e.text == '大厅');
if (hallBtn != null)
Expand Down

0 comments on commit dadc110

Please sign in to comment.