Skip to content

Commit

Permalink
[Gear] Storm Sewer's Citrine - Dont trigger damage if absorb is appli…
Browse files Browse the repository at this point in the history
…ed to a pet
  • Loading branch information
nyterage committed Dec 21, 2024
1 parent e1b2f35 commit 34b919f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/player/unique_gear_thewarwithin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6591,7 +6591,7 @@ struct storm_sewers_citrine_t : public absorb_citrine_t
break;
}
}
if ( potential_target && potential_target->is_enemy() && !potential_target->is_sleeping() )
if ( potential_target && potential_target->is_enemy() && !potential_target->is_sleeping() && !potential_target->is_pet() )
{
damage->execute_on_target( potential_target, s->result_amount * driver_spell->effectN( 3 ).percent() );
}
Expand Down

0 comments on commit 34b919f

Please sign in to comment.