Index: pathological.py =================================================================== RCS file: /cvsroot/pathological/pathological/pathological.py,v retrieving revision 1.5 diff -c -r1.5 pathological.py *** pathological.py 26 Jun 2003 12:14:37 -0000 1.5 --- pathological.py 7 Jul 2003 04:36:19 -0000 *************** *** 493,500 **** if rect.collidepoint( posx, posy): # Determine the neighboring tile ! neighbor = board.tiles[tile_y + ! dirs[i][1]][tile_x + dirs[i][0]] if ( # Disallow marbles to go off the top of the board --- 493,500 ---- if rect.collidepoint( posx, posy): # Determine the neighboring tile ! neighbor = board.tiles[ (tile_y + dirs[i][1]) % ! vert_tiles][ (tile_x + dirs[i][0]) % horiz_tiles] if ( # Disallow marbles to go off the top of the board