Better TPS

This commit is contained in:
Shoghi Cervantes Pueyo 2012-12-18 14:35:48 +01:00
parent c57fd5c8f7
commit b27a4aaabb
2 changed files with 2 additions and 2 deletions

View File

@ -411,7 +411,7 @@ class PocketMinecraftServer extends stdClass{
if($packet !== false){ if($packet !== false){
$this->packetHandler($packet); $this->packetHandler($packet);
}else{ }else{
usleep(10000); usleep(1000);
} }
} }
} }

View File

@ -55,7 +55,7 @@ class Session{
if($time > $this->timeout){ if($time > $this->timeout){
$this->close("timeout"); $this->close("timeout");
}else{ }else{
if(count($this->queue) > 0){ if(!empty($this->queue)){
$cnt = 0; $cnt = 0;
while($cnt < 4){ while($cnt < 4){
$p = array_shift($this->queue); $p = array_shift($this->queue);