New source found from dndbeyond.com
This commit is contained in:
@@ -48,7 +48,7 @@ export default class DiceAdjustmentSummary extends React.PureComponent<
|
||||
let abilityNode: React.ReactNode;
|
||||
if (statId) {
|
||||
abilityNode = (
|
||||
<React.Fragment>
|
||||
<>
|
||||
on{" "}
|
||||
<span
|
||||
className={`ct-dice-adjustment-summary__description--ability ${
|
||||
@@ -59,16 +59,16 @@ export default class DiceAdjustmentSummary extends React.PureComponent<
|
||||
>
|
||||
{RuleDataUtils.getStatNameById(statId, ruleData)}
|
||||
</span>
|
||||
</React.Fragment>
|
||||
</>
|
||||
);
|
||||
} else if (rollType === Constants.DiceAdjustmentRollTypeEnum.DEATH_SAVE) {
|
||||
abilityNode = <React.Fragment>on Death Saves</React.Fragment>;
|
||||
abilityNode = <>on Death Saves</>;
|
||||
} else {
|
||||
if (
|
||||
!restriction &&
|
||||
rollType === Constants.DiceAdjustmentRollTypeEnum.SAVE
|
||||
) {
|
||||
abilityNode = <React.Fragment>on saves</React.Fragment>;
|
||||
abilityNode = <>on saves</>;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user