# HG changeset patch # User Simon Cross # Date 1252103476 0 # Node ID d46ae64240a17212375c714eb8191caaa4384b83 # Parent b379ec17236b962de5ac37436fda511c6f14fd58 Accept that new chicks die if you don't treat them properly. diff -r b379ec17236b -r d46ae64240a1 TODO --- a/TODO Fri Sep 04 22:27:34 2009 +0000 +++ b/TODO Fri Sep 04 22:31:16 2009 +0000 @@ -14,8 +14,6 @@ * Add invalid cursor sprite -* A BuildingFullError can be raised when attempting to hatch eggs in buildings. - * Animations? (Fox catching chicken (with feathers), demolition foxes blowing things up?) * Add the demolition fox diff -r b379ec17236b -r d46ae64240a1 gamelib/gameboard.py --- a/gamelib/gameboard.py Fri Sep 04 22:27:34 2009 +0000 +++ b/gamelib/gameboard.py Fri Sep 04 22:31:16 2009 +0000 @@ -697,7 +697,10 @@ self.add_chicken(new_chick) new_chick.equip(equipment.Nest()) except buildings.BuildingFullError: - print "Building full." + # if there isn't a space for the + # new chick it dies. :/ Farm life + # is cruel. + pass self.toolbar.update_egg_counter(self.eggs) def kill_fox(self, fox):