File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10399,6 +10399,7 @@ void evoker_t::reset()
1039910399 allies_with_my_prescience.clear_without_callbacks();
1040010400 allies_with_my_shifting_sands.clear_without_callbacks();
1040110401 allied_ebons_on_me.clear();
10402+ active_infernos_blessings.clear();
1040210403 last_scales_target = nullptr;
1040310404 was_empowering = false;
1040410405
@@ -10543,6 +10544,10 @@ std::unique_ptr<expr_t> evoker_t::create_expression( std::string_view expr_str )
1054310544 {
1054410545 if ( util::str_compare_ci( splits[ 0 ], "evoker" ) )
1054510546 {
10547+ if ( util::str_compare_ci( splits[ 1 ], "active_infernos_blessings" ) )
10548+ {
10549+ return make_fn_expr( "active_infernos_blessings", [ this ] { return active_infernos_blessings.size(); } );
10550+ }
1054610551 if ( util::str_compare_ci( splits[ 1 ], "allied_cds_up" ) )
1054710552 {
1054810553 return make_fn_expr( "allied_cds_up", [ this ] {
You can’t perform that action at this time.
0 commit comments