diff --git a/apps/openmw/mwmp/processors/world/ProcessorContainer.hpp b/apps/openmw/mwmp/processors/world/ProcessorContainer.hpp index bce080716..02a2fb8db 100644 --- a/apps/openmw/mwmp/processors/world/ProcessorContainer.hpp +++ b/apps/openmw/mwmp/processors/world/ProcessorContainer.hpp @@ -28,7 +28,7 @@ namespace mwmp event.cell.getDescription().c_str()); event.reset(); event.cell = *ptrCellStore->getCell(); - event.action = event.action == mwmp::BaseEvent::SET; + event.action = mwmp::BaseEvent::SET; event.addAllContainers(ptrCellStore); event.sendContainer(); } @@ -38,14 +38,14 @@ namespace mwmp std::vector requestObjects = event.worldObjects; event.reset(); event.cell = *ptrCellStore->getCell(); - event.action = event.action == mwmp::BaseEvent::SET; + event.action = mwmp::BaseEvent::SET; event.addRequestedContainers(ptrCellStore, requestObjects); if (event.worldObjects.size() > 0) event.sendContainer(); } } - // Otherwise, edit containers based on the information received + // Otherwise, edit containers based on the information received else { LOG_APPEND(Log::LOG_VERBOSE, "- Editing container contents to match those of packet", event.worldObjectCount);