v1.9.35.1
This commit is contained in:
parent
83ae31cc76
commit
1a12c1dcb1
|
@ -1,5 +1,5 @@
|
|||
window.noname_asset_list=[
|
||||
'1.9.35',
|
||||
'1.9.35.1',
|
||||
'image/background/huangtian_bg.jpg',
|
||||
'image/background/ol_bg.jpg',
|
||||
'image/background/september_bg.jpg',
|
||||
|
|
10
game/game.js
10
game/game.js
|
@ -39179,7 +39179,7 @@
|
|||
}
|
||||
// ui.click.skin(this,player.name);
|
||||
game.pause2();
|
||||
ui.click.charactercard(player.name,null,null,true);
|
||||
ui.click.charactercard(player.name,null,null,true,this);
|
||||
},
|
||||
avatar2:function(){
|
||||
if(!lib.config.doubleclick_intro) return;
|
||||
|
@ -39198,7 +39198,7 @@
|
|||
}
|
||||
// ui.click.skin(this,player.name2);
|
||||
game.pause2();
|
||||
ui.click.charactercard(player.name2,null,null,true);
|
||||
ui.click.charactercard(player.name2,null,null,true,this);
|
||||
},
|
||||
player:function(){
|
||||
return ui.click.target.apply(this,arguments);
|
||||
|
@ -39568,7 +39568,7 @@
|
|||
delete this.logvtimeout;
|
||||
}
|
||||
},
|
||||
charactercard:function(name,sourcenode,noedit,resume){
|
||||
charactercard:function(name,sourcenode,noedit,resume,avatar){
|
||||
if(_status.dragged) return;
|
||||
if(lib.config.theme!='simple'){
|
||||
ui.window.classList.add('shortcutpaused');
|
||||
|
@ -39635,12 +39635,14 @@
|
|||
lib.config.skin[nameskin]=this._link;
|
||||
bg.style.backgroundImage=this.style.backgroundImage;
|
||||
if(sourcenode) sourcenode.style.backgroundImage=this.style.backgroundImage;
|
||||
if(avatar) avatar.style.backgroundImage=this.style.backgroundImage;
|
||||
game.saveConfig('skin',lib.config.skin);
|
||||
}
|
||||
else{
|
||||
delete lib.config.skin[nameskin];
|
||||
bg.setBackground(nameskin,'character');
|
||||
if(sourcenode) sourcenode.setBackground(nameskin,'character');
|
||||
if(sourcenode) sourcenode.setBackground(nameskin,'character');
|
||||
if(avatar) avatar.setBackground(nameskin,'character');
|
||||
game.saveConfig('skin',lib.config.skin);
|
||||
}
|
||||
});
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
window.noname_update={
|
||||
version:'1.9.35',
|
||||
// update:'1.9.34',
|
||||
version:'1.9.35.1',
|
||||
// update:'1.9.35',
|
||||
changeLog:[
|
||||
'bug修复',
|
||||
'双击头像显示资料'
|
||||
],
|
||||
files:[
|
||||
'game/game.js',
|
||||
|
@ -11,15 +10,15 @@ window.noname_update={
|
|||
// 'game/config.js',
|
||||
// 'game/source.js',
|
||||
// 'game/pressure.js',
|
||||
// 'game/asset.js',
|
||||
'game/asset.js',
|
||||
// 'card/*',
|
||||
// 'card/standard.js',
|
||||
// 'card/gwent.js',
|
||||
'card/gwent.js',
|
||||
// 'card/gujian.js',
|
||||
// 'character/*',
|
||||
// 'character/hearth.js',
|
||||
// 'character/old.js',
|
||||
// 'character/gwent.js',
|
||||
'character/gwent.js',
|
||||
// 'character/sp.js',
|
||||
// 'character/swd.js',
|
||||
// 'character/rank.js',
|
||||
|
|
Loading…
Reference in New Issue