Fix link applying to whole component in chat if component starts with link (#5909)

This commit is contained in:
Cloudhunter 2019-07-08 23:46:49 +01:00 committed by LexManos
parent 3992ea5c59
commit 719f08ea5e
1 changed files with 2 additions and 3 deletions

View File

@ -512,9 +512,8 @@ public class ForgeHooks
link.getStyle().setUnderlined(true); link.getStyle().setUnderlined(true);
link.getStyle().setColor(TextFormatting.BLUE); link.getStyle().setColor(TextFormatting.BLUE);
if (ichat == null) if (ichat == null)
ichat = link; ichat = new StringTextComponent("");
else ichat.appendSibling(link);
ichat.appendSibling(link);
} }
// Append the rest of the message. // Append the rest of the message.