make item name bold

This commit is contained in:
lopar 2019-01-12 12:12:02 +02:00
parent 6528e58d10
commit 1cc3e58a7f
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ class InventoryItem extends Item
$this->artefact = $row['artefact'];
if ($this->artefact) $this->name = <<<NAME
<span style='color: darkorange;'>{$this->name}</span><img src="//{$_SERVER['SERVER_NAME']}/i/artefact1.gif">
<b style='color: darkorange;'>{$this->name}</b><img src="//{$_SERVER['SERVER_NAME']}/i/artefact1.gif">
NAME;
}

View File

@ -156,7 +156,7 @@ abstract class Item
protected function printBaseInfo()
{
echo $this->name . " (Масса: " . $this->massa . ")";
echo "<b>" . $this->name . "</b> (Масса: " . $this->massa . ")";
if ($this->nalign) echo " <img src=i/align_{$this->nalign}.gif title='Этот предмет могут использовать только игроки с определённой склонностью.'> ";
if ($this->maxdur > 0) echo "<br>Долговечность: {$this->maxdur}";
if ($this->maxdur == -1) echo "<br>Долговечность: <i>неразрушимо</i>";