From 3738d84d7bf9a7d046feb12c3ec3ac9df7eb0c3f Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Tue, 2 Jul 2019 22:55:19 +0100 Subject: [PATCH] Nasal/view.nas: set /sim/viewp[]/config/root to point to multiplayer data.root. This is required by view code. --- Nasal/view.nas | 1 + 1 file changed, 1 insertion(+) diff --git a/Nasal/view.nas b/Nasal/view.nas index 2f8217114..856fa94c8 100644 --- a/Nasal/view.nas +++ b/Nasal/view.nas @@ -328,6 +328,7 @@ var manager = { if (me.current.node != nil) { me.current.node.getNode("config").setValues({ "root": data.root,}); + me.current.node.getNode("config/root").setValue(data.root) } }, };