@@ -8857,20 +8857,20 @@ void player_t::trigger_callbacks( proc_types pt, proc_types2 pt2, action_t* acti
88578857 proc_trigger_type_e pt_type )
88588858{
88598859 assert( action && state && state->target );
8860- action_callback_t::trigger( callbacks.procs[ pt ][ pt2 ], action->proc_data, state->target, state, pt_type );
8860+ action_callback_t::trigger( callbacks.procs[ pt ][ pt2 ], action->proc_data, this, state->target, state, pt_type );
88618861}
88628862
88638863void player_t::trigger_callbacks( proc_types pt, proc_types2 pt2, buff_t* buff, proc_trigger_type_e pt_type )
88648864{
88658865 assert( buff && buff->player );
8866- action_callback_t::trigger( callbacks.procs[ pt ][ pt2 ], buff->proc_data, buff->player, nullptr, pt_type );
8866+ action_callback_t::trigger( callbacks.procs[ pt ][ pt2 ], buff->proc_data, this, buff->player, nullptr, pt_type );
88678867}
88688868
88698869void player_t::trigger_callbacks( proc_types pt, proc_types2 pt2, const proc_data_t& data, player_t* t,
88708870 proc_trigger_type_e pt_type )
88718871{
88728872 assert( t );
8873- action_callback_t::trigger( callbacks.procs[ pt ][ pt2 ], data, t, nullptr, pt_type );
8873+ action_callback_t::trigger( callbacks.procs[ pt ][ pt2 ], data, this, t, nullptr, pt_type );
88748874}
88758875
88768876void player_t::trigger_aura_applied_callbacks( const proc_data_t& data, player_t* t )
0 commit comments