inherit colors

This commit is contained in:
Jesse Boyd 2019-11-21 20:47:14 +00:00
parent 05992f7fe8
commit 1a5e8c395a
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -3,6 +3,7 @@ package com.boydti.fawe.config;
import com.sk89q.worldedit.util.formatting.WorldEditText;
import com.sk89q.worldedit.util.formatting.text.Component;
import com.sk89q.worldedit.util.formatting.text.TextComponent;
import com.sk89q.worldedit.util.formatting.text.format.TextColor;
import com.sk89q.worldedit.util.formatting.text.serializer.legacy.LegacyComponentSerializer;
import java.util.ArrayList;
@ -36,15 +37,22 @@ public class Caption {
}
List<Component> children = parent.children();
if (!children.isEmpty()) {
TextColor lastColor = parent.color();
for (int i = 0; i < children.size(); i++) {
Component child = children.get(i);
Component coloredChild = color(child);
if (coloredChild.color() == null && lastColor != null) {
coloredChild = coloredChild.color(lastColor);
}
if (coloredChild != child) {
if (!(children instanceof ArrayList)) {
children = new ArrayList<>(children);
}
children.set(i, coloredChild);
}
if (coloredChild.color() != null) {
lastColor = coloredChild.color();
}
}
if (children instanceof ArrayList) {
parent = parent.children(children);