Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions changelogs/5.41.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,9 @@ Consider using the `mcpe-protocol` directive in `plugin.yml` as a constraint if
- `#[SilentDiscard]` annotation may be used on `PacketHandler` classes to suppress debug messages about unhandled packets, without being forced to decode them.
- `PacketHandlerInspector` class contains the logic used to examine `PacketHandler`s to decide if they will accept a packet.

# 5.41.1
Released 19th March 2025.

## Fixes
- Fixed logging crash in `LoginPacketHandler`. (@ArkadiaEU)
- Fixed glowstone not being consumed when charging a respawn anchor. (@Wraith0x10)
2 changes: 1 addition & 1 deletion src/VersionInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
final class VersionInfo{
public const NAME = "PocketMine-MP";
public const BASE_VERSION = "5.41.1";
public const IS_DEVELOPMENT_BUILD = true;
public const IS_DEVELOPMENT_BUILD = false;
public const BUILD_CHANNEL = "stable";
public const GITHUB_URL = "https://github.com/pmmp/PocketMine-MP";

Expand Down
Loading