summaryrefslogtreecommitdiffstats
path: root/src/Protocol/Protocol_1_13.cpp
diff options
context:
space:
mode:
authorSimon Pribylski <66266021+Persson-dev@users.noreply.github.com>2022-04-21 18:05:09 +0200
committerGitHub <noreply@github.com>2022-04-21 18:05:09 +0200
commit844a33933076a8e343de944b6eab26b4166e2f6f (patch)
treef1c69581153d462e40d116e117713c95aae1f84c /src/Protocol/Protocol_1_13.cpp
parentImproving 1.14 support (#5388) (diff)
downloadcuberite-844a33933076a8e343de944b6eab26b4166e2f6f.tar
cuberite-844a33933076a8e343de944b6eab26b4166e2f6f.tar.gz
cuberite-844a33933076a8e343de944b6eab26b4166e2f6f.tar.bz2
cuberite-844a33933076a8e343de944b6eab26b4166e2f6f.tar.lz
cuberite-844a33933076a8e343de944b6eab26b4166e2f6f.tar.xz
cuberite-844a33933076a8e343de944b6eab26b4166e2f6f.tar.zst
cuberite-844a33933076a8e343de944b6eab26b4166e2f6f.zip
Diffstat (limited to 'src/Protocol/Protocol_1_13.cpp')
-rw-r--r--src/Protocol/Protocol_1_13.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/Protocol/Protocol_1_13.cpp b/src/Protocol/Protocol_1_13.cpp
index 133d31ce4..8ac8916f4 100644
--- a/src/Protocol/Protocol_1_13.cpp
+++ b/src/Protocol/Protocol_1_13.cpp
@@ -41,36 +41,6 @@ Implements the 1.13 protocol classes:
-#define HANDLE_READ(ByteBuf, Proc, Type, Var) \
- Type Var; \
- do { \
- if (!ByteBuf.Proc(Var))\
- {\
- return;\
- } \
- } while (false)
-
-
-
-
-
-#define HANDLE_PACKET_READ(ByteBuf, Proc, Type, Var) \
- Type Var; \
- do { \
- { \
- if (!ByteBuf.Proc(Var)) \
- { \
- ByteBuf.CheckValid(); \
- return false; \
- } \
- ByteBuf.CheckValid(); \
- } \
- } while (false)
-
-
-
-
-
////////////////////////////////////////////////////////////////////////////////
// cProtocol_1_13: