Skip to content

Commit

Permalink
[Disc] Adjust Uppies Reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
Saeldur committed Nov 26, 2024
1 parent b6960fd commit b652516
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions engine/class_modules/priest/sc_priest_discipline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -653,12 +653,15 @@ struct ultimate_penitence_t : public priest_spell_t
// ultimate_penitence_damage_t
propagate_const<ultimate_penitence_damage_t*> damage;

ultimate_penitence_channel_t( priest_t& p )
ultimate_penitence_channel_t( priest_t& p, stats_t* parent_stats )
: priest_spell_t( "ultimate_penitence_channel", p, p.find_spell( 421434 ) )
{
damage = new ultimate_penitence_damage_t( p );
dual = true;
channeled = true;
tick_zero = true;
stats = parent_stats;
stats->action_list.push_back( this );
}

void tick( dot_t* d ) override
Expand Down Expand Up @@ -689,7 +692,8 @@ struct ultimate_penitence_t : public priest_spell_t
// Channel = 421434
// Damage bolt = 421543

channel = new ultimate_penitence_channel_t( p );
channel = new ultimate_penitence_channel_t( p, stats );
add_child( channel->damage );
}

void execute() override
Expand Down

0 comments on commit b652516

Please sign in to comment.