Fix issue with colored message on some languages (#910)

This commit is contained in:
Johnmacrocraft
2017-05-15 18:07:01 +09:00
committed by Dylan K. Taylor
parent c7c7a40899
commit 0935855def
2 changed files with 2 additions and 2 deletions

View File

@ -1443,7 +1443,7 @@ class Server{
$this->memoryManager = new MemoryManager($this);
$this->logger->info($this->getLanguage()->translateString("pocketmine.server.start", [TextFormat::AQUA . $this->getVersion()]));
$this->logger->info($this->getLanguage()->translateString("pocketmine.server.start", [TextFormat::AQUA . $this->getVersion() . TextFormat::RESET]));
if(($poolSize = $this->getProperty("settings.async-workers", "auto")) === "auto"){
$poolSize = ServerScheduler::$WORKERS;