Skip to content

Commit 21c01af

Browse files
committed
Fixed air damage estimator
1 parent b0cf48b commit 21c01af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/core/mods/damage-estimator/estimator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ export class Estimator {
374374
let res = 0;
375375
switch (element) {
376376
case 'air':
377-
res = stats.waterElementReduction;
377+
res = stats.airElementReduction;
378378
break;
379379
case 'fire':
380380
res = stats.fireElementReduction;
@@ -443,7 +443,7 @@ export class Estimator {
443443
let res = 0;
444444
switch (element) {
445445
case 'air':
446-
res = stats.waterElementResistPercent;
446+
res = stats.airElementResistPercent;
447447
break;
448448
case 'fire':
449449
res = stats.fireElementResistPercent;

0 commit comments

Comments
 (0)