X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fgameboard.py;h=7d8916ed9d328e0401bc6fff5dd2ed8ed7ad2270;hb=023db05135e4a7b6d3bd4726de475dcdbf386372;hp=da7dbd2c8b2a5614a90888c73dc5535ae721bade;hpb=3089e01a83493333a80f06e38e28c92efea56ea9;p=naja.git diff --git a/naja/gameboard.py b/naja/gameboard.py index da7dbd2..7d8916e 100644 --- a/naja/gameboard.py +++ b/naja/gameboard.py @@ -184,11 +184,10 @@ class GameBoard(object): if ROTATION[direction] == ROTATION.CLOCKWISE: new_positions = locations_to_rotate[1:] + [locations_to_rotate[0]] elif ROTATION[direction] == ROTATION.ANTICLOCKWISE: - new_positions = ( - [locations_to_rotate[-1]] + locations_to_rotate[:-1]) + new_positions = ([locations_to_rotate[-1]] + locations_to_rotate[:-1]) for old, new in zip(locations_to_rotate, new_positions): - rotated_locations[old] = self.board_locations[new] + rotated_locations[new] = self.board_locations[old] self.board_locations.update(rotated_locations)