File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9279,7 +9279,8 @@ bool demon_hunter_t::validate_fight_style( fight_style_e style ) const
92799279#ifdef NDEBUG
92809280 if ( style == FIGHT_STYLE_DUNGEON_SLICE && !options.enable_dungeon_slice )
92819281 {
9282- sim->error ( SEVERE, " Dungeon Slice is disabled for Demon Hunter. To force enable, use enable_dungeon_slice=1 option." );
9282+ sim->error ( SEVERE,
9283+ " Dungeon Slice is disabled for Demon Hunter. To force enable, use enable_dungeon_slice=1 option." );
92839284 sim->cancel ();
92849285 }
92859286#endif
@@ -9288,9 +9289,11 @@ bool demon_hunter_t::validate_fight_style( fight_style_e style ) const
92889289 switch ( specialization () )
92899290 {
92909291 case DEMON_HUNTER_HAVOC:
9291- return style == FIGHT_STYLE_PATCHWERK || style == FIGHT_STYLE_DUNGEON_ROUTE || style == FIGHT_STYLE_CASTING_PATCHWERK || style == FIGHT_STYLE_HECTIC_ADD_CLEAVE;
9292+ return style == FIGHT_STYLE_PATCHWERK || style == FIGHT_STYLE_DUNGEON_ROUTE ||
9293+ style == FIGHT_STYLE_CASTING_PATCHWERK || style == FIGHT_STYLE_HECTIC_ADD_CLEAVE;
92929294 case DEMON_HUNTER_VENGEANCE:
9293- return style == FIGHT_STYLE_PATCHWERK || style == FIGHT_STYLE_CASTING_PATCHWERK || style == FIGHT_STYLE_HECTIC_ADD_CLEAVE;
9295+ return style == FIGHT_STYLE_PATCHWERK || style == FIGHT_STYLE_CASTING_PATCHWERK ||
9296+ style == FIGHT_STYLE_HECTIC_ADD_CLEAVE;
92949297 default :
92959298 return false ;
92969299 }
You can’t perform that action at this time.
0 commit comments