From e09087de26a9a42ef520192a0753c93626c1b98d Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Wed, 29 Aug 2018 16:27:01 +0100 Subject: [PATCH] Fix version numbers --- 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 d7cc21f51..65c98a6f5 100644 --- a/src/pocketmine/network/mcpe/protocol/ProtocolInfo.php +++ b/src/pocketmine/network/mcpe/protocol/ProtocolInfo.php @@ -43,11 +43,11 @@ interface ProtocolInfo{ /** * Current Minecraft PE version reported by the server. This is usually the earliest currently supported version. */ - public const MINECRAFT_VERSION = 'v1.6.0.8 beta'; + public const MINECRAFT_VERSION = 'v1.6.0'; /** * Version number sent to clients in ping responses. */ - public const MINECRAFT_VERSION_NETWORK = '1.6.0.8'; + public const MINECRAFT_VERSION_NETWORK = '1.6.0'; public const LOGIN_PACKET = 0x01; public const PLAY_STATUS_PACKET = 0x02;