Skip to content
This repository has been archived by the owner on Feb 9, 2021. It is now read-only.

Commit

Permalink
Merge pull request #2294 from LukeDarling/patch-1
Browse files Browse the repository at this point in the history
fixed version message color
  • Loading branch information
msjyoo committed Nov 15, 2014
2 parents 05ac256 + 5657cce commit 6796fca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pocketmine/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -1564,7 +1564,7 @@ public function __construct(\ClassLoader $autoloader, \ThreadedLogger $logger, $

$this->addInterface($this->mainInterface = new RakLibInterface($this));

$this->logger->info("This server is running " . $this->getName() . " version " . ($version->isDev() ? TextFormat::YELLOW : "") . $version->get(true) . TextFormat::RESET . " \"" . $this->getCodename() . "\" (API " . $this->getApiVersion() . ")", true, true, 0);
$this->logger->info("This server is running " . $this->getName() . " version " . ($version->isDev() ? TextFormat::YELLOW : "") . $version->get(true) . TextFormat::WHITE . " \"" . $this->getCodename() . "\" (API " . $this->getApiVersion() . ")", true, true, 0);
$this->logger->info($this->getName() . " is distributed under the LGPL License", true, true, 0);

PluginManager::$pluginParentTimer = new TimingsHandler("** Plugins");
Expand Down

0 comments on commit 6796fca

Please sign in to comment.