Skip to content
Snippets Groups Projects
Commit 052688f4 authored by deuce's avatar deuce
Browse files

We need to warp the rook, we can't move it while castling.

parent 55205888
No related branches found
No related tags found
No related merge requests found
......@@ -262,7 +262,7 @@ King.prototype.moveTo = function(pos, update)
if(ret) {
this.moved=true;
if(cx != undefined) {
ret = piece.moveTo({x:cx, y:this.y}, true);
ret = this.board._domove(piece, {x:cx, y:this.y});
if(!ret)
throw("Castling error!");
// Hack
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment