Skip to content

Commit b4e59cd

Browse files
committed
[Hunter] Adjust Potent Mutagen for PTR
1 parent d4347d5 commit b4e59cd

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

engine/class_modules/sc_hunter.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2277,7 +2277,8 @@ struct hunter_main_pet_t final : public hunter_main_pet_base_t
22772277
buffs.potent_mutagen =
22782278
make_buff( this, "potent_mutagen", o()->find_spell( 1218003 ) )
22792279
//2025-03-07 - For some reason the base value is still 1, the pet buff says 0.5 seconds reduction per hit, but the server script doing the reduction only reduces by 0.25s
2280-
->set_default_value( o()->find_spell( 1218004 )->effectN( 2 ).base_value() / 4 );
2280+
//2025-06-05 - The base value is now 25 for a 0.25s reduction per hit on the PTR for 11.1.7.
2281+
->set_default_value( is_ptr() ? o()->find_spell( 1218004)->effectN( 2 ).percent() : ( o()->find_spell( 1218004 )->effectN( 2 ).base_value() / 4 ) );
22812282

22822283
buffs.solitary_companion =
22832284
make_buff( this, "solitary_companion", find_spell( 474751 ) )

0 commit comments

Comments
 (0)