diff options
Diffstat (limited to 'shared/src/packets.rs')
-rw-r--r-- | shared/src/packets.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/src/packets.rs b/shared/src/packets.rs index 2100edc..093247d 100644 --- a/shared/src/packets.rs +++ b/shared/src/packets.rs @@ -186,7 +186,7 @@ impl<T> Display for Resource<T> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { write!( f, - "Res{{{:08x}{:08x}{:08x}{:08x}}}", + "Res{{{:016x}{:016x}{:016x}{:016x}}}", u64::from_be_bytes(self.0[0..8].try_into().unwrap()), u64::from_be_bytes(self.0[8..16].try_into().unwrap()), u64::from_be_bytes(self.0[16..24].try_into().unwrap()), |