From a053cce444893c94f84269350f71766d268e0991 Mon Sep 17 00:00:00 2001 From: myk002 Date: Wed, 27 Jul 2022 16:30:14 -0700 Subject: [PATCH] update the "requires interactive terminal" message to make it more user friendly --- library/Core.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/library/Core.cpp b/library/Core.cpp index facd02823..1b3f1409f 100644 --- a/library/Core.cpp +++ b/library/Core.cpp @@ -1235,7 +1235,8 @@ command_result Core::runCommand(color_ostream &con, const std::string &first_, v } } else if (res == CR_NEEDS_CONSOLE) - con.printerr("%s needs interactive console to work.\n", first.c_str()); + con.printerr("%s needs an interactive console to work.\n" + "Please run this command from the DFHack terminal.\n", first.c_str()); return res; }