mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-06 18:11:52 +00:00
Change buffer unread assertion to debug
I lost count of how many times I changed this now... what happened to the other times?
This commit is contained in:
parent
d4bb078566
commit
efea39e0a4
@ -3406,7 +3406,10 @@ class Player extends Human implements CommandSender, InventoryHolder, ChunkLoade
|
|||||||
$timings->startTiming();
|
$timings->startTiming();
|
||||||
|
|
||||||
$packet->decode();
|
$packet->decode();
|
||||||
assert($packet->feof(), "Still " . strlen(substr($packet->buffer, $packet->offset)) . " bytes unread in " . get_class($packet));
|
if(!$packet->feof()){
|
||||||
|
$remains = substr($packet->buffer, $packet->offset);
|
||||||
|
$this->server->getLogger()->debug("Still " . strlen($remains) . " bytes unread in " . $packet->getName() . ": 0x" . bin2hex($remains));
|
||||||
|
}
|
||||||
|
|
||||||
$this->server->getPluginManager()->callEvent($ev = new DataPacketReceiveEvent($this, $packet));
|
$this->server->getPluginManager()->callEvent($ev = new DataPacketReceiveEvent($this, $packet));
|
||||||
if(!$ev->isCancelled() and !$packet->handle($this)){
|
if(!$ev->isCancelled() and !$packet->handle($this)){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user