diff --git a/classes/Item.php b/classes/Item.php index 6508cdd..a094461 100644 --- a/classes/Item.php +++ b/classes/Item.php @@ -155,7 +155,7 @@ IMG; } elseif ($this->add_min_physical_damage && $this->add_max_physical_damage) { $damage = $this->add_min_physical_damage . " - " . $this->add_max_physical_damage; } - if ($damage) { + if (isset($damage)) { echo "Урон: " . $damage; } }