Fix hypothetical advantage not being calculated

This commit is contained in:
Kiana Sheibani 2023-10-05 22:10:13 -04:00
parent 38e0937d8f
commit 0771e5c370
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -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),
}
}