From 6cf9331d31d26259f8fd242388abe17ce9d18e28 Mon Sep 17 00:00:00 2001 From: Justin Driggers Date: Tue, 14 Apr 2026 14:00:42 -0400 Subject: [PATCH 1/3] [Monk] Dragonfire Brew increases Breath of Fire damage by Stagger level * Considered a bug, since the Stagger amp occurs in addition to the newly-added 100% amp provided by DFB in 12.0 --- engine/class_modules/monk/sc_monk.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/engine/class_modules/monk/sc_monk.cpp b/engine/class_modules/monk/sc_monk.cpp index b38c61bb4ec..014d840202e 100644 --- a/engine/class_modules/monk/sc_monk.cpp +++ b/engine/class_modules/monk/sc_monk.cpp @@ -3210,6 +3210,14 @@ struct breath_of_fire_t : public monk_spell_t { dragonfire_brew = new dragonfire_brew_t( player ); add_child( dragonfire_brew ); + + if ( const auto &effect = player->talent.brewmaster.dragonfire_brew->effectN( 2 ); effect.ok() && player->bugs ) + add_parse_entry( da_multiplier_effects ) + .set_value_func( + [ this ]( double value ) { return 1.0 + p()->find_stagger( "Stagger" )->level_index() / 3.0 * value; } ) + .set_value( effect.percent() ) + .set_eff( &effect ) + .set_note( "Stagger Level Scaling"); } } @@ -7310,6 +7318,7 @@ class monk_report_t : public player_report_extension_t ReportIssue( "The ETL cache for both tigers resets to 0 when either spawn", "2023-08-03", true ); ReportIssue( "Chi Burst consumes both stacks of the buff on use", "2024-08-09", true ); ReportIssue( "Press the Advantage Tiger Palm does not trigger Overwhelming Force", "2026-02-09", true ); + ReportIssue( "Dragonfire Brew damage scales with Stagger level", "2026-04-14", true ); os << "
\n"; os << "

Known Bugs and Issues

\n"; From 65bf20eb62f4ab6b37d787c3ef54e290453c0a48 Mon Sep 17 00:00:00 2001 From: Justin Driggers Date: Tue, 14 Apr 2026 14:01:49 -0400 Subject: [PATCH 2/3] * Fix bug report phrasing --- engine/class_modules/monk/sc_monk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/class_modules/monk/sc_monk.cpp b/engine/class_modules/monk/sc_monk.cpp index 014d840202e..5e3ef1db7a0 100644 --- a/engine/class_modules/monk/sc_monk.cpp +++ b/engine/class_modules/monk/sc_monk.cpp @@ -7318,7 +7318,7 @@ class monk_report_t : public player_report_extension_t ReportIssue( "The ETL cache for both tigers resets to 0 when either spawn", "2023-08-03", true ); ReportIssue( "Chi Burst consumes both stacks of the buff on use", "2024-08-09", true ); ReportIssue( "Press the Advantage Tiger Palm does not trigger Overwhelming Force", "2026-02-09", true ); - ReportIssue( "Dragonfire Brew damage scales with Stagger level", "2026-04-14", true ); + ReportIssue( "Dragonfire Brew causes Breath of Fire damage to scale with Stagger level", "2026-04-14", true ); os << "
\n"; os << "

Known Bugs and Issues

\n"; From e06500289eede2daf2a1b894a0df17065b4ed258 Mon Sep 17 00:00:00 2001 From: Justin Driggers Date: Tue, 14 Apr 2026 14:13:29 -0400 Subject: [PATCH 3/3] * Formatting --- engine/class_modules/monk/sc_monk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/class_modules/monk/sc_monk.cpp b/engine/class_modules/monk/sc_monk.cpp index 5e3ef1db7a0..e0112d90bf7 100644 --- a/engine/class_modules/monk/sc_monk.cpp +++ b/engine/class_modules/monk/sc_monk.cpp @@ -3217,7 +3217,7 @@ struct breath_of_fire_t : public monk_spell_t [ this ]( double value ) { return 1.0 + p()->find_stagger( "Stagger" )->level_index() / 3.0 * value; } ) .set_value( effect.percent() ) .set_eff( &effect ) - .set_note( "Stagger Level Scaling"); + .set_note( "Stagger Level Scaling" ); } }