fix: constraint needed time XvB

This commit is contained in:
Cyrix126 2024-10-30 20:20:56 +01:00
parent 173aadd2dd
commit 517c5922c5

View file

@ -581,6 +581,6 @@ impl<'a> Algorithm<'a> {
XVB_TIME_ALGO);
// never go above time of algo
// it could be the case if manual donation level is set
needed_time.max(XVB_TIME_ALGO as f32) as u32
needed_time.clamp(0.0, XVB_TIME_ALGO as f32) as u32
}
}