changeset 453:4bce845fbe6c

Redraw counters after restoring game.
author Simon Cross <hodgestar@gmail.com>
date Sat, 21 Nov 2009 20:32:26 +0000
parents 17e07b4cdeb4
children 30e6d6097b12
files gamelib/gameboard.py
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/gamelib/gameboard.py	Sat Nov 21 20:24:51 2009 +0000
+++ b/gamelib/gameboard.py	Sat Nov 21 20:32:26 2009 +0000
@@ -852,6 +852,7 @@
             if attr in ('chickens', 'buildings'):
                 continue
             setattr(self, attr, getattr(newself, attr))
+        self.redraw_counters()
 
 
 class TextDialog(gui.Dialog):