mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-05 17:41:46 +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(){
|
public function getBandwidth(){
|
||||||
return array_sum($this->bandwidthStats) / max(1, count($this->bandwidthStats));
|
return array_sum($this->bandwidthStats) / max(1, count($this->bandwidthStats));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function clearQueue(){
|
public function clearQueue(){
|
||||||
|
if($this->connected === false){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
ksort($this->received);
|
ksort($this->received);
|
||||||
if(($cnt = count($this->received)) > PLAYER_MAX_QUEUE){
|
if(($cnt = count($this->received)) > PLAYER_MAX_QUEUE){
|
||||||
foreach($this->received as $c => $t){
|
foreach($this->received as $c => $t){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user