Skip to content

Commit

Permalink
[Death Knight] Fix Necrobomb damage
Browse files Browse the repository at this point in the history
  • Loading branch information
navv1234 committed Jul 24, 2017
1 parent c283f3e commit cae482b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion engine/class_modules/sc_death_knight.cpp
Expand Up @@ -3266,6 +3266,16 @@ struct necrobomb_t : public death_knight_spell_t

return m;
}

double composite_target_multiplier( player_t* target ) const override
{
double m = death_knight_spell_t::composite_target_multiplier( target );

// Necrobomb does not benefit from the Death debuff of AotD ghouls
m /= 1.0 + td( target ) -> debuff.death -> check_stack_value();

return m;
}
};


Expand All @@ -3281,7 +3291,7 @@ struct dragged_to_helheim_t : public death_knight_spell_t
callbacks = false;
}

double composite_target_multiplier( player_t* target ) const
double composite_target_multiplier( player_t* target ) const override
{
double m = death_knight_spell_t::composite_target_multiplier( target );

Expand Down

0 comments on commit cae482b

Please sign in to comment.