1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-12-12 11:10:29 +00:00

Use Unicode escape code instead of literal

It doesn't compile under Gradle on my system. Goodness knows why not.
This commit is contained in:
SquidDev 2018-03-29 11:47:45 +01:00
parent 2b28cc3558
commit 3e751ee94a

View File

@ -18,7 +18,7 @@ import static dan200.computercraft.shared.command.framework.ChatHelpers.coloured
public class TextFormatter
{
private static final int SPACE_WIDTH = 4;
private static final char PADDING_CHAR = 'ˌ';
private static final char PADDING_CHAR = '\u02cc';
/**
* Yoinked from FontRenderer