Fixed low TPS

This commit is contained in:
Shoghi Cervantes 2013-08-29 09:21:52 +02:00
parent 31bf65ad5c
commit dc5b8ecd30

View File

@ -565,8 +565,12 @@ class PocketMinecraftServer{
$lastLoop = 0; $lastLoop = 0;
}else{ }else{
++$lastLoop; ++$lastLoop;
if($lastLoop >= 16){ if($lastLoop < 16){
usleep(5000); usleep(1);
}elseif($lastLoop >= 128){
usleep(100);
}elseif($lastLoop >= 256){
usleep(512);
} }
} }
} }