mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
Fix dev build numbering, add update notes
Add newline in AssemblyInfo to fix dev build number in exe (#456) Add remarks on how to implement newer MC versions (from #145, #599)
This commit is contained in:
parent
9841156130
commit
5f83ff0958
6 changed files with 29 additions and 5 deletions
|
|
@ -16,6 +16,12 @@ namespace MinecraftClient.Protocol.Handlers
|
|||
/// <summary>
|
||||
/// Implementation for Minecraft 1.7.X+ Protocols
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Typical update steps for implementing protocol changes for a new Minecraft version:
|
||||
/// - Perform a diff between latest supported version in MCC and new stable version to support on https://wiki.vg/Protocol
|
||||
/// - If there are any changes in packets implemented by MCC, add MCXXXVersion field below and implement new packet layouts
|
||||
/// - If packet IDs were changed, also update getPacketIncomingType() and getPacketOutgoingID()
|
||||
/// </remarks>
|
||||
class Protocol18Handler : IMinecraftCom
|
||||
{
|
||||
private const int MC18Version = 47;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue