#include "server/client.hh" namespace server { bool client::is_in_pvs(const client& other) const noexcept { if (!other.has_initialised()) { return false; } if (!this->chunks.contains(other.get_player().get_chunk_pos())) { return false; } return true; } } // namespace server