This commit is contained in:
libccy 2016-04-06 18:54:52 +08:00
parent dd762f66e6
commit 0b3cd42951
4 changed files with 10 additions and 5 deletions

View File

@ -68,6 +68,7 @@ card.mingzhong={
} }
if(!ok) return 0; if(!ok) return 0;
if(ui.selected.targets.length==1) return 2; if(ui.selected.targets.length==1) return 2;
if(target.num('he')==0) return 0;
if(player.hasFriend()) return -1; if(player.hasFriend()) return -1;
return 0; return 0;
} }

View File

@ -3785,16 +3785,19 @@
var clickNode=function(){ var clickNode=function(){
if(clickedNode) return; if(clickedNode) return;
clickedNode=true; clickedNode=true;
this.classList.add('clicked');
lib.config.mode=this.link; lib.config.mode=this.link;
game.saveConfig('mode',this.link); game.saveConfig('mode',this.link);
splash.delete(); splash.delete();
delete window.inSplash; delete window.inSplash;
this.addEventListener('webkitTransitionEnd',function(){
var proceed2=function(){
if(proceeded) return; if(proceeded) return;
proceeded=true; proceeded=true;
lib.init.js(lib.assetURL+'mode',lib.config.mode,proceed); lib.init.js(lib.assetURL+'mode',lib.config.mode,proceed);
}); };
this.classList.add('clicked');
this.addEventListener('webkitTransitionEnd',proceed2);
setTimeout(proceed2,500);
} }
var downNode=function(){ var downNode=function(){
this.classList.add('glow'); this.classList.add('glow');

View File

@ -1,6 +1,7 @@
window.noname_update={ window.noname_update={
version:'1.8.3.2', version:'1.8.3.3',
changeLog:[ changeLog:[
'修复重连问题' '修复重连问题',
'修复无法进入游戏的问题'
] ]
} }

BIN
noname.zip Normal file

Binary file not shown.