From bbc925b188751b5ff96d5c20ddc5b4731fe9a880 Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Pueyo Date: Thu, 14 Mar 2013 21:55:31 +0100 Subject: [PATCH] Updated Message level of World generation --- src/world/generator/Generator.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/generator/Generator.class.php b/src/world/generator/Generator.class.php index 5a18669c35..e3cd1771ff 100644 --- a/src/world/generator/Generator.class.php +++ b/src/world/generator/Generator.class.php @@ -308,7 +308,7 @@ class WorldGenerator{ $chunk = str_pad($this->getChunk($X, $Z), 86012, "\x00", STR_PAD_RIGHT); $this->raw .= Utils::writeLInt(strlen($chunk)) . $chunk; } - console("[DEBUG] Generating level ".ceil(($Z + 1)/0.16)."%", true, true, 2); + console("[NOTICE] Generating level ".ceil(($Z + 1)/0.16)."%"); } return true; }