From d5207cac3ff9d604f3fcd2bef3de1738149be9ed Mon Sep 17 00:00:00 2001 From: Harvir Date: Mon, 4 Aug 2014 07:02:11 +0100 Subject: [PATCH] air: Update add/clear postremove for prerouted postremoves. --- direct/src/distributed/AstronInternalRepository.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/direct/src/distributed/AstronInternalRepository.py b/direct/src/distributed/AstronInternalRepository.py index c87ff99a2d..7cdd9c8ba5 100644 --- a/direct/src/distributed/AstronInternalRepository.py +++ b/direct/src/distributed/AstronInternalRepository.py @@ -202,6 +202,7 @@ class AstronInternalRepository(ConnectionRepository): dg2 = PyDatagram() dg2.addServerControlHeader(CONTROL_ADD_POST_REMOVE) + dg2.addUint64(self.ourChannel) dg2.addString(dg.getMessage()) self.send(dg2) @@ -216,6 +217,7 @@ class AstronInternalRepository(ConnectionRepository): dg = PyDatagram() dg.addServerControlHeader(CONTROL_CLEAR_POST_REMOVE) + dg.addUint64(self.ourChannel) self.send(dg) def handleDatagram(self, di):