From 3794ba715b4ae87aa1eeb1c563a38b736938bbe8 Mon Sep 17 00:00:00 2001
From: Patrick Hammer <patham9@gmail.com>
Date: Sat, 28 Apr 2018 10:09:29 -0400
Subject: [PATCH] Start shell with zero volume, only showing question answers
 and executions.

---
 nars_core/nars/main/Shell.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/nars_core/nars/main/Shell.java b/nars_core/nars/main/Shell.java
index 9ea4c11d12..f524c0f6be 100644
--- a/nars_core/nars/main/Shell.java
+++ b/nars_core/nars/main/Shell.java
@@ -53,6 +53,7 @@ public class Shell {
     public static void main(String args[]) {
                 
         Shell nars = new Shell(new NAR());
+        nars.nar.addInput("*volume=0");
         nars.run(args);
         
         // TODO only if single finish ( no reset in between )
-- 
GitLab