Skip to content

Commit 05a18f0

Browse files
committed
[Druid] disable proc callbacks on proxy buffs
1 parent d0c4791 commit 05a18f0

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

engine/class_modules/sc_druid.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10938,7 +10938,8 @@ void druid_t::create_buffs()
1093810938
buff.denizen_of_the_dream =
1093910939
make_fallback( talent.denizen_of_the_dream.ok(), this, "denizen_of_the_dream", find_spell( 394076 ) )
1094010940
->set_stack_behavior( buff_stack_behavior::ASYNCHRONOUS )
10941-
->set_max_stack( 10 );
10941+
->set_max_stack( 10 )
10942+
->set_proc_callbacks( false );
1094210943

1094310944
buff.dreamstate = make_fallback( talent.natures_grace.ok(), this, "dreamstate", find_spell( 450346 ) )
1094410945
->set_constant_behavior( buff_constant_behavior::NEVER_CONSTANT )
@@ -11331,7 +11332,8 @@ void druid_t::create_buffs()
1133111332
debug_cast<druid_absorb_buff_t*>( buff.ursocs_fury )->set_cumulative( true );
1133211333

1133311334
buff.waking_nightmare = make_fallback( talent.waking_nightmare.ok(),
11334-
this, "waking_nightmare", find_trigger( talent.waking_nightmare ).trigger() );
11335+
this, "waking_nightmare", find_trigger( talent.waking_nightmare ).trigger() )
11336+
->set_proc_callbacks( false );
1133511337

1133611338
buff.wild_guardian = make_fallback( talent.wild_guardian_1.ok(), this, "wild_guardian", find_spell( 1269616 ) );
1133711339

0 commit comments

Comments
 (0)