Skip to content

Commit

Permalink
Merge pull request #59 from HavlockV/hotfix/lowerCaseNotWorking
Browse files Browse the repository at this point in the history
Hotfix/lower case not working
  • Loading branch information
HavlockV authored Aug 10, 2020
2 parents 8314b0d + 34c8766 commit d33f6f7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ Compendium 'Weapons' contains a single test weapon.

## What is working

version 0.2.3 :

* Hotfix.

version 0.2.2 :

* PDFoundry Integration.
Expand Down
2 changes: 1 addition & 1 deletion module/chat/rangecombat.js
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ export class CoC7RangeInitiator{
const normalDamageRoll = this.weapon.data.data.range.normal.damage;
const normalDamageDie = CoC7Damage.getMainDie( normalDamageRoll);
const maxDamage = Roll.maximize( normalDamageRoll).total;
const criticalDamageRoll = this.weapon.impale ? `${normalDamageRoll} + ${maxDamage}` : maxDamage;
const criticalDamageRoll = this.weapon.impale ? `${normalDamageRoll} + ${maxDamage}` : `${maxDamage}`;
const criticalDamageDie = CoC7Damage.getMainDie( criticalDamageRoll);
const hits=this.successfulHits;

Expand Down
4 changes: 2 additions & 2 deletions system.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "CoC7",
"title": "The Call of Cthulhu 7th edition",
"description": "The Call of Cthulhu 7th edition simple game system",
"version": "0.2.2",
"version": "0.2.3",
"author": "HavelockV",
"minimumCoreVersion": "0.5.2",
"compatibleCoreVersion": "0.6.5",
Expand Down Expand Up @@ -69,6 +69,6 @@
"secondaryTokenAttribute": "power",
"url": "https://github.com/HavlockV/CoC7-FoundryVTT/",
"manifest": "https://github.com/HavlockV/CoC7-FoundryVTT/raw/master/system.json",
"download": "https://github.com/HavlockV/CoC7-FoundryVTT/archive/0.2.2.zip"
"download": "https://github.com/HavlockV/CoC7-FoundryVTT/archive/0.2.3.zip"
}

0 comments on commit d33f6f7

Please sign in to comment.