bugfix
This commit is contained in:
parent
a36a0e5899
commit
f51abab06f
|
@ -10491,9 +10491,9 @@ game.import('character',function(lib,game,ui,get,ai,_status){
|
|||
}
|
||||
if(red>2&&black>2) return 4-get.value(card);
|
||||
if(red==0||black==0) return 8-get.value(card);
|
||||
var color=get.color(red);
|
||||
var color=get.color(card);
|
||||
if(black<=red) return ((color=='black'&&get.position(card)=='h')?8:4)-get.value(card);
|
||||
return ((color=='red'&&get.position(card)=='h'?8:4))-get.value(card);
|
||||
return (color=='red'&&get.position(card)=='h'?8:4)-get.value(card);
|
||||
},
|
||||
content:function(){
|
||||
player.draw();
|
||||
|
|
Loading…
Reference in New Issue