From e6536c74731f25aa55dac0423bf4f9ae41accf66 Mon Sep 17 00:00:00 2001 From: David Cernat Date: Fri, 7 Apr 2017 16:04:21 +0300 Subject: [PATCH] [Client] Disable basic NPC sync in preparation for overhaul --- apps/openmw/mwmp/Networking.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/openmw/mwmp/Networking.cpp b/apps/openmw/mwmp/Networking.cpp index aecdafaa4..cab2a11ab 100644 --- a/apps/openmw/mwmp/Networking.cpp +++ b/apps/openmw/mwmp/Networking.cpp @@ -859,13 +859,13 @@ void Networking::processWorldPacket(RakNet::Packet *packet) { LOG_MESSAGE_SIMPLE(Log::LOG_VERBOSE, "Received ID_ACTOR_AUTHORITY about %s", worldEvent.cell.getDescription().c_str()); - Main::get().getCellController()->initializeCellLocal(worldEvent.cell); + //Main::get().getCellController()->initializeCellLocal(worldEvent.cell); break; } case ID_ACTOR_FRAME: { - Main::get().getCellController()->readCellFrame(worldEvent); + //Main::get().getCellController()->readCellFrame(worldEvent); break; }