diff --git a/README.md b/README.md index 5b4e0fcbc..ec613ee56 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ ## Donate - Bitcoin Cash (BCH): `qq3r46hn6ljnhnqnfwxt5pg3g447eq9jhvw5ddfear` - Bitcoin (BTC): `171u8K9e4FtU6j3e5sqNoxKUgEw9qWQdRV` +- Stellar Lumens (XLM): `GAAC5WZ33HCTE3BFJFZJXONMEIBNHFLBXM2HJVAZHXXPYA3HP5XPPS7T` - [Patreon](https://www.patreon.com/pocketminemp) ## Licensing information diff --git a/build/make-release.php b/build/make-release.php index f23a036e1..c8a475e57 100644 --- a/build/make-release.php +++ b/build/make-release.php @@ -76,6 +76,6 @@ system('git tag ' . $currentVer->getBaseVersion()); replaceVersion($versionInfoPath, $nextVer->getBaseVersion(), true); system('git add "' . $versionInfoPath . '"'); system('git commit -m "' . $nextVer->getBaseVersion() . ' is next" --include "' . $versionInfoPath . '"'); -echo "pushing changes in 10 seconds\n"; -sleep(10); +echo "pushing changes in 5 seconds\n"; +sleep(5); system('git push origin HEAD ' . $currentVer->getBaseVersion()); diff --git a/build/php b/build/php index 8666ae5ad..830857144 160000 --- a/build/php +++ b/build/php @@ -1 +1 @@ -Subproject commit 8666ae5add7a8b5213d68b491ebf0de211998cc9 +Subproject commit 83085714483a0cf3a13b4fa780bd14b153c5c36b diff --git a/src/pocketmine/network/mcpe/protocol/AvailableCommandsPacket.php b/src/pocketmine/network/mcpe/protocol/AvailableCommandsPacket.php index 42607e17b..5a32a277c 100644 --- a/src/pocketmine/network/mcpe/protocol/AvailableCommandsPacket.php +++ b/src/pocketmine/network/mcpe/protocol/AvailableCommandsPacket.php @@ -227,6 +227,7 @@ class AvailableCommandsPacket extends DataPacket{ $retval->aliases = $enums[$this->getLInt()] ?? null; for($overloadIndex = 0, $overloadCount = $this->getUnsignedVarInt(); $overloadIndex < $overloadCount; ++$overloadIndex){ + $retval->overloads[$overloadIndex] = []; for($paramIndex = 0, $paramCount = $this->getUnsignedVarInt(); $paramIndex < $paramCount; ++$paramIndex){ $parameter = new CommandParameter(); $parameter->paramName = $this->getString();