From 49a419cbe2ed1c600c1b3f4c85640ca397258353 Mon Sep 17 00:00:00 2001 From: Swann Date: Fri, 7 Aug 2020 15:38:11 +0200 Subject: [PATCH] fix: none result while trying to access a node --- multi_user/operators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multi_user/operators.py b/multi_user/operators.py index 256f8d1..f6d562c 100644 --- a/multi_user/operators.py +++ b/multi_user/operators.py @@ -623,7 +623,7 @@ def depsgraph_evaluation(scene): # - if its ours or ( under common and diff), launch the # update process # - if its to someone else, ignore the update (go deeper ?) - if node.owner in [client.id, RP_COMMON] and node.state == UP: + if node and node.owner in [client.id, RP_COMMON] and node.state == UP: # Avoid slow geometry update if 'EDIT' in context.mode: break