diff --git a/dZoneManager/Level.cpp b/dZoneManager/Level.cpp index 60f69359..0a46dc89 100644 --- a/dZoneManager/Level.cpp +++ b/dZoneManager/Level.cpp @@ -275,7 +275,7 @@ void Level::ReadSceneObjectDataChunk(std::istream& file, Header& header) { } // If this is a client only object, we can skip loading it if (data->GetKey() == u"loadOnClientOnly") { - skipLoadingObject = static_cast(std::stoi(data->GetValueAsString())); + skipLoadingObject |= static_cast(std::stoi(data->GetValueAsString())); break; } }