comparison gamelib/gameboard.py @ 526:d5009047a371

Remove debugging print (oops)
author Neil Muller <drnlmuller@gmail.com>
date Fri, 27 Nov 2009 15:00:47 +0000
parents d9886377b6a2
children f59cb047d08f
comparison
equal deleted inserted replaced
525:d9886377b6a2 526:d5009047a371
678 # this will place all the chickens 678 # this will place all the chickens
679 self.place_animal(tile_pos) 679 self.place_animal(tile_pos)
680 break 680 break
681 681
682 def dlg_event(e): 682 def dlg_event(e):
683 print e.type, e
684 if e.type == MOUSEBUTTONDOWN and e.button == 2: # Middle 683 if e.type == MOUSEBUTTONDOWN and e.button == 2: # Middle
685 self.unselect_all() 684 self.unselect_all()
686 for chicken in building.occupants(): 685 for chicken in building.occupants():
687 update_button(chicken) 686 update_button(chicken)
688 return False 687 return False