Skip to content

Commit 12ad632

Browse files
committed
add extra space to lines
1 parent 50dc0b5 commit 12ad632

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/gregtech/api/metatileentity/multiblock/ui/MultiblockUIFactory.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,9 @@ public void readOnServer(int id, PacketBuffer buf) {}
879879

880880
protected void build(IRichTextBuilder<?> richText) {
881881
if (dirty) build();
882-
richText.addDrawableLines(this.textList);
882+
for (IDrawable drawable : textList) {
883+
richText.addLine(drawable).spaceLine(2);
884+
}
883885
}
884886

885887
protected void build() {

0 commit comments

Comments
 (0)