( talent.windwalker.tigereye_brew_3->ok()
- ? talent.windwalker.tigereye_brew_3->effectN( 1 ).base_value()
- : 0 ) );
+ buff.zenith_stomp = make_buff_fallback( talent.windwalker.tigereye_brew_3->ok(), this, "zenith_stomp",
+ talent.monk.zenith_stomp_buff );
buff.rushing_wind_kick = make_buff_fallback( talent.windwalker.rushing_wind_kick->ok(), this, "rushing_wind_kick",
talent.windwalker.rushing_wind_kick_buff );
@@ -7407,6 +7289,10 @@ class monk_report_t : public player_report_extension_t
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 );
+ ReportIssue(
+ "Zenith Stomp erroneously references effect 1 for sqrt scaling in tooltip, which is instead used to modify the "
+ "Zenith Stomp charge buff.",
+ "2026-07-11", true );
os << "\n";
os << "
Known Bugs and Issues
\n";
diff --git a/engine/class_modules/monk/sc_monk.hpp b/engine/class_modules/monk/sc_monk.hpp
index c96afdd6741..923171a3450 100644
--- a/engine/class_modules/monk/sc_monk.hpp
+++ b/engine/class_modules/monk/sc_monk.hpp
@@ -97,7 +97,7 @@ struct monk_action_t : public parse_action_effects_t
std::unique_ptr create_expression( std::string_view name_str ) override;
bool usable_moving() const override;
- bool ready() override;
+ bool usable_during_current_cast() const override;
void init() override;
void init_finished() override;
void reset_swing();