We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79aadae commit 1df599cCopy full SHA for 1df599c
engine/class_modules/paladin/sc_paladin.cpp
@@ -5473,6 +5473,10 @@ std::unique_ptr<expr_t> paladin_t::create_expression( util::string_view name_str
5473
{
5474
return make_fn_expr( "sacred_weapon", []() { return armament::SACRED_WEAPON; } );
5475
}
5476
+ if ( splits[ 0 ] == "divine_hammer_icd_remains" )
5477
+ {
5478
+ return make_fn_expr( "divine_hammer_icd_remains", [this]() { return cooldowns.divine_hammer_icd->remains(); } );
5479
+ }
5480
5481
struct judgment_holy_power_expr_t : public paladin_expr_t
5482
0 commit comments