Skip to content

Commit

Permalink
[Monk] Fix segmentation fault with SEF
Browse files Browse the repository at this point in the history
  • Loading branch information
navv1234 committed Jul 17, 2018
1 parent 77ce0bc commit b6e99e9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions engine/class_modules/sc_monk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1527,15 +1527,15 @@ struct storm_earth_and_fire_pet_t : public pet_t

struct active_actions_t
{
action_t* rushing_jade_wind_sef;
action_t* rushing_jade_wind_sef = nullptr;
} active_actions;

struct buffs_t
{
buff_t* bok_proc_sef;
buff_t* hit_combo_sef;
buff_t* pressure_point_sef;
buff_t* rushing_jade_wind_sef;
buff_t* bok_proc_sef = nullptr;
buff_t* hit_combo_sef = nullptr;
buff_t* pressure_point_sef = nullptr;
buff_t* rushing_jade_wind_sef = nullptr;
} buff;

storm_earth_and_fire_pet_t( const std::string& name, sim_t* sim, monk_t* owner, bool dual_wield ):
Expand Down

0 comments on commit b6e99e9

Please sign in to comment.