Human: fixed hunger underflow when value is a fraction, closes #2761

This commit is contained in:
Dylan K. Taylor 2019-02-14 16:01:25 +00:00
parent 44697e784a
commit e1bacb5c6d

View File

@ -301,7 +301,7 @@ class Human extends Creature implements ProjectileSource, InventoryHolder{
$food = $this->getFood();
if($food > 0){
$food--;
$this->setFood($food);
$this->setFood(max($food, 0));
}
}
}