mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
Items/Heirlooms
* damage range of melee weapons is noe 20% and ranged weapons 30% * removed localized number format from item-tooltips. this broke damage recalculation User/Weightscales * fixed managing weightscales by moving ! around
This commit is contained in:
@@ -1067,7 +1067,8 @@ class Util
|
||||
else
|
||||
$c = 2 / 52;
|
||||
|
||||
$result = Lang::nf($val / Util::$gtCombatRatings[$type] / $c, 2);
|
||||
// do not use localized number format here!
|
||||
$result = number_format($val / Util::$gtCombatRatings[$type] / $c, 2);
|
||||
}
|
||||
|
||||
if (!in_array($type, array(ITEM_MOD_DEFENSE_SKILL_RATING, ITEM_MOD_EXPERTISE_RATING)))
|
||||
|
||||
Reference in New Issue
Block a user