From 03964a4dd7ef92fd47d437584dd88a317d068aea Mon Sep 17 00:00:00 2001 From: Carver Harrison Date: Sun, 8 Jan 2017 12:23:16 -0800 Subject: [PATCH] Added trm.echo command --- ShiftOS_TheReturn/Commands.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ShiftOS_TheReturn/Commands.cs b/ShiftOS_TheReturn/Commands.cs index d2bfbfd..4571387 100644 --- a/ShiftOS_TheReturn/Commands.cs +++ b/ShiftOS_TheReturn/Commands.cs @@ -169,6 +169,13 @@ namespace ShiftOS.Engine { AppearanceManager.ConsoleOut.Clear(); return true; } + + [Command("echo")] + [RequiresArgument("text")] + public static bool Echo(Dictionary args) { + Console.WriteLine(args["text"]); + return true; + } } #if DEVEL