diff --git a/includes/types/spell.class.php b/includes/types/spell.class.php index a2300e58..1b883ff1 100644 --- a/includes/types/spell.class.php +++ b/includes/types/spell.class.php @@ -771,7 +771,7 @@ class SpellList extends BaseType $str .= implode(', ', $runes); } else if ($this->curTpl['powerCostPercent'] > 0) // power cost: pct over static - $str .= $this->curTpl['powerCostPercent']."% ".sprintf(Lang::spell('pctCostOf'), strtolower(Lang::spell('powerTypes', $pt))); + $str .= $this->curTpl['powerCostPercent']."% ".sprintf(Lang::spell('pctCostOf'), mb_strtolower(Lang::spell('powerTypes', $pt))); else if ($this->curTpl['powerCost'] > 0 || $this->curTpl['powerPerSecond'] > 0 || $this->curTpl['powerCostPerLevel'] > 0) $str .= ($pt == POWER_RAGE || $pt == POWER_RUNIC_POWER ? $this->curTpl['powerCost'] / 10 : $this->curTpl['powerCost']).' '.Util::ucFirst(Lang::spell('powerTypes', $pt));