public function startVacationMode()
 {
     if (!ALLOW_VACATION_MODE) {
         $this->error = 'vacation_disabled';
         return false;
     }
     Neuron_GameServer_Mappers_PlayerMapper::startVacationMode($this);
     return true;
 }