mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Glowing text on signs is Bedrock 1.17.10. :(
This commit is contained in:
parent
fc4f2b7890
commit
0162257d30
1 changed files with 2 additions and 1 deletions
|
@ -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");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue