mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-07 12:18:46 +00:00
Release 4.22.1
This commit is contained in:
parent
9a04481bec
commit
ee903cad1f
@ -22,3 +22,13 @@ If you're upgrading from 4.20.x directly to 4.22.x, please also read the followi
|
|||||||
## Fixes
|
## Fixes
|
||||||
- Removed deprecated `ReflectionProperty::setAccessible()` calls.
|
- Removed deprecated `ReflectionProperty::setAccessible()` calls.
|
||||||
- Fixed jukebox music not stopping when destroyed by an explosion.
|
- Fixed jukebox music not stopping when destroyed by an explosion.
|
||||||
|
|
||||||
|
# 4.22.1
|
||||||
|
Released 9th June 2023.
|
||||||
|
|
||||||
|
## Fixes
|
||||||
|
- Reokaced workaround for an old teleporting client bug:
|
||||||
|
- This workaround broke due to an additional client bug introduced by 1.20, causing players to become frozen to observers when teleported.
|
||||||
|
- The original client bug has still not been fixed, meaning a new workaround was needed, but no perfect solution could be found.
|
||||||
|
- The new workaround involves broadcasting teleport movements as regular movements, which causes unwanted interpolation between the old and new positions, but otherwise works correctly. This solution is not ideal, but it is the best we can do for now.
|
||||||
|
- See issues [#4394](https://github.com/pmmp/PocketMine-MP/issues/4394) and [#5810](https://github.com/pmmp/PocketMine-MP/issues/5810) for more details.
|
||||||
|
@ -32,7 +32,7 @@ use function str_repeat;
|
|||||||
final class VersionInfo{
|
final class VersionInfo{
|
||||||
public const NAME = "PocketMine-MP";
|
public const NAME = "PocketMine-MP";
|
||||||
public const BASE_VERSION = "4.22.1";
|
public const BASE_VERSION = "4.22.1";
|
||||||
public const IS_DEVELOPMENT_BUILD = true;
|
public const IS_DEVELOPMENT_BUILD = false;
|
||||||
public const BUILD_CHANNEL = "stable";
|
public const BUILD_CHANNEL = "stable";
|
||||||
|
|
||||||
private function __construct(){
|
private function __construct(){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user