# HG changeset patch # User sirebral # Date 1248568101 18000 # Node ID fdd70f11bc7e5ace9a5318c5a649226db9c4c874 # Parent 072ffc1d466f39b755ce49b66e55809d63cfb2dc One too many deletes last time. This run tested on Linux and working diff -r 072ffc1d466f -r fdd70f11bc7e orpg/mapper/miniatures.py --- 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 diff -r 072ffc1d466f -r fdd70f11bc7e orpg/orpg_version.py --- 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"