From 9952cfd7eb666e04de3b51d1e7dbade8d9168b11 Mon Sep 17 00:00:00 2001 From: Alex-TIMEHACK Date: Sat, 14 Oct 2017 18:47:54 +0100 Subject: [PATCH] Improved example command --- ShiftOS.Engine/Terminal/Commands/Hello.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ShiftOS.Engine/Terminal/Commands/Hello.cs b/ShiftOS.Engine/Terminal/Commands/Hello.cs index daf8488..531bd1f 100644 --- a/ShiftOS.Engine/Terminal/Commands/Hello.cs +++ b/ShiftOS.Engine/Terminal/Commands/Hello.cs @@ -15,7 +15,7 @@ namespace ShiftOS.Engine.Terminal.Commands public override string Run(params string[] parameters) { - return "Oh, HELLO," + parameters[0]; + return "Oh, HELLO, " + String.Join(" ", parameters); } } }