diff --git a/src/API/ServerAPI.php b/src/API/ServerAPI.php index adcd7f02c..c909dd0e9 100644 --- a/src/API/ServerAPI.php +++ b/src/API/ServerAPI.php @@ -143,7 +143,7 @@ class ServerAPI{ $this->server = new PocketMinecraftServer($this->getProperty("server-name"), $this->getProperty("gamemode"), ($seed = $this->getProperty("level-seed")) != "" ? (int) $seed:false, $this->getProperty("server-port"), ($ip = $this->getProperty("server-ip")) != "" ? $ip:"0.0.0.0"); $this->server->api = $this; self::$serverRequest = $this->server; - console("[INFO] This server is running PocketMine-MP version ".($version->isDev() ? FORMAT_YELLOW:"").MAJOR_VERSION.FORMAT_RESET." (MCPE: ".CURRENT_MINECRAFT_VERSION.") (API ".CURRENT_API_VERSION.")", true, true, 0); + console("[INFO] This server is running PocketMine-MP version ".($version->isDev() ? FORMAT_YELLOW:"").MAJOR_VERSION.FORMAT_RESET." \"".CODENAME."\" (MCPE: ".CURRENT_MINECRAFT_VERSION.") (API ".CURRENT_API_VERSION.")", true, true, 0); console("[INFO] PocketMine-MP is distibuted under the LGPL License", true, true, 0); if($this->getProperty("upnp-forwarding") === true){ diff --git a/src/config.php b/src/config.php index 85a0ea1da..f123b18ba 100644 --- a/src/config.php +++ b/src/config.php @@ -59,7 +59,8 @@ set_include_path(get_include_path() . PATH_SEPARATOR . FILE_PATH); ini_set("memory_limit", "128M"); //Default define("LOG", true); define("START_TIME", microtime(true)); -define("MAJOR_VERSION", "Alpha_1.3.11dev"); +define("MAJOR_VERSION", "Alpha_1.3.11"); +define("CODENAME", "甘いビートルート"); define("CURRENT_MINECRAFT_VERSION", "v0.8.1 alpha"); define("CURRENT_API_VERSION", 11); define("CURRENT_PHP_VERSION", "5.5");