Skip to content

Commit

Permalink
[Paladin] add expression for divine hammer icd
Browse files Browse the repository at this point in the history
  • Loading branch information
mserrano committed Mar 3, 2025
1 parent 79aadae commit 1df599c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions engine/class_modules/paladin/sc_paladin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5473,6 +5473,10 @@ std::unique_ptr<expr_t> paladin_t::create_expression( util::string_view name_str
{
return make_fn_expr( "sacred_weapon", []() { return armament::SACRED_WEAPON; } );
}
if ( splits[ 0 ] == "divine_hammer_icd_remains" )
{
return make_fn_expr( "divine_hammer_icd_remains", [this]() { return cooldowns.divine_hammer_icd->remains(); } );
}

struct judgment_holy_power_expr_t : public paladin_expr_t
{
Expand Down

0 comments on commit 1df599c

Please sign in to comment.