Mercurial > traipse_dev
changeset 21:fdd70f11bc7e traipse_dev
One too many deletes last time. This run tested on Linux and working
author | sirebral |
---|---|
date | Sat, 25 Jul 2009 19:28:21 -0500 |
parents | 072ffc1d466f |
children | 88cea66228d6 |
files | orpg/mapper/miniatures.py orpg/orpg_version.py |
diffstat | 2 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/orpg/mapper/miniatures.py Sat Jul 25 19:23:25 2009 -0500 +++ b/orpg/mapper/miniatures.py Sat Jul 25 19:28:21 2009 -0500 @@ -614,7 +614,8 @@ for c in children: action = c.getAttribute("action") id = c.getAttribute('id') - if action == "del": mini = self.get_miniature_by_id(id) + if action == "del": + mini = self.get_miniature_by_id(id) if mini: self.miniatures.remove(mini) del mini
--- a/orpg/orpg_version.py Sat Jul 25 19:23:25 2009 -0500 +++ b/orpg/orpg_version.py Sat Jul 25 19:28:21 2009 -0500 @@ -4,7 +4,7 @@ #BUILD NUMBER FORMAT: "YYMMDD-##" where ## is the incremental daily build index (if needed) DISTRO = "Traipse Dev" DIS_VER = "Grumpy Goblin" -BUILD = "090725-00" +BUILD = "090725-02" # This version is for network capability. PROTOCOL_VERSION = "1.2"