Glowing text on signs is Bedrock 1.17.10. :(

This commit is contained in:
Camotoy 2021-06-06 09:55:38 -04:00
parent fc4f2b7890
commit 0162257d30
No known key found for this signature in database
GPG Key ID: 7EEFB66FE798081F
1 changed files with 2 additions and 1 deletions

View File

@ -96,6 +96,7 @@ public class SignBlockEntityTranslator extends BlockEntityTranslator {
@Override
public void translateTag(NbtMapBuilder builder, CompoundTag tag, int blockState) {
//TODO Bedrock 1.17.10 glow text
StringBuilder signText = new StringBuilder();
for (int i = 0; i < 4; i++) {
int currentLine = i + 1;
@ -132,7 +133,7 @@ public class SignBlockEntityTranslator extends BlockEntityTranslator {
signText.append(getBedrockSignColor(color.getValue().toString()));
}
signText.append(finalSignLine.toString());
signText.append(finalSignLine);
signText.append("\n");
}