diff --git a/src/ui/dps-calc/DpsCalcComponent.tsx b/src/ui/dps-calc/DpsCalcComponent.tsx index 2b5230f4..ad757b47 100644 --- a/src/ui/dps-calc/DpsCalcComponent.tsx +++ b/src/ui/dps-calc/DpsCalcComponent.tsx @@ -33,6 +33,12 @@ export class DpsCalcComponent extends React.Component { Shifta ATP Final Min. ATP Final Max. ATP + Min. Normal Damage + Max. Normal Damage + Avg. Normal Damage + Min. Heavy Damage + Max. Heavy Damage + Avg. Heavy Damage @@ -52,9 +58,15 @@ export class DpsCalcComponent extends React.Component { /> {weapon.item.grindAtp} - {weapon.shiftaAtp} - {weapon.finalMinAtp} - {weapon.finalMaxAtp} + {weapon.shiftaAtp.toFixed(1)} + {weapon.finalMinAtp.toFixed(1)} + {weapon.finalMaxAtp.toFixed(1)} + {weapon.minNormalDamage.toFixed(1)} + {weapon.maxNormalDamage.toFixed(1)} + {weapon.avgNormalDamage.toFixed(1)} + {weapon.minHeavyDamage.toFixed(1)} + {weapon.maxHeavyDamage.toFixed(1)} + {weapon.avgHeavyDamage.toFixed(1)} ))}