X-Git-Url: https://git.ctpug.org.za/?p=naja.git;a=blobdiff_plain;f=naja%2Factions.py;h=e1ec1e0a40b2cf58bbc741e0fcdd71cbc966602f;hp=1dc59ad1a198a1df367c6ab0542ec06a6a43d32f;hb=0dcb7a00f2ad80c4b544e3e04dce4b008dac1ad7;hpb=a84f10e2adcb9c859f17b3cfe76c4b0f975fe285 diff --git a/naja/actions.py b/naja/actions.py index 1dc59ad..e1ec1e0 100644 --- a/naja/actions.py +++ b/naja/actions.py @@ -296,6 +296,12 @@ class ShiftLocations(LocationAction): board.shift_locations( self.data['direction'], self.data.get('skip_current', True)) + if self.data.get('move_player', False): + pos = { + 'NORTH': (0, -1), 'SOUTH': (0, 1), + 'EAST': (1, 0), 'WEST': (-1, 0), + }.get(self.data['direction'], (0, 0)) + board.player.force_position(pos, delta=True) class RotateLocations(LocationAction): @@ -319,7 +325,8 @@ class AllowChessMove(LocationAction): class AllowChessMoveIfMSB(LocationAction): TEXT = ( - "If {MSB} is set, unset {MSB} and move like a %(chesspiece_name)s for one turn. Otherwise do nothing.") + "If {MSB} is set, unset {MSB} and move like a " + "%(chesspiece_name)s for one turn. Otherwise do nothing.") MSB_GLYPH = ACTION_GLYPHS.MOVEMENT def perform_action(self, board, location):