Changeset 337

Show
Ignore:
Timestamp:
11/12/11 19:58:38 (6 months ago)
Author:
sud2
Message:

Changed move in apply_move to step

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Checkers/src/Minimax.py

    r335 r337  
    4242        gameBoardCopy = copy.deepcopy(gameBoard) 
    4343        for direction in move.movements: 
    44             gameBoardCopy.move(move.location[0], move.location[1], direction) 
     44            gameBoardCopy.step(move.location[0], move.location[1], direction) 
    4545        return gameBoardCopy 
    4646