Skip to content

Commit

Permalink
fix: CE and it's predecessor uses different modifier for characterist…
Browse files Browse the repository at this point in the history
…ic value of 0, use CE modifier for now, make into an option later.
  • Loading branch information
xdy committed Jul 5, 2020
1 parent de4305d commit 269e383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module/actors/actor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default class TwodsixActor extends Actor {
let current = c["value"] - c["damage"];
c["current"] = current;
c["mod"] = Math.floor((current - 6) / 3);
if (current === 0){c["mod"] = -3;}
// if (current === 0){c["mod"] = -3;} //TODO Should be an option for the predecessor to CE
}

// Process Cascade skills
Expand Down

0 comments on commit 269e383

Please sign in to comment.