mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
Make it not assume UTF-8 when it's not. Try to set the console output to UTF-8 on Windows. Remove UTF-16 output code cuz who needs it.
12 lines
296 B
C#
12 lines
296 B
C#
namespace Robust.Shared.Console.Commands;
|
|
|
|
internal sealed class EchoCommand : LocalizedCommands
|
|
{
|
|
public override string Command => "echo";
|
|
|
|
public override void Execute(IConsoleShell shell, string argStr, string[] args)
|
|
{
|
|
shell.WriteLine(string.Join(" ", args));
|
|
}
|
|
}
|