mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-22 00:33:59 +00:00
Fixed invalid ACK/NACK handling
This commit is contained in:
parent
6260d66bde
commit
42d5296533
@ -541,7 +541,7 @@ class Player{
|
||||
case 0xc0: //ACK
|
||||
$diff = $data[2] - $this->counter[2];
|
||||
if($diff > 8){ //Packet recovery
|
||||
$this->directDataPacket($this->recovery[$data[2]]["id"], $this->recovery[$data[2]]);
|
||||
$this->directDataPacket($this->recovery[$this->counter[2]]["id"], $this->recovery[$this->counter[2]]);
|
||||
}
|
||||
$this->counter[2] = $data[2];
|
||||
$this->recovery[$data[2]] = null;
|
||||
@ -550,7 +550,7 @@ class Player{
|
||||
if(isset($data[3])){
|
||||
$diff = $data[3] - $this->counter[2];
|
||||
if($diff > 8){ //Packet recovery
|
||||
$this->directDataPacket($this->recovery[$data[3]]["id"], $this->recovery[$data[3]]);
|
||||
$this->directDataPacket($this->recovery[$this->counter[2]]["id"], $this->recovery[$this->counter[2]]);
|
||||
}
|
||||
$this->counter[2] = $data[3];
|
||||
$this->recovery[$data[3]] = null;
|
||||
|
@ -62,7 +62,7 @@ class Packet{
|
||||
case 0xc0:
|
||||
case 0xa0:
|
||||
if($this->data[1] === false){
|
||||
$this->addRaw($this->data[$field]);
|
||||
$this->addRaw(strrev(Utils::writeTriad($this->data[$field])));
|
||||
}
|
||||
break;
|
||||
case 0x05:
|
||||
@ -174,7 +174,7 @@ class Packet{
|
||||
case 0xc0:
|
||||
case 0xa0:
|
||||
if($this->data[1] === false){
|
||||
$this->data[] = $this->get(3);
|
||||
$this->data[] = Utils::readTriad(strrev($this->get(3)));
|
||||
}
|
||||
break;
|
||||
case 0x05:
|
||||
|
Loading…
x
Reference in New Issue
Block a user