Collisions and normal style movement

This commit is contained in:
Thinkofname 2016-03-26 10:19:16 +00:00
parent 03bdb015e5
commit 57bced4a9b
1 changed files with 1 additions and 1 deletions

View File

@ -753,7 +753,7 @@ impl Conn {
if self.compression_threshold >= 0 && extra == 1 {
try!(VarInt(0).write_to(self));
}
try!(self.write_all(&buf.into_boxed_slice()));
try!(self.write_all(&buf));
Result::Ok(())
}