summaryrefslogtreecommitdiffstats
path: root/src/Protocol/Protocol17x.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-09-06 18:59:17 +0200
committerMattes D <github@xoft.cz>2014-09-06 18:59:17 +0200
commit0a651b9fd83f078a73429f02603144e80a05148d (patch)
treecb9b30cc975b884dd2da97271da6570c4eb70537 /src/Protocol/Protocol17x.cpp
parentAlpha-sorted protocol 1.7 senders. (diff)
downloadcuberite-0a651b9fd83f078a73429f02603144e80a05148d.tar
cuberite-0a651b9fd83f078a73429f02603144e80a05148d.tar.gz
cuberite-0a651b9fd83f078a73429f02603144e80a05148d.tar.bz2
cuberite-0a651b9fd83f078a73429f02603144e80a05148d.tar.lz
cuberite-0a651b9fd83f078a73429f02603144e80a05148d.tar.xz
cuberite-0a651b9fd83f078a73429f02603144e80a05148d.tar.zst
cuberite-0a651b9fd83f078a73429f02603144e80a05148d.zip
Diffstat (limited to 'src/Protocol/Protocol17x.cpp')
-rw-r--r--src/Protocol/Protocol17x.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Protocol/Protocol17x.cpp b/src/Protocol/Protocol17x.cpp
index 1091b877f..f24ef320d 100644
--- a/src/Protocol/Protocol17x.cpp
+++ b/src/Protocol/Protocol17x.cpp
@@ -1355,6 +1355,7 @@ void cProtocol172::SendUpdateBlockEntity(cBlockEntity & a_BlockEntity)
void cProtocol172::SendUpdateSign(int a_BlockX, int a_BlockY, int a_BlockZ, const AString & a_Line1, const AString & a_Line2, const AString & a_Line3, const AString & a_Line4)
{
ASSERT(m_State == 3); // In game mode?
+ ASSERT((a_BlockY >= 0) && (a_BlockY < cChunkDef::Height));
cPacketizer Pkt(*this, 0x33);
Pkt.WriteInt(a_BlockX);