From 4fed08bcd4655d7eec8d2cdf88950789f99ed2ee Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Fri, 26 Jun 2020 14:15:58 +0100 Subject: [PATCH] ProtocolInfo: fixed version number --- src/pocketmine/network/mcpe/protocol/ProtocolInfo.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pocketmine/network/mcpe/protocol/ProtocolInfo.php b/src/pocketmine/network/mcpe/protocol/ProtocolInfo.php index 983f23a6b..c4a1fc568 100644 --- a/src/pocketmine/network/mcpe/protocol/ProtocolInfo.php +++ b/src/pocketmine/network/mcpe/protocol/ProtocolInfo.php @@ -39,9 +39,9 @@ interface ProtocolInfo{ /** Actual Minecraft: PE protocol version */ public const CURRENT_PROTOCOL = 407; /** Current Minecraft PE version reported by the server. This is usually the earliest currently supported version. */ - public const MINECRAFT_VERSION = 'v1.16.0.67 beta'; + public const MINECRAFT_VERSION = 'v1.16.0'; /** Version number sent to clients in ping responses. */ - public const MINECRAFT_VERSION_NETWORK = '1.16.0.67'; + public const MINECRAFT_VERSION_NETWORK = '1.16.0'; public const LOGIN_PACKET = 0x01; public const PLAY_STATUS_PACKET = 0x02;