mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
ChatParser.NbtToString crashed with InvalidCastException when a scoreboard update was received. The switch expressions for extra/with NBT arrays only handled int and string; everything else fell through to a hard cast to Dictionary<string,object>, which fails for long/short/byte/float/double. Replace with a pattern that explicitly matches string and Dictionary, and converts all other values (any numeric NBT type) to a text component via ToString(). This matches the behavior that ReadNbtField can return for TAG_Byte, TAG_Short, TAG_Int, TAG_Long, TAG_Float, and TAG_Double. Co-authored-by: milutinke <441903+milutinke@users.noreply.github.com> Agent-Logs-Url: https://github.com/MCCTeam/Minecraft-Console-Client/sessions/44b66082-14ee-4966-9c23-4074134e0187 |
||
|---|---|---|
| .. | ||
| ChatMessage.cs | ||
| ChatParser.cs | ||
| LastSeenMessageList.cs | ||