-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Assemble 1.21.30 #6453
Assemble 1.21.30 #6453
Conversation
src/data/bedrock/block/convert/BlockStateToObjectDeserializer.php
Outdated
Show resolved
Hide resolved
src/network/mcpe/NetworkSession.php
Outdated
$this->tryDisconnect(function() use ($ip, $port, $reason) : void{ | ||
$this->sendDataPacket(TransferPacket::create($ip, $port), true); | ||
$this->tryDisconnect(function() use ($ip, $port, $reason, $reloadWorld) : void{ | ||
$this->sendDataPacket(TransferPacket::create($ip, $port, $reloadWorld), true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this property for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As far as I know it just bricks hard transfers whenever it's true. No clue what it's supposed to do
Seems to be irrelevant for the client, we cannot risk rebroadcasting random values received
hello, how to have pocketmine mp to the newest version? |
Client is not being transferred in case of `true`, maybe it's expects something else after `TransferPacket`...
Introduction
This PR updates PM5 to 1.21.30
Changes
Backwards compatibility
See pmmp/BedrockProtocol#270