Optimized networking code & AxisAlignedBB

This commit is contained in:
Shoghi Cervantes
2014-10-30 22:06:07 +01:00
parent 673b867ee8
commit 7ab3c57b00
6 changed files with 55 additions and 15 deletions

View File

@ -74,7 +74,7 @@ class Binary{
* @return string
*/
public static function writeLTriad($value){
return substr(pack("N", $value), 0, -1);
return substr(pack("V", $value), 0, -1);
}
/**