Skip to content

Commit

Permalink
[Paladin] consecration.up only checks for hardcasted Consecrations
Browse files Browse the repository at this point in the history
  • Loading branch information
Fluttershy-git committed Feb 27, 2025
1 parent 5e5caa2 commit fc9bcda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/class_modules/paladin/sc_paladin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5266,7 +5266,7 @@ std::unique_ptr<expr_t> paladin_t::create_consecration_expression( util::string_

if ( util::str_compare_ci( expr[ 1U ], "ticking" ) || util::str_compare_ci( expr[ 1U ], "up" ) )
{
return make_fn_expr( "consecration_ticking", [ this ]() { return all_active_consecrations.empty() ? 0 : 1; } );
return make_fn_expr( "consecration_ticking", [ this ]() { return active_consecration != nullptr; } );
}
else if ( util::str_compare_ci( expr[ 1U ], "remains" ) )
{
Expand Down

0 comments on commit fc9bcda

Please sign in to comment.