Skip to content

Commit

Permalink
[Gear] Add forgotten PTR check
Browse files Browse the repository at this point in the history
  • Loading branch information
nyterage committed Jan 8, 2025
1 parent 1c45fc0 commit 47e87a7
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 @@ -6235,6 +6235,9 @@ void reverb_radio( special_effect_t& effect )
// 1214810 Vers Buff
void mechanocore_amplifier( special_effect_t& effect )
{
if ( !effect.player->is_ptr() )
return;

struct mechanocore_amplifier_buff_t : public stat_buff_t
{
double high_value;
Expand Down

0 comments on commit 47e87a7

Please sign in to comment.