diff --git a/kasic/Commands/Print.cs b/kasic/Commands/Print.cs index 2782527..441cf0d 100644 --- a/kasic/Commands/Print.cs +++ b/kasic/Commands/Print.cs @@ -46,7 +46,11 @@ public override Result Run(Context context, Arguments } } - Logger.Logln(""); + if(flags.Contains("-l")) + Logger.Log(""); + else + Logger.Logln(""); + return new ReturnObject(this); } }