From 844a33933076a8e343de944b6eab26b4166e2f6f Mon Sep 17 00:00:00 2001 From: Simon Pribylski <66266021+Persson-dev@users.noreply.github.com> Date: Thu, 21 Apr 2022 18:05:09 +0200 Subject: Protocol sources fixes (#5411) * Move HANDLE_READ to header * Fix compiler warnings * Removed unnecessary default statement --- src/Protocol/Protocol_1_14.cpp | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'src/Protocol/Protocol_1_14.cpp') diff --git a/src/Protocol/Protocol_1_14.cpp b/src/Protocol/Protocol_1_14.cpp index dfe137c34..159bd7757 100644 --- a/src/Protocol/Protocol_1_14.cpp +++ b/src/Protocol/Protocol_1_14.cpp @@ -50,19 +50,6 @@ Implements the 1.14 protocol classes: -#define HANDLE_READ(ByteBuf, Proc, Type, Var) \ - Type Var; \ - do { \ - if (!ByteBuf.Proc(Var))\ - {\ - return;\ - } \ - } while (false) - - - - - //////////////////////////////////////////////////////////////////////////////// // cProtocol_1_14: @@ -733,6 +720,7 @@ UInt8 cProtocol_1_14::GetProtocolEntityType(const cEntity & a_Entity) const case PType::pkFirework: return 26; case PType::pkWitherSkull: return 92; } + break; } case Type::etFloater: return 101; case Type::etItemFrame: return 35; -- cgit v1.2.3