Skip to content

Commit 6c0b81e

Browse files
committed
[Augmentation] add size expression to count IBs
1 parent f2ad857 commit 6c0b81e

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

engine/class_modules/sc_evoker.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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 ] {

0 commit comments

Comments
 (0)