Skip to content

Commit

Permalink
[Priest] Dissonant Echoes is now proc'd on cast
Browse files Browse the repository at this point in the history
  • Loading branch information
seanpeters86 committed Oct 1, 2020
1 parent 5bf5d25 commit f7dd450
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions engine/class_modules/priest/sc_priest_shadow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1112,15 +1112,6 @@ struct void_bolt_t final : public priest_spell_t
// Assuming how this works based on the blue post
td.dots.devouring_plague->refresh_duration();
}

if ( priest().conduits.dissonant_echoes->ok() && priest().buffs.voidform->check() )
{
if ( rng().roll( priest().conduits.dissonant_echoes.percent() ) )
{
priest().cooldowns.void_bolt->reset( true );
priest().procs.dissonant_echoes->occur();
}
}
}
};

Expand Down Expand Up @@ -1160,6 +1151,15 @@ struct void_bolt_t final : public priest_spell_t
{
priest().buffs.dissonant_echoes->expire();
}

if ( priest().conduits.dissonant_echoes->ok() && priest().buffs.voidform->check() )
{
if ( rng().roll( priest().conduits.dissonant_echoes.percent() ) )
{
priest().cooldowns.void_bolt->reset( true );
priest().procs.dissonant_echoes->occur();
}
}
}

bool ready() override
Expand Down

0 comments on commit f7dd450

Please sign in to comment.