renamed player actions class

This commit is contained in:
Steffen Schröder
2014-07-19 23:37:19 +02:00
parent 61d80b340d
commit f0862f7f16
7 changed files with 44 additions and 44 deletions

View File

@ -35,7 +35,7 @@ class PlayerManager implements CallbackListener, TimerListener {
/*
* Public Properties
*/
public $playerActions = null;
public $actions = null;
public $playerCommands = null;
public $playerDetailed = null;
public $playerList = null;
@ -58,7 +58,7 @@ class PlayerManager implements CallbackListener, TimerListener {
$this->initTables();
$this->playerCommands = new PlayerCommands($maniaControl);
$this->playerActions = new PlayerActions($maniaControl);
$this->actions = new Actions($maniaControl);
$this->playerDetailed = new PlayerDetailed($maniaControl);
$this->playerDataManager = new PlayerDataManager($maniaControl);
$this->playerList = new PlayerList($maniaControl);