Spaces:
Sleeping
Sleeping
Update engine.py
Browse files
engine.py
CHANGED
|
@@ -744,7 +744,7 @@ class Move():
|
|
| 744 |
move_string = self.peice_moved[1]
|
| 745 |
if self.is_capture:
|
| 746 |
move_string+='x'
|
| 747 |
-
return move_string + end_square + f"""{self.peice_moved}
|
| 748 |
|
| 749 |
|
| 750 |
|
|
|
|
| 744 |
move_string = self.peice_moved[1]
|
| 745 |
if self.is_capture:
|
| 746 |
move_string+='x'
|
| 747 |
+
return move_string + end_square + f""" {self.peice_moved} from {self.get_rank_file(self.start_row, self.start_col)} to {self.get_rank_file(self.end_row, self.end_col)}"""
|
| 748 |
|
| 749 |
|
| 750 |
|