Fix hypothetical advantage not being calculated
This commit is contained in:
parent
38e0937d8f
commit
0771e5c370
|
@ -338,8 +338,8 @@ pub fn is_isolated(
|
|||
.bind((":pl", player.0 as i64))?
|
||||
.next()
|
||||
{
|
||||
None => Ok(false),
|
||||
Some(r) => r.map(|_| true),
|
||||
None => Ok(true),
|
||||
Some(r) => r.map(|_| false),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue