Show links embedded in chat

Allows clicking if supported by terminal,
or at least copy and paste to web browser.

Suggestion by brkmrr9 in #207
This commit is contained in:
ORelio 2016-10-07 19:52:28 +02:00
parent 9cd983c50d
commit 1180c06b1f
6 changed files with 59 additions and 28 deletions

View file

@ -257,7 +257,8 @@ namespace MinecraftClient.Protocol.Handlers
break;
}
catch (ArgumentOutOfRangeException) { /* No message type */ }
handler.OnTextReceived(ChatParser.ParseText(message));
List<string> links = new List<string>();
handler.OnTextReceived(ChatParser.ParseText(message, links), links);
break;
case PacketIncomingType.Respawn:
this.currentDimension = readNextInt(packetData);