From eb1ec2df054310bb024e553d6369ec871ea01e69 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Tue, 31 Jan 2017 11:49:55 +0000 Subject: [PATCH] Removed deprecated network constants --- src/pocketmine/PocketMine.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/pocketmine/PocketMine.php b/src/pocketmine/PocketMine.php index 26c765e21..8e3b5cc91 100644 --- a/src/pocketmine/PocketMine.php +++ b/src/pocketmine/PocketMine.php @@ -145,16 +145,6 @@ namespace pocketmine { define('pocketmine\DATA', isset($opts["data"]) ? $opts["data"] . DIRECTORY_SEPARATOR : \getcwd() . DIRECTORY_SEPARATOR); define('pocketmine\PLUGIN_PATH', isset($opts["plugins"]) ? $opts["plugins"] . DIRECTORY_SEPARATOR : \getcwd() . DIRECTORY_SEPARATOR . "plugins" . DIRECTORY_SEPARATOR); - /** - * @deprecated This constant has moved to {@link \pocketmine\network\protocol\Info} and will be removed from here in the future. - */ - const MINECRAFT_VERSION = ProtocolInfo::MINECRAFT_VERSION; - /** - * @deprecated This constant has moved to {@link \pocketmine\network\protocol\Info} and will be removed from here in the future. - */ - const MINECRAFT_VERSION_NETWORK = ProtocolInfo::MINECRAFT_VERSION_NETWORK; - - Terminal::init(); define('pocketmine\ANSI', Terminal::hasFormattingCodes());