From a3ca9c8dfd1f5a8d16f792125debb4b49c7e8451 Mon Sep 17 00:00:00 2001 From: Kate Martin <51387586+renanthera@users.noreply.github.com> Date: Thu, 16 Jan 2025 01:45:47 -0700 Subject: [PATCH] [monk] Fix Hursti's terrible C++. --- engine/class_modules/monk/sc_monk_pets.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/class_modules/monk/sc_monk_pets.cpp b/engine/class_modules/monk/sc_monk_pets.cpp index e25692650ad..b0f528b4787 100644 --- a/engine/class_modules/monk/sc_monk_pets.cpp +++ b/engine/class_modules/monk/sc_monk_pets.cpp @@ -1219,7 +1219,7 @@ struct storm_earth_and_fire_pet_t : public monk_pet_t // Currently Xuen's Bond is triggering from SEF combo strikes, tooltip has been updated, assuming this is no longer // a bug. - if ( o()->talent.windwalker.xuens_bond->ok() && !p()->is_ptr() ) + if ( o()->talent.windwalker.xuens_bond->ok() && !o()->is_ptr() ) o()->cooldown.invoke_xuen->adjust( o()->talent.windwalker.xuens_bond->effectN( 2 ).time_value(), true ); // Saved as -100 }