From e118d3fd7f1af6b5bf85571adf7f56cff81b43bb Mon Sep 17 00:00:00 2001 From: Jonathan Redpath Date: Sat, 5 Aug 2017 13:25:46 +0100 Subject: [PATCH] remove print part --- Nasal/libraries.nas | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Nasal/libraries.nas b/Nasal/libraries.nas index 67294055..7e4992c2 100644 --- a/Nasal/libraries.nas +++ b/Nasal/libraries.nas @@ -394,7 +394,7 @@ var logoTimer = maketimer(0.1, func { print("Logo Lights: Unknown Condition on line 390"); # this is important for debugging } } else { - print("Logo Lights: Unknown Condition on line 393"); # this is important for debugging + # do nothing } }); @@ -411,7 +411,6 @@ var noseLoop = maketimer(0.1, func { } else if (settingT == 1 and gear > 0.9) { setprop("/sim/model/lights/nose-lights", 1); } else { - setprop("/sim/model/lights/nose-lights", 0); - print("Nose Lights: Unknown Condition on line 411"); # this is important for debugging + # do nothing } });