fix matchmaking conditions
This commit is contained in:
parent
2024c80575
commit
8b26895bd2
1 changed files with 3 additions and 3 deletions
|
|
@ -401,7 +401,7 @@ impl ExtendedMatchmakeSession {
|
|||
|
||||
#[cfg(feature = "splatoon")]
|
||||
{
|
||||
if search_criteria.attribs.get(0).is_some_and(|s| {
|
||||
if !search_criteria.attribs.get(0).is_some_and(|s| {
|
||||
self.session
|
||||
.attributes
|
||||
.get(0)
|
||||
|
|
@ -409,7 +409,7 @@ impl ExtendedMatchmakeSession {
|
|||
}) {
|
||||
return Ok(false);
|
||||
}
|
||||
if search_criteria.attribs.get(2).is_some_and(|s| {
|
||||
if !search_criteria.attribs.get(2).is_some_and(|s: w| {
|
||||
self.session
|
||||
.attributes
|
||||
.get(2)
|
||||
|
|
@ -417,7 +417,7 @@ impl ExtendedMatchmakeSession {
|
|||
}) {
|
||||
return Ok(false);
|
||||
}
|
||||
if search_criteria.attribs.get(3).is_some_and(|s| {
|
||||
if !search_criteria.attribs.get(3).is_some_and(|s| {
|
||||
self.session
|
||||
.attributes
|
||||
.get(3)
|
||||
|
|
|
|||
Loading…
Reference in a new issue