Skip to content

Commit 3e751ee

Browse files
committed
Use Unicode escape code instead of literal
It doesn't compile under Gradle on my system. Goodness knows why not.
1 parent 2b28cc3 commit 3e751ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/dan200/computercraft/shared/command/framework/TextFormatter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
public class TextFormatter
1919
{
2020
private static final int SPACE_WIDTH = 4;
21-
private static final char PADDING_CHAR = 'ˌ';
21+
private static final char PADDING_CHAR = '\u02cc';
2222

2323
/**
2424
* Yoinked from FontRenderer

0 commit comments

Comments
 (0)