canAttach method should have been called
canAttack
int x = (row - 1) * 50 + 10;
int y = (column - 1) * 50 + 40;
to
int y = (row - 1) * 50 + 10;
int x = (column - 1) * 50 + 40;
Last updated 24 May 2002.