Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions engine/class_modules/monk/sc_monk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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" );
}
}

Expand Down Expand Up @@ -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 causes Breath of Fire damage to scale with Stagger level", "2026-04-14", true );

os << "<div class=\"player-section\">\n";
os << "<h3 class=\"toggle\">Known Bugs and Issues</h3>\n";
Expand Down
Loading