mapqueue fix, begin mapactions class

This commit is contained in:
kremsy
2014-05-09 11:58:33 +02:00
parent 274384767c
commit a51d5423a3
6 changed files with 79 additions and 8 deletions

View File

@ -54,6 +54,7 @@ class MapManager implements CallbackListener {
public $mapList = null;
public $mxList = null;
public $mxManager = null;
public $mapActions = null;
/*
* Private Properties
@ -82,6 +83,7 @@ class MapManager implements CallbackListener {
$this->mxList = new ManiaExchangeList($this->maniaControl);
$this->mapCommands = new MapCommands($maniaControl);
$this->mapQueue = new MapQueue($this->maniaControl);
$this->mapActions = new MapActions($maniaControl);
// Register for callbacks
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_ONINIT, $this, 'handleOnInit');