Skip to content

Commit

Permalink
[monk] Fix Hursti's terrible C++.
Browse files Browse the repository at this point in the history
  • Loading branch information
renanthera committed Jan 16, 2025
1 parent e25db74 commit a3ca9c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/class_modules/monk/sc_monk_pets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit a3ca9c8

Please sign in to comment.