diff --git a/crates/shroom-pkt/src/proto/time.rs b/crates/shroom-pkt/src/proto/time.rs index ae5a009..d3dafa9 100755 --- a/crates/shroom-pkt/src/proto/time.rs +++ b/crates/shroom-pkt/src/proto/time.rs @@ -47,7 +47,7 @@ impl From<(bool, u32)> for ClientTimeOffset { impl From for (bool, u32) { fn from(v: ClientTimeOffset) -> Self { let v = v.0 .0; - (v >= 0, v.unsigned_abs()) + (v < 0, v.unsigned_abs()) } }