コード例 #1
0
ファイル: SR_Player.php プロジェクト: sinfocol/gwf3
 public function gotKilledByHuman(SR_Player $killer)
 {
     SR_Bounty::onKilledByHuman($killer, $this);
     if (false === SR_KillProtect::isKillProtected($killer, $this)) {
         SR_KillProtect::onKilled($killer, $this);
     }
     if (false === SR_KillProtect::isKillProtectedLevel($killer, $this)) {
         $this->looseItem($killer);
     }
     // 		return $this->gotKilledByNPC($killer);
 }