Skip to content

Commit

Permalink
Change the escape codes
Browse files Browse the repository at this point in the history
To allow 0x03 to go through
  • Loading branch information
mcmonkey4eva committed Nov 17, 2014
1 parent c315ef8 commit 512447b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/net/aufdemrand/denizen/tags/TagManager.java
Expand Up @@ -89,7 +89,7 @@ public static String cleanOutput(String input) {
case 0x02:
data[i] = '>';
break;
case 0x03:
case 0x07:
data[i] = '[';
break;
case 0x06:
Expand Down Expand Up @@ -132,7 +132,7 @@ public static String cleanOutputFully(String input) {
case 0x00A0:
data[i] = ' ';
break;
case 0x03:
case 0x07:
data[i] = '[';
break;
case 0x06:
Expand Down Expand Up @@ -160,7 +160,7 @@ public static String escapeOutput(String input) {
data[i] = 0x02;
break;
case '[':
data[i] = 0x03;
data[i] = 0x07;
break;
case ']':
data[i] = 0x06;
Expand Down

0 comments on commit 512447b

Please sign in to comment.