From 0377b7b8627453161d840182d9505ae386086bca Mon Sep 17 00:00:00 2001
From: Shane Freeder <theboyetronic@gmail.com>
Date: Wed, 17 May 2017 17:51:42 -0500
Subject: [PATCH] Workaround a jansi bug with Windows

Update Paperclip too while we're here
---
 ...orkaround-for-jansi-bug-with-Windows.patch | 27 +++++++++++++++++++
 work/Paperclip                                |  2 +-
 2 files changed, 28 insertions(+), 1 deletion(-)
 create mode 100644 Spigot-Server-Patches/Workaround-for-jansi-bug-with-Windows.patch

diff --git a/Spigot-Server-Patches/Workaround-for-jansi-bug-with-Windows.patch b/Spigot-Server-Patches/Workaround-for-jansi-bug-with-Windows.patch
new file mode 100644
index 0000000000..8f1e5b4cc5
--- /dev/null
+++ b/Spigot-Server-Patches/Workaround-for-jansi-bug-with-Windows.patch
@@ -0,0 +1,27 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Shane Freeder <theboyetronic@gmail.com>
+Date: Wed, 17 May 2017 17:45:19 -0500
+Subject: [PATCH] Workaround for jansi bug with Windows
+
+When jansi attempts to extract its natives, by default it tries to extract a specific version
+using the loading class's implementation version. Normally this works completely fine
+however when on Windows certain characters such as - and : can trigger special behaviour.
+
+Furthermore this behaviour only occurs in specific combinations due to the parsing done by jansi.
+For example test-test works fine, but test-test-test does not! In order to avoid this all together but
+still keep our versions the same as they were, we set the override property to the essentially garbage version
+Paper. This version is only used when extracting the libraries to their temp folder.
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/Main.java b/src/main/java/org/bukkit/craftbukkit/Main.java
+index 33e5dd504..a2f1eb7eb 100644
+--- a/src/main/java/org/bukkit/craftbukkit/Main.java
++++ b/src/main/java/org/bukkit/craftbukkit/Main.java
+@@ -0,0 +0,0 @@ public class Main {
+                 }
+ 
+                 if (useJline) {
++                    System.setProperty( "library.jansi.version", "Paper" ); // Paper - set jansi library version to avoid crash
+                     AnsiConsole.systemInstall();
+                 } else {
+                     // This ensures the terminal literal will always match the jline implementation
+--
\ No newline at end of file
diff --git a/work/Paperclip b/work/Paperclip
index 370a5d44b6..6dcb3241ca 160000
--- a/work/Paperclip
+++ b/work/Paperclip
@@ -1 +1 @@
-Subproject commit 370a5d44b6bc121c25e0208e127304f8dbdfed55
+Subproject commit 6dcb3241ca8e69fb8209e54fea507425c508915e