From feb29208a6a31eedd64d58e3979697f705e9746f Mon Sep 17 00:00:00 2001 From: Mike Primm Date: Sat, 21 Aug 2021 13:02:26 -0500 Subject: [PATCH] Drop code from PR #3443 - doesn't compile, so not tested --- .../src/main/java/org/dynmap/Client.java | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/DynmapCore/src/main/java/org/dynmap/Client.java b/DynmapCore/src/main/java/org/dynmap/Client.java index 73efc257..e48f06bf 100644 --- a/DynmapCore/src/main/java/org/dynmap/Client.java +++ b/DynmapCore/src/main/java/org/dynmap/Client.java @@ -226,26 +226,6 @@ public class Client { break; } } - else if (c == 'x') { // Essentials nickname hexcode format - if (i + 12 <= cnt){ // Check if string is at least long enough to be valid hexcode - if (s.charAt(i+1) == s.charAt(i+3) && - s.charAt(i+1) == s.charAt(i+5) && - s.charAt(i+1) == s.charAt(i+7) && - s.charAt(i+1) == s.charAt(i+9) && - s.charAt(i+1) == s.charAt(i+11) && // Check if there are enough ยง in a row - s.charAt(i+1) == '\u00A7'){ - StringBuilder hex = new StringBuilder().append(s.charAt(i+2)) - .append(s.charAt(i+4)) - .append(s.charAt(i+6)) - .append(s.charAt(i+8)) - .append(s.charAt(i+10)) - .append(s.charAt(i+12)); // Build hexcode string - sb.append(""); // Substitute with hexcode - i = i + 12; //move past hex codes - } - } - break; - } } else if (c == '&') { // Essentials color code? i++; // Move past it