1
0
Fork 0

Merge branch 'feature-xp_nerf'

This commit is contained in:
Andrew Tomaka 2012-11-07 21:58:34 -05:00
commit 239ecffa0e
1 changed files with 4 additions and 1 deletions

View File

@ -96,8 +96,11 @@ class DPClass {
}
function miscScore() {
$bonusXP = $this->getStat('Exp Bonus');
if($bonusXP >= .35) $bonusXP -= .35;
return 1 + ($this->getStat('Melee Damage Reduction') + $this->getStat('Missile Damage Reduction')
+ $this->getStat('Exp Bonus')) / 2;
+ $bonusXP) / 2;
}
function getStat($name) {