diff --git a/card/mingzhong.js b/card/mingzhong.js index 41206d7a0..3bf53c588 100644 --- a/card/mingzhong.js +++ b/card/mingzhong.js @@ -68,6 +68,7 @@ card.mingzhong={ } if(!ok) return 0; if(ui.selected.targets.length==1) return 2; + if(target.num('he')==0) return 0; if(player.hasFriend()) return -1; return 0; } diff --git a/game/game.js b/game/game.js index d2cbfc46d..2ada3b0f6 100755 --- a/game/game.js +++ b/game/game.js @@ -3785,16 +3785,19 @@ var clickNode=function(){ if(clickedNode) return; clickedNode=true; - this.classList.add('clicked'); lib.config.mode=this.link; game.saveConfig('mode',this.link); splash.delete(); delete window.inSplash; - this.addEventListener('webkitTransitionEnd',function(){ + + var proceed2=function(){ if(proceeded) return; proceeded=true; lib.init.js(lib.assetURL+'mode',lib.config.mode,proceed); - }); + }; + this.classList.add('clicked'); + this.addEventListener('webkitTransitionEnd',proceed2); + setTimeout(proceed2,500); } var downNode=function(){ this.classList.add('glow'); diff --git a/game/update.js b/game/update.js index 6f47ea06b..75c676735 100644 --- a/game/update.js +++ b/game/update.js @@ -1,6 +1,7 @@ window.noname_update={ - version:'1.8.3.2', + version:'1.8.3.3', changeLog:[ - '修复重连问题' + '修复重连问题', + '修复无法进入游戏的问题' ] } diff --git a/noname.zip b/noname.zip new file mode 100644 index 000000000..404d206e3 Binary files /dev/null and b/noname.zip differ