Забытые отступы и переводы строк

This commit is contained in:
Igor Barkov (iwork) 2020-07-22 13:15:26 +03:00
parent 101e95d452
commit f0bf7069de

View File

@ -100,7 +100,7 @@ IMG;
{
echo "<b>" . $this->name . "</b> (Масса: " . $this->weight . ")";
if ($this->durability) {
echo "<br> Долговечность:" . $this->durability;
echo "<br> Долговечность: " . $this->durability;
}
echo "<br><em>{$this->typename}</em><br>";
if ($this->need_strength > 0) {
@ -156,7 +156,7 @@ IMG;
$damage = $this->add_min_physical_damage . " - " . $this->add_max_physical_damage;
}
if (isset($damage)) {
echo "Урон: " . $damage;
echo "<br>Урон: " . $damage;
}
}
}