From ecd8c1b71f854f84ee2b50b1d0fb1f3d7e433022 Mon Sep 17 00:00:00 2001
From: mfranz <mfranz>
Date: Mon, 23 Mar 2009 21:24:41 +0000
Subject: [PATCH] make model-not-installed message a little less noisy

---
 Nasal/multiplayer.nas | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Nasal/multiplayer.nas b/Nasal/multiplayer.nas
index 4dbe1def3..4a77a2882 100644
--- a/Nasal/multiplayer.nas
+++ b/Nasal/multiplayer.nas
@@ -387,7 +387,7 @@ var model = {
             elsif (io.stat(string.normpath(me.fg_root ~ path)) != nil)
                 available = 2;
             elsif (!contains(me.warned, path))
-                me.warned[path] = print(debug._error("=== MP model not installed: " ~ path));
+                me.warned[path] = print("MP model not installed: " ~ debug._error(path));
 
             var model = split(".", split("/", path)[-1])[0];
             model = me.remove_suffix(model, "-model");