mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-22 08:44:01 +00:00
Fixed clearQueue() action not being deleted
This commit is contained in:
parent
41084f51a6
commit
c73c1eb806
@ -899,8 +899,11 @@ class Player{
|
||||
public function getBandwidth(){
|
||||
return array_sum($this->bandwidthStats) / max(1, count($this->bandwidthStats));
|
||||
}
|
||||
|
||||
|
||||
public function clearQueue(){
|
||||
if($this->connected === false){
|
||||
return false;
|
||||
}
|
||||
ksort($this->received);
|
||||
if(($cnt = count($this->received)) > PLAYER_MAX_QUEUE){
|
||||
foreach($this->received as $c => $t){
|
||||
|
Loading…
x
Reference in New Issue
Block a user