| 169 | } |
| 170 | |
| 171 | void PlayerUniverseMap::removeMappedObject(CelestialCoordinate const& system, Uuid const& uuid) { |
| 172 | auto& universeMap = m_universeMaps[*m_serverUuid]; |
| 173 | if (auto systemMap = universeMap.systems.ptr(system.location())) |
| 174 | systemMap->mappedObjects.remove(uuid); |
| 175 | } |
| 176 | |
| 177 | void PlayerUniverseMap::filterMappedObjects(CelestialCoordinate const& system, List<Uuid> const& allowed) { |
| 178 | auto& universeMap = m_universeMaps[*m_serverUuid]; |
no test coverage detected