This commit is contained in:
parent
a70d3caace
commit
0eea508126
|
@ -330,7 +330,11 @@ game.import('card',function(lib,game,ui,get,ai,_status){
|
||||||
player:function(player){
|
player:function(player){
|
||||||
return game.countPlayer(function(current){
|
return game.countPlayer(function(current){
|
||||||
if(get.distance(player,current,'pure')==1){
|
if(get.distance(player,current,'pure')==1){
|
||||||
return -get.attitude(player,current);
|
var att=get.attitude(player,current);
|
||||||
|
if(current==player.next){
|
||||||
|
return -att*1.5;
|
||||||
|
}
|
||||||
|
return -att;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue