Skip to content

Commit

Permalink
[Shaman] Drop maximum number of Fire Nova targets to 6.
Browse files Browse the repository at this point in the history
  • Loading branch information
navv1234 committed Jan 13, 2015
1 parent a73819d commit e2aacc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/class_modules/sc_shaman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2881,7 +2881,7 @@ struct fire_nova_t : public shaman_spell_t
// Fire Nova now has a maximum of 7 novas that can be triggered if more than 7 targets are affected by Flame Shock.
for ( size_t i = 0; i < sim -> target_non_sleeping_list.size(); ++i )
{
if ( fire_nova_targets == 7 && ( p() -> wod_hotfix || maybe_ptr( p() -> dbc.ptr ) ) )
if ( fire_nova_targets == 6 && ( p() -> wod_hotfix || maybe_ptr( p() -> dbc.ptr ) ) )
break;
player_t* e = sim -> target_non_sleeping_list[ i ];
if ( ! e -> is_enemy() )
Expand Down

0 comments on commit e2aacc0

Please sign in to comment.