mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-07 10:22:56 +00:00
Fixed ChunkData, faster, action queue, NACK
This commit is contained in:
@ -60,7 +60,7 @@ class LevelAPI{
|
||||
for($i = 0;$i < 0xff; ){
|
||||
$ordered[$i] = str_repeat("\x00", $i);
|
||||
for($j = 0; $j < $columnsPerPacket; ++$j){
|
||||
if(($i + $j) >= 0xff){
|
||||
if(($i + $j) > 0xff){
|
||||
break;
|
||||
}
|
||||
$ordered[$i] .= "\xff";
|
||||
|
Reference in New Issue
Block a user