valentin urena commited on
Commit
bdc377f
·
verified ·
1 Parent(s): bb1246f

Update chess_board.py

Browse files
Files changed (1) hide show
  1. chess_board.py +7 -3
chess_board.py CHANGED
@@ -72,7 +72,7 @@ class Game:
72
  self.board.push(update)
73
  # self.display_board()
74
  self.sequence.append(move)
75
- return self.display_board()
76
  except:
77
  print(f"Invalid move '{move}'. Use algebraic notation (e.g., 'e4', 'Nf3', 'Bxc4') or ask Gemma for help.")
78
  return None
@@ -85,8 +85,12 @@ class Game:
85
  return self.display_board()
86
 
87
  def generate_moves(self, move):
88
- yield self.player_moves(move)
89
- yield self.gemma_moves()
 
 
 
 
90
 
91
  def main():
92
  end_game = False # Change this to False
 
72
  self.board.push(update)
73
  # self.display_board()
74
  self.sequence.append(move)
75
+ return True
76
  except:
77
  print(f"Invalid move '{move}'. Use algebraic notation (e.g., 'e4', 'Nf3', 'Bxc4') or ask Gemma for help.")
78
  return None
 
85
  return self.display_board()
86
 
87
  def generate_moves(self, move):
88
+ if self.display_board():
89
+ yield self.display_board()
90
+ yield self.gemma_moves()
91
+ else:
92
+ print("Try again")
93
+ return self.display_board()
94
 
95
  def main():
96
  end_game = False # Change this to False