Skip to content

Commit

Permalink
[Priest] Manipulate set Procflags.
Browse files Browse the repository at this point in the history
* Would love the Periodic flag, set is 1% weaker than it should be.
  • Loading branch information
Saeldur committed Jan 13, 2025
1 parent d3cf22f commit 2885ca8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion engine/class_modules/priest/sc_priest_shadow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2641,7 +2641,10 @@ void priest_t::init_special_effects_shadow()
auto set_effect = new special_effect_t( this );
set_effect->name_str = util::tokenize_fn( set_spell->name_cstr() );
set_effect->type = SPECIAL_EFFECT_EQUIP;
set_effect->proc_flags2_ = PF2_ALL_HIT;
set_effect->proc_flags2_ = bugs ? PF2_ALL_HIT : PF2_ALL_HIT | PF2_PERIODIC_DAMAGE;
if ( !bugs )
set_effect->proc_flags_ = PF_MAGIC_SPELL | PF_PERIODIC;

set_effect->spell_id = set_spell->id();
special_effects.push_back( set_effect );

Expand Down

0 comments on commit 2885ca8

Please sign in to comment.