From 97dd8704a353eac0909a4a2162fb2cfb29516217 Mon Sep 17 00:00:00 2001 From: Koncord Date: Sat, 7 Jan 2017 23:05:22 +0800 Subject: [PATCH] Ignore ping packets --- apps/openmw-mp/Networking.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/openmw-mp/Networking.cpp b/apps/openmw-mp/Networking.cpp index ffa0fef5a..f3f794410 100644 --- a/apps/openmw-mp/Networking.cpp +++ b/apps/openmw-mp/Networking.cpp @@ -862,6 +862,9 @@ int Networking::mainLoop() packet->systemAddress.ToString()); disconnectPlayer(packet->guid); break; + case ID_CONNECTED_PING: + case ID_UNCONNECTED_PING: + break; default: update(packet); break;