summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/network/core/packet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/core/packet.cpp b/src/network/core/packet.cpp
index a70bd6ca0..5f48ed055 100644
--- a/src/network/core/packet.cpp
+++ b/src/network/core/packet.cpp
@@ -141,7 +141,7 @@ bool Packet::CanReadFromPacket(uint bytes_to_read)
/* Check if variable is within packet-size */
if (this->pos + bytes_to_read > this->size) {
- this->cs->CloseConnection();
+ this->cs->NetworkSocketHandler::CloseConnection();
return false;
}