File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -4376,9 +4376,13 @@ struct meteor_impact_t final : public fire_mage_spell_t
43764376
43774377 // With Deep Impact, Meteor deals extra damage to the target closest to the impact point.
43784378 // For simplicity, we assume that will be the main target.
4379- double m = 1.0 + p->talents .deep_impact ->effectN ( 1 ).percent ();
4380- base_multiplier *= m;
4381- base_aoe_multiplier /= m;
4379+ // TODO: This is currently broken and doesn't actually work in game.
4380+ if ( !p->bugs )
4381+ {
4382+ double m = 1.0 + p->talents .deep_impact ->effectN ( 1 ).percent ();
4383+ base_multiplier *= m;
4384+ base_aoe_multiplier /= m;
4385+ }
43824386
43834387 // TODO: Seems to miss the final tick now that the duration is a multiple of the tick time once again.
43844388 if ( p->bugs )
You can’t perform that action at this time.
0 commit comments