This commit is contained in:
Simon Gardling 2025-04-29 18:43:38 -04:00
parent 111ce718da
commit aeca76fda6
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D

View File

@ -81,7 +81,7 @@ impl Ord for MoveValueStats {
}
let (s_cw, o_cw) = (self.chance_win(), other.chance_win());
if s_cw.is_some() | o_cw.is_some() {
if s_cw.is_some() || o_cw.is_some() {
if s_cw > o_cw {
return Ordering::Greater;
} else if o_cw > s_cw {