diff --git a/hwe/sammo/Scenario/NPC.php b/hwe/sammo/Scenario/NPC.php index abb68a11..629cfce9 100644 --- a/hwe/sammo/Scenario/NPC.php +++ b/hwe/sammo/Scenario/NPC.php @@ -75,7 +75,7 @@ class NPC{ $age = $year - $this->birth; $name = $this->name; - if($this->death < $year){ + if($this->death <= $year){ return true; //죽었으니 넘어간다. } if($age < \sammo\GameConst::$adultAge){