Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions engine/player/unique_gear_midnight.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2912,6 +2912,10 @@ void crucible_of_erratic_energies( special_effect_t& effect )
effect.custom_buff = buff;

effect.proc_flags2_ = PF2_LANDED;
// Spell data proc_flags (0x00015500) has no melee ability types. The driver has
// SX_ONLY_PROC_FROM_CLASS_ABILITIES set, which gates procs on allow_class_ability_procs,
// but the callback is never registered for melee actions without this addition.
effect.proc_flags_ = effect.driver()->proc_flags() | PF_MELEE_ABILITY;

new dbc_proc_callback_t( effect.player, effect );
}
Expand Down