示例#1
0
文件: Character.php 项目: uhtoff/WotR
 /**
  * @param bool $casualty
  */
 public function becomeCasualty($casualty = true)
 {
     if ($this->getFellowship()) {
         $this->leaveFellowship();
     }
     parent::becomeCasualty($casualty);
     $this->setCasualty(true);
 }