From 6b2a21f305161e9ff039e63c7412dcb3ece71bd8 Mon Sep 17 00:00:00 2001 From: David Rose Date: Thu, 23 Aug 2001 23:34:28 +0000 Subject: [PATCH] allow updates in quiet zone --- direct/src/distributed/MsgTypes.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/direct/src/distributed/MsgTypes.py b/direct/src/distributed/MsgTypes.py index 1633e99c6c..e691d67584 100644 --- a/direct/src/distributed/MsgTypes.py +++ b/direct/src/distributed/MsgTypes.py @@ -11,7 +11,9 @@ CLIENT_CREATE_OBJECT_REQUIRED_OTHER = 35 # These messages are ignored when the client is headed to the quiet zone QUIET_ZONE_IGNORED_LIST = [ - CLIENT_OBJECT_UPDATE_FIELD, + # We mustn't ignore updates, because some updates for localToon + # are always important. + #CLIENT_OBJECT_UPDATE_FIELD, CLIENT_CREATE_OBJECT_REQUIRED, CLIENT_CREATE_OBJECT_REQUIRED_OTHER, ]