diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Protocol/Protocol_1_8.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Protocol/Protocol_1_8.cpp b/src/Protocol/Protocol_1_8.cpp index e2e8ca499..4bbf5f93e 100644 --- a/src/Protocol/Protocol_1_8.cpp +++ b/src/Protocol/Protocol_1_8.cpp @@ -2880,7 +2880,7 @@ void cProtocol_1_8_0::HandleVanillaPluginMessage(cByteBuffer & a_ByteBuffer, con // Read the payload and send it through to the clienthandle: ContiguousByteBuffer Message; - VERIFY(a_ByteBuffer.ReadSome(Message, a_ByteBuffer.GetReadableSpace() - 1)); + VERIFY(a_ByteBuffer.ReadSome(Message, a_ByteBuffer.GetReadableSpace())); m_Client->HandlePluginMessage(a_Channel, Message); } |