plugins unregistering from timerlistener

This commit is contained in:
kremsy
2014-02-01 14:50:24 +01:00
committed by Steffen Schröder
parent d701daeed7
commit 2ffa4b47c4
7 changed files with 8 additions and 1 deletions

View File

@ -88,6 +88,7 @@ class QueuePlugin implements CallbackListener, CommandListener, ManialinkPageAns
public function unload() {
$this->maniaControl->manialinkManager->unregisterManialinkPageAnswerListener($this);
$this->maniaControl->callbackManager->unregisterCallbackListener($this);
$this->maniaControl->timerManager->unregisterTimerListenings($this);
foreach($this->spectators as $spectator) {
$this->maniaControl->client->forceSpectator($spectator, 3);
@ -101,7 +102,7 @@ class QueuePlugin implements CallbackListener, CommandListener, ManialinkPageAns
$this->queue = array();
$this->spectators = array();
$this->showPlay = array();
$this->maniaControl = null;
unset($this->maniaControl);
}
/**