Exemplo n.º 1
0
 protected function playerIllegalLeave($login)
 {
     \ManiaLive\Utilities\Logger::debug('Player illegal leave: ' . $login);
     $this->gui->createLabel($this->gui->getIllegalLeaveText(), null, null, false, false);
     $this->updateMatchPlayerState($login, Services\PlayerInfo::PLAYER_STATE_QUITTER);
     //If already waiting backup, no need to change state.
     //maybe the player won't have his 40 seconds to come back
     //but hard to manage all possible cases
     if ($this->state == self::WAITING_BACKUPS) {
         //Forcing wait backup to handle match cancellation etc...
         $this->waitBackups();
     } else {
         $this->changeState(self::PLAYER_LEFT);
     }
 }