Skip to content

Commit

Permalink
[Gear] Add PTR Check to Legendary Skipper's Critine
Browse files Browse the repository at this point in the history
  • Loading branch information
nyterage committed Nov 5, 2024
1 parent 89b036b commit 8b7edc4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions engine/player/unique_gear_thewarwithin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6419,6 +6419,9 @@ void fathomdwellers_runed_citrine( special_effect_t& effect )

void legendary_skippers_citrine( special_effect_t& effect )
{
if ( !effect.player->is_ptr() )
return;

static constexpr std::array<singing_citrines_drivers_e, 10> possible_stones = {
// DAMAGE
THUNDERLORDS_CRACKLING_CITRINE,
Expand Down

0 comments on commit 8b7edc4

Please sign in to comment.