Skip to content

Commit

Permalink
BUGFIX: Typo in weapon damage abbreviation
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrecarey committed Nov 29, 2024
1 parent ec9c3c8 commit d7f6c9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/display/FaceToFaceResultCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ function FaceToFaceResultCard(props) {
const handleOpen = () => setOpen(true);
const handleClose = () => setOpen(false);
let activeParameters = `B${p.burstA}${p.bonusBurstA >0 ? "+" + p.bonusBurstA : ""} ${p.dtwVsDodge ? "DTW" : "SV" + p.successValueA}\
${p.ammoA !== "DODGE" ? "SR" + p.damageA : ""} ${p.ammoA !== "N" ? p.ammoA : ""} \
${p.ammoA !== "DODGE" ? "PS" + p.damageA : ""} ${p.ammoA !== "N" ? p.ammoA : ""} \
${p.contA ? "CONT" : ""} ARM${p.armA} ${p.critImmuneA ? "CRIT_IMMUNE" : ""}`
let reactiveParameters = `B${p.burstB}${p.bonusBurstB >0 ? "+" + p.bonusBurstB : ""} ${p.burstB !== 0 ? "SV" + p.successValueB : ""} ${p.ammoB !== "DODGE" && p.burstB !== 0 ? "SR" + p.damageB : ""}\
let reactiveParameters = `B${p.burstB}${p.bonusBurstB >0 ? "+" + p.bonusBurstB : ""} ${p.burstB !== 0 ? "SV" + p.successValueB : ""} ${p.ammoB !== "DODGE" && p.burstB !== 0 ? "PS" + p.damageB : ""}\
${p.ammoB !== "N" ? p.ammoB : ""} ${p.contB ? "CONT" : ""} ARM${p.armB} ${p.critImmuneB ? "CRIT_IMMUNE" : ""}`

return <Card>
Expand Down

0 comments on commit d7f6c9d

Please sign in to comment.