- fixed core instances creation order

- minor fixes/improvements
This commit is contained in:
Steffen Schröder
2013-11-26 13:49:36 +01:00
parent 7f1646f25d
commit fc66d2d34b
3 changed files with 16 additions and 2 deletions

View File

@ -84,8 +84,8 @@ class ManiaControl implements CommandListener {
$this->chat = new Chat($this);
$this->commandManager = new CommandManager($this);
$this->server = new Server($this);
$this->authenticationManager = new AuthenticationManager($this);
$this->playerManager = new PlayerManager($this);
$this->authenticationManager = new AuthenticationManager($this);
$this->mapManager = new MapManager($this);
$this->pluginManager = new PluginManager($this);