Fix link applying to whole component in chat if component starts with link (#5909)
This commit is contained in:
parent
3992ea5c59
commit
719f08ea5e
1 changed files with 2 additions and 3 deletions
|
@ -512,9 +512,8 @@ public class ForgeHooks
|
|||
link.getStyle().setUnderlined(true);
|
||||
link.getStyle().setColor(TextFormatting.BLUE);
|
||||
if (ichat == null)
|
||||
ichat = link;
|
||||
else
|
||||
ichat.appendSibling(link);
|
||||
ichat = new StringTextComponent("");
|
||||
ichat.appendSibling(link);
|
||||
}
|
||||
|
||||
// Append the rest of the message.
|
||||
|
|
Loading…
Reference in a new issue