Quote:
Originally Posted by hinch
just a note in the current version dont know if these are bugs or what.
defence is only showing the character base defence not defence + item defence bonus.
ie: warriors showing 370 defence and not 400+ (including item bonus)
on warlocks it shows shadow damage and shadow damage crit however doesn't show fire damage crit just fire damage.
perhaps changing shadow damage crit to just spell crit would be a good idea for multiple element casters.
|
Open up functions_wowcharcode.php in your editor and find
Code:
$value["fire crit change"]
The change should be obvious
line 474 , change
PHP Code:
$value["defense"] = $defenses['defense']['value'];
to
PHP Code:
$value["defense"] = $defenses['defense']['plusdefense'] + $defenses['defense']['value'];