Skip to content

Commit

Permalink
Glowing text on signs is Bedrock 1.17.10. :(
Browse files Browse the repository at this point in the history
  • Loading branch information
Camotoy committed Jun 6, 2021
1 parent fc4f2b7 commit 0162257
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ private String getBedrockSignColor(String javaColor) {

@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;
Expand Down Expand Up @@ -132,7 +133,7 @@ public void translateTag(NbtMapBuilder builder, CompoundTag tag, int blockState)
signText.append(getBedrockSignColor(color.getValue().toString()));
}

signText.append(finalSignLine.toString());
signText.append(finalSignLine);
signText.append("\n");
}

Expand Down

0 comments on commit 0162257

Please sign in to comment.