From 3446f68c746266d6bcc07965e8760abdd036ca17 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Fri, 26 May 2017 13:46:34 +0100 Subject: [PATCH] Workaround for PowerShell escape code issue after using git in the same window I don't have any idea why the bug happens. Starting the server in a child PowerShell process resolves the issue. --- start.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.ps1 b/start.ps1 index 1b94da0ca..62dca7128 100644 --- a/start.ps1 +++ b/start.ps1 @@ -20,7 +20,7 @@ if(Test-Path "PocketMine-MP.phar"){ } function StartServer{ - $command = $binary + " " + $file + " --enable-ansi" + $command = "powershell " + $binary + " " + $file + " --enable-ansi" iex $command }