diff options
| author | E x o t i c <exoticdeveloper@icloud.com> | 2026-03-08 04:00:25 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-08 03:00:25 -0500 |
| commit | 110e86ca2a7585b091abcc5545667bf5df5272e4 (patch) | |
| tree | d07281aad423ee3faa22d68bdd0846db1cb5d688 /Minecraft.Client/ClientConnection.cpp | |
| parent | a865cea026d18d24d9435daa556729dd09b1c094 (diff) | |
Fix missing break statement for minecarts (#930)
Diffstat (limited to 'Minecraft.Client/ClientConnection.cpp')
| -rw-r--r-- | Minecraft.Client/ClientConnection.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Minecraft.Client/ClientConnection.cpp b/Minecraft.Client/ClientConnection.cpp index 9b955cae..c9e7bac2 100644 --- a/Minecraft.Client/ClientConnection.cpp +++ b/Minecraft.Client/ClientConnection.cpp @@ -427,6 +427,7 @@ void ClientConnection::handleAddEntity(shared_ptr<AddEntityPacket> packet) { case AddEntityPacket::MINECART: e = Minecart::createMinecart(level, x, y, z, packet->data); + break; case AddEntityPacket::FISH_HOOK: { // 4J Stu - Brought forward from 1.4 to be able to drop XP from fishing |
