Lowered max lag acceptance to resend packets

This commit is contained in:
Shoghi Cervantes 2013-06-09 21:55:43 +02:00
parent 3ab3526404
commit ca8be7b047

View File

@ -887,7 +887,7 @@ class Player{
$this->sendBuffer();
}
$limit = $time - 8; //max lag
$limit = $time - 5; //max lag
foreach($this->recoveryQueue as $count => $data){
if($data["sendtime"] > $limit){
break;