Bugfix of pawn promotion like in glinski-chess

This commit is contained in:
ecobabush 2017-09-12 20:09:12 +00:00 committed by GitHub
parent 21715f24db
commit 57577dcd44

View file

@ -148,9 +148,9 @@
return [0];
else if(piece.t==3)
return [2];
else if(piece.t==0 && geometry.R(move.t)==7)
else if(piece.t==0 && (move.t in promo[1]))
return [4,5,6,7];
else if(piece.t==2 && geometry.R(move.t)==0)
else if(piece.t==2 && (move.t in promo[-1]))
return [4,5,6,7];
return [];
},