Skip to content

Commit

Permalink
[Demon Hunter] Remove PTR check on Necrolord Covenant ability
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanMichaels committed Mar 13, 2021
1 parent 6d12195 commit 0213fbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/player/covenant.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ covenant_ability_cast_cb_t::covenant_ability_cast_cb_t( player_t* p, const speci
class_abilities.push_back( 317485 ); // Condemn Fury
}
// Fodder to the Flame proc spell (9.0.5 rework)
if ( p->dbc->ptr && p->type == DEMON_HUNTER && p->covenant->type() == covenant_e::NECROLORD )
if ( p->type == DEMON_HUNTER && p->covenant->type() == covenant_e::NECROLORD )
{
class_abilities.push_back( 350570 );
}
Expand Down

0 comments on commit 0213fbd

Please sign in to comment.