From 0f741b16fe9792ce69259c3d468483779b0026a6 Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Sun, 18 Aug 2019 16:27:29 +0100 Subject: [PATCH] Nasal/multiplayer.nas: disable 'no model installed' messages. --- Nasal/multiplayer.nas | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Nasal/multiplayer.nas b/Nasal/multiplayer.nas index c7b0424a9..a73881c34 100644 --- a/Nasal/multiplayer.nas +++ b/Nasal/multiplayer.nas @@ -297,15 +297,15 @@ var dialog = { color = me.fg[1]; } else{ - print("no model installed; check fallback"); + #print("no model installed; check fallback"); var fbn = mp.node.getNode("sim/model/fallback-model-index"); if (fbn != nil){ - print(" ->> got fallback node =",fbn.getValue()); + #print(" ->> got fallback node =",fbn.getValue()); if (fbn.getValue() > 0) { color = me.fg[3]; } } else - print(" ->> no fallback node"); + #print(" ->> no fallback node"); } foreach (var column; me.columns) { var w = nil;