Merge branch 'feature-xp_nerf'
This commit is contained in:
commit
239ecffa0e
1 changed files with 4 additions and 1 deletions
|
@ -96,8 +96,11 @@ class DPClass {
|
||||||
}
|
}
|
||||||
|
|
||||||
function miscScore() {
|
function miscScore() {
|
||||||
|
$bonusXP = $this->getStat('Exp Bonus');
|
||||||
|
if($bonusXP >= .35) $bonusXP -= .35;
|
||||||
|
|
||||||
return 1 + ($this->getStat('Melee Damage Reduction') + $this->getStat('Missile Damage Reduction')
|
return 1 + ($this->getStat('Melee Damage Reduction') + $this->getStat('Missile Damage Reduction')
|
||||||
+ $this->getStat('Exp Bonus')) / 2;
|
+ $bonusXP) / 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getStat($name) {
|
function getStat($name) {
|
||||||
|
|
Loading…
Reference in a new issue