New source found from dndbeyond.com
This commit is contained in:
@@ -200,9 +200,9 @@ export default class HealthAdjuster extends React.PureComponent<Props, State> {
|
||||
const { healingAmount, damageAmount } = this.state;
|
||||
const { hitPointInfo } = this.props;
|
||||
|
||||
let healingDisplay: React.ReactText =
|
||||
let healingDisplay =
|
||||
healingAmount === null ? "" : Math.max(this.getDirtyHitPointsChange(), 0);
|
||||
let damageDisplay: React.ReactText =
|
||||
let damageDisplay =
|
||||
damageAmount === null
|
||||
? ""
|
||||
: Math.abs(Math.min(this.getDirtyHitPointsChange(), 0));
|
||||
|
||||
Reference in New Issue
Block a user