Skip to content

Commit

Permalink
Fixed crashing on 1.9/10/11, SpawnPainting packet was missing
Browse files Browse the repository at this point in the history
Fixed crashing on 1.9/10/11, SpawnPainting packet was missing
  • Loading branch information
milutinke committed Mar 23, 2023
2 parents 425cff5 + e0361d2 commit 8b27386
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions MinecraftClient/Protocol/Handlers/Protocol18.cs
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,8 @@ internal bool HandlePacket(int packetID, Queue<byte> packetData)
}

break;
case PacketTypesIn.SpawnPainting: // Just skip, no need for this
return true;
case PacketTypesIn.DeclareCommands:
if (protocolVersion >= MC_1_19_Version)
{
Expand Down

0 comments on commit 8b27386

Please sign in to comment.