This commit is contained in:
parent
09553004dd
commit
82b05b58b6
|
@ -3539,7 +3539,7 @@
|
||||||
lib.node={
|
lib.node={
|
||||||
fs:require('fs'),
|
fs:require('fs'),
|
||||||
debug:function(){
|
debug:function(){
|
||||||
require('remote').getCurrentWindow().toggleDevTools();
|
require('electron').remote.getCurrentWindow().toggleDevTools();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
game.download=function(url,folder,onsuccess,onerror,dev){
|
game.download=function(url,folder,onsuccess,onerror,dev){
|
||||||
|
|
|
@ -1,36 +1,9 @@
|
||||||
window.noname_update={
|
window.noname_update={
|
||||||
version:'1.8.20',
|
version:'1.8.20.1',
|
||||||
changeLog:[
|
changeLog:[
|
||||||
'修bug',
|
'修bug',
|
||||||
'新武将',
|
|
||||||
],
|
],
|
||||||
files:{
|
files:{
|
||||||
global:[
|
global:[],
|
||||||
'game/asset.js',
|
|
||||||
'game/game.js',
|
|
||||||
'game/phantom.js',
|
|
||||||
'character/swd.js',
|
|
||||||
'character/rank.js',
|
|
||||||
'character/sp.js',
|
|
||||||
'character/yijiang.js',
|
|
||||||
'character/yxs.js',
|
|
||||||
'character/hearth.js',
|
|
||||||
'character/xianjian.js',
|
|
||||||
'character/refresh.js',
|
|
||||||
'character/shenhua.js',
|
|
||||||
'character/standard.js',
|
|
||||||
'character/ow.js',
|
|
||||||
'character/gujian.js',
|
|
||||||
'card/extra.js',
|
|
||||||
'card/swd.js',
|
|
||||||
'card/standard.js',
|
|
||||||
'card/sp.js',
|
|
||||||
'card/hearth.js',
|
|
||||||
'mode/guozhan.js',
|
|
||||||
'mode/identity.js',
|
|
||||||
'layout/mobile/layout.css',
|
|
||||||
],
|
|
||||||
'1.8.19.7':[],
|
|
||||||
'1.8.20':[],
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -133,13 +133,33 @@ mode.guozhan={
|
||||||
delete map[i];
|
delete map[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(choice.length<num){
|
if(choice.length==num-1){
|
||||||
for(var i=0;i<list.length;i++){
|
for(var i=0;i<list.length;i++){
|
||||||
if(map[lib.character[list[i]][1]]){
|
if(map[lib.character[list[i]][1]]){
|
||||||
choice.push(list[i]);
|
choice.push(list[i]);
|
||||||
list.splice(i--,1);
|
list.splice(i--,1);
|
||||||
if(choice.length>=num){
|
break;
|
||||||
break;
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if(choice.length<num-1){
|
||||||
|
var group=null
|
||||||
|
for(var i=0;i<list.length;i++){
|
||||||
|
if(group){
|
||||||
|
if(lib.character[list[i]][1]==group){
|
||||||
|
choice.push(list[i]);
|
||||||
|
list.splice(i--,1);
|
||||||
|
if(choice.length>=num){
|
||||||
|
console.log(group);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
if(!map[lib.character[list[i]][1]]){
|
||||||
|
group=lib.character[list[i]][1];
|
||||||
|
choice.push(list[i]);
|
||||||
|
list.splice(i--,1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue