From 599d5253dbeb9d950c44f1121dc1e2702d17cca4 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Wed, 7 Apr 2021 18:32:10 +0100 Subject: [PATCH] Release 3.18.2 --- changelogs/3.18.md | 5 +++++ src/pocketmine/VersionInfo.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/changelogs/3.18.md b/changelogs/3.18.md index deab48c74..635100ca7 100644 --- a/changelogs/3.18.md +++ b/changelogs/3.18.md @@ -24,3 +24,8 @@ Plugin developers should **only** update their required API to this version if y - Fixed field order in ClientCacheBlobStatusPacket (hits and misses were inverted). - Fixed a deadlock that could occur when MainLogger->syncFlushBuffer() was used (usually only used during exception logging). - Updated constants for various things in the protocol. + +# 3.18.2 +- Fixed `InventoryCloseEvent` not being called on server-initiated inventory closures. +- `PlayerToggleFlightEvent` may now be pre-cancelled if the player attempted to enable flight when flying was not allowed. This replaces the previous behaviour of kicking the player. +- Fixed being unable to change the item in hand from the inventory window when looking at an entity. diff --git a/src/pocketmine/VersionInfo.php b/src/pocketmine/VersionInfo.php index a0c36ecc3..bca7aee31 100644 --- a/src/pocketmine/VersionInfo.php +++ b/src/pocketmine/VersionInfo.php @@ -34,5 +34,5 @@ const _VERSION_INFO_INCLUDED = true; const NAME = "PocketMine-MP"; const BASE_VERSION = "3.18.2"; -const IS_DEVELOPMENT_BUILD = true; +const IS_DEVELOPMENT_BUILD = false; const BUILD_NUMBER = 0;