diff gamelib/gameboard.py @ 221:d46ae64240a1

Accept that new chicks die if you don't treat them properly.
author Simon Cross <hodgestar@gmail.com>
date Fri, 04 Sep 2009 22:31:16 +0000
parents 0a84d5aedc5c
children 527a5d4e3fa3
line wrap: on
line diff
--- 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):