From 6625dab9c1c4f756e41c7cf257a0910d62b3c250 Mon Sep 17 00:00:00 2001 From: Maple Nebel Date: Sat, 8 Nov 2025 20:27:36 +0000 Subject: [PATCH] fix is_reachable --- rnex-core/src/nex/matchmake.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rnex-core/src/nex/matchmake.rs b/rnex-core/src/nex/matchmake.rs index f74be5d..a2f8c20 100644 --- a/rnex-core/src/nex/matchmake.rs +++ b/rnex-core/src/nex/matchmake.rs @@ -253,8 +253,8 @@ impl ExtendedMatchmakeSession{ self.session.open_participation } } else { - !self.has_active_players() - }) & !self.has_active_players() + self.has_active_players() + }) & self.has_active_players() } #[inline] pub fn is_joinable(&self) -> bool{